1. Introduction

-

The dataset was sourced from Yelp (Yelp (n.d.)). In the initial compressed file is another .tar file which contains the dataset. The yelp_dataset.tar file contains 5 JSON files; yelp_academic_dataset_business.json, yelp_academic_dataset_checkin.json, yelp_academic_dataset_tip.json, yelp_academic_dataset_user.json, yelp_academic_dataset_review.json, henceforth will be referred to as business.json, checkin.json tip.json, user.json, review.json. However, the main JSON files of concern are business.json, user.json, and review.json.

The business.json contains information related to the business including its location and some of its attributes. The reviews.json contains the actual text of the reviews and its associated rating and other information. The users.json contains information about Yelp’s userbase including their friend network along with associated information about votes and compliments submitted to that user by other users.

The files not used in this analysis are described as below: The checkin.json contains businesses and a list of timestamps of each checkin; check-ins are a way for people to keep track of places they’ve visited to their friend network. The tip.json is similar to review.json, but instead of a more involved text review, a tip is just more similar to one-liners to convey a quick message.

Hive was used to store the large files (difficult or impossible to store) and data exploration. Python was used to connect Hive to R in an easy way and to have access to Python’s functionality. RStudio was used for pre-processing, data analysis and visualisation. R Markdown was used since its has more functionality and ease-of-use as a text editor compared to Jupyter Notebook such as copy pasting images directly from clipboard while having options to produce a HTML document or a Github Document.

1.1 Objectives

  • Use the Hadoop ecosystem to store, query and access the database into R.

  • Identify top-rated businesses - determine which businesses receive the highest ratings overall, in specific categories (e.g., restaurants, cafes, hair salons), or in a location.

  • Analyze customer sentiment based on Yelp reviews using text-based analysis, and make recommendations based on that.

1.2 Summary of business.json

Below is a summary of the original columns and the type of data that was stored inside. For columns that were JSON object structures (struct), they had to be expanded out as well.

Name Description Data type
business_id A 22-character string containing a uinque ID for the business - used to connect reviews, category string
name The name of the business string
address The address of the business string
city The city where the business is located string
state The state code where the business is located string
postal code The postal code where the business is located string
latitude The latitude of where the business is located float
longitude The longitude of where the business is located float
stars Average rating, rounded to half-stars float
review_count total number of reviews float
is_open Whether is it closed (0) or open (1) boolean
attributes Has several logical variables related struct
categories Related to what category the business is string array
hours Opening hours for each day of the week struct

1.3 Summary of review.json

Name Description Data type
review_id 22-character unique review ID string
user_id ID for the user that wrote the review - maps to user.json string
business_id ID of the business the review is for - maps to business.json string
stars Rating out of 5 integer
date Date the review was submitted string
text The actual review text itself string
useful Number of ‘useful’ votes received from other users integer
funny Number of ‘funny’ votes received from other users integer
cool Number of ‘cool’ votes received from other users integer

2. Data Storage and Set-Up

2.1 Data Storage Using Hadoop

Since reviews and users are very large (5GB and 3GB respectively), they cannot easily be manipulated in R or Python. Because of those files in particular, all JSON files were moved to the VirtualBox local folders using WinSCP. Then all the files were converted into Hive tables using Spark.

An example of a script using Spark.

## To be run in the Virtual Machine
from pyspark.sql import SparkSession

spark = SparkSession.builder \
    .appName("JSON Schema Viewer") \
    .getOrCreate()
df = spark.read.json("C:/Users/Documents/a_ncw/2manage/yelp_academic_dataset_user.json")
df.write.mode("overwrite").saveAsTable("yelp_user")

For business.json, since it has some struct data types.

## To be run in the Virtual Machine
from pyspark.sql import SparkSession
from pyspark.sql.types import StructType
from pyspark.sql.functions import col, split, explode, trim

spark = SparkSession.builder \
    .appName("JSON to Hive") \
    .enableHiveSupport() \
    .getOrCreate()

df=spark.read.json("hdfs:///user/maria_dev/yelp/yelp_academic_dataset_business.json")
def flatten(schema,prefix=None):
    fields=[]
    for field in schema.fields:
        name = prefix + '.' + field.name if prefix else field.name
        dtype=field.dataType
        if isinstance(dtype, StructType):
            fields += flatten(dtype, prefix=name)
        else:
            fields.append(name)
    return fields
df.write.mode("overwrite").saveAsTable("yelp_business")

Another example of checkin’s schema when turning the checkin json to a hive table.

However, the JSON file for yelp_reviews’ text file kept overflowing into business_id or returning back blank. After reading around, \n newline for Hive causes it to split it into a new line. Thus, to avoid this, all in the text column for review.json was replaced by a space before it was converted to a Hive table.

## To be run in the Virtual Machine
from pyspark.sql import SparkSession
from pyspark.sql.functions import regexp_replace

spark = SparkSession.builder \
    .appName("JSON to Hive") \
    .enableHiveSupport() \
    .getOrCreate()

df_review = spark.read.json("hdfs:///user/maria_dev/yelp/yelp_academic_dataset_review.json")
df_review = df_review.withColumn("text",regexp_replace("text",r'\n',' '))

df_review.write.mode("overwrite").saveAsTable("yelp_review")

2.2 Setting up R

For my specific case, since I had made a conda environment made to the hadoop framework, the conda environment within R also has to be set to that.

reticulate::use_condaenv(condaenv ="C:/ProgramData/anaconda3/envs/ukm_stqd6324",required = TRUE)

Then after that, comes importing all the libraries, setting up a connection can be made via python for Hive querying and R for any further pre-processing and visualisation. Overall, after the data has been properly converted to JSON to Hive table, the flow of the data is Apache Hive -> Python -> R.

import pandas as pd
from impala.dbapi import connect

conn = connect(
    host='127.0.0.1',
    port=10000,
    user='maria_dev',
    database='default',
    auth_mechanism = 'PLAIN'
)
cursor = conn.cursor()

# A function was made to simplify converting Hive queries to pandas dataframes.
def to_pd(cursor):
  columns = [desc[0] for desc in cursor.description]
  data = cursor.fetchall()
  return pd.DataFrame(data, columns=columns)

When looking at all the databases stored in Hive, I uploaded the following tables. The names match the name of aforementioned JSON files described before. yelp_business_category is a table based on the ‘category’ column in yelp_business that was expanded and its comma-separated list of categories pulled out.

cursor.execute('SHOW TABLES')
print(cursor.fetchall())

Example of querying

This is the extended description for yelp_business.

cursor.execute('DESCRIBE yelp_business')
print(cursor.fetchall())

After that, when we look at the columns for yelp_review:

cursor.execute('DESCRIBE yelp_review')
print(cursor.fetchall())
## [('business_id', 'string', ''), ('cool', 'bigint', ''), ('date', 'string', ''), ('funny', 'bigint', ''), ('review_id', 'string', ''), ('stars', 'double', ''), ('text', 'string', ''), ('useful', 'bigint', ''), ('user_id', 'string', '')]

When running ANALYZE TABLE yelp_review COMPUTE STATISTICS; in Ambari’s Hive’s Query Editor and clicking Explain, we see that the number of reviews is 6990280, matching the number of reviews as mentioned on the Yelp website.

3.0 Choosing The Business

Packages used:

library(ggplot2)
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.4     ✔ readr     2.1.5
## ✔ forcats   1.0.0     ✔ stringr   1.5.1
## ✔ lubridate 1.9.4     ✔ tibble    3.2.1
## ✔ purrr     1.0.4     ✔ tidyr     1.3.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors

3.1 Average star rating for all businesses

Out of all the stars rating, only nine values are possible since Yelp only displays it rounded to the nearest 0.5.

Overall, there is a left skew where most businesses are rated more positively than negatively. The most common rating on average for a particular business is around 4, followed by 4.5 and 3.0. The highest rating only occurs around 10.8% of the time.

The x-axis is the rating, the left y-axis points to the frequency of the rating and the right y-axis is the average review count of a business with that rating. The green is number of businesses with that star rating and blue is average number of reviews for all businesses per star rating.

As can be seen, it does not follow the same proportion for the frequency. The top three highest average review counts are the same as the business count, but the two lowest are 1.0 and 5.0, which shows that most businesses with either a consistently high or low rating tend to have fewer reviews. This suggests that extreme ratings are pushed forward by a small number of reviews. As in, for example, if talking about it in a generalised overview, while businesses with a high 5-star rating would typically be seen as ‘better’ than those rated under 5, but in actuality, taking in account the difference in average review count vs rating, it could actually signify a business that is just niche or new instead of better.

3.2 Distribution of categories

Looking at the category column, there are a total of 1310 unique values this could be. These columns are not distinct per business so a single business could belong to multiple categories.

df<-reticulate::py$df
head(df)
##        category frequency
## 1   Restaurants     52268
## 2          Food     27781
## 3      Shopping     24395
## 4 Home Services     14356
## 5 Beauty & Spas     14292
## 6     Nightlife     12281
df<-reticulate::py$df
mean(df$frequency) #average is 509.9863
## [1] 509.9863

Around one third of businesses in this dataset is categorised under Restaurant, followed by businesses related to Home Services, Beauty & Spa, Nightlife and Health & Medical.

ggplot(df, aes(x = reorder(category, -frequency), y = frequency)) +
  geom_bar(stat = "identity") +
  labs(
    title = "Frequency of Business Categories",
    x = "Category",
    y = "Frequency"
  ) +
  theme_minimal() +
  coord_cartesian(xlim=c(0,50)) +
  theme(axis.text.x = element_text(angle = 90, hjust = 1))

3.3 Distribution of review count

Looking at all businesses, it’s clear the review count is heavily right-skewed. The max is 7568, while the minimum number of reviews is only 5, yet the average number of reviews for any business in this dataset is only around 45.

df<-reticulate::py$df
head(df)
##   review_count                               name         city
## 1         7568                  Acme Oyster House  New Orleans
## 2         7400                       Oceana Grill  New Orleans
## 3         6093 Hattie B’s Hot Chicken - Nashville    Nashville
## 4         5721            Reading Terminal Market Philadelphia
## 5         5193         Ruby Slipper - New Orleans  New Orleans
## 6         5185                Mother's Restaurant  New Orleans
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                categories
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Live/Raw Food, Seafood, Restaurants, Cajun/Creole
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Restaurants, Seafood, Cajun/Creole, Breakfast & Brunch
## 3                                                                                                                                                                                                                                                                                                                                                                                                                   American (Traditional), Chicken Shop, Southern, Restaurants, Chicken Wings, American (New), Soul Food
## 4 Candy Stores, Shopping, Department Stores, Fast Food, Beer, Wine & Spirits, Fruits & Veggies, Chinese, Food, Ice Cream & Frozen Yogurt, Desserts, Seafood, Health Markets, Bagels, Cheese Shops, Shopping Centers, Chocolatiers & Shops, Meat Shops, Public Markets, Food Court, Wineries, Local Flavor, Ethnic Food, Restaurants, Specialty Food, Arts & Entertainment, Juice Bars & Smoothies, Seafood Markets, Farmers Market, Coffee & Tea, Bakeries, Food Stands, Dinner Theater, Sporting Goods, Grocery, Fashion
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                          Restaurants, American (Traditional), American (New), Cafes, Breakfast & Brunch
## 6                                                                                                                                                                                                                                                                                                                                                  Cajun/Creole, Restaurants, Event Planning & Services, Southern, Specialty Food, Soul Food, Food, Ethnic Food, American (New), Caterers, Breakfast & Brunch, Sandwiches

Amazingly, around a third of businesses on Yelp do not even hit 10 reviews

sum(df$review_count < 10)
## [1] 51103

Overall, out of all the businesses that have at least 500 reviews are mostly from the US, namely cities such as Philadelphia, New Orleans, Nashville. This could be because they are well-known tourist destinations. Since these cities attract many visitors throughout the year, it most likely leads to a higher number of customers leaving reviews for businesses (restaurants, hotels, tourist attractions, etc.). However, take note that this Yelp dataset only covers 11 metropolitan areas, which is why other popular tourism cities like New York do not appear at all.

High foot traffic due to tourism and popular events (e.g., Mardi Gras in New Orleans or music festivals in Philadelphia and Nashville) could be contributing to the higher review count.

df<-reticulate::py$df
df2 <- df %>% filter(review_count > 500)
gg<-sort(table(df2$city), decreasing = TRUE)[1:20]
gg
## 
##     Philadelphia      New Orleans        Nashville            Tampa 
##              276              249              128               98 
##    Santa Barbara             Reno           Tucson      Saint Louis 
##               89               88               62               60 
##     Indianapolis Saint Petersburg            Boise Clearwater Beach 
##               59               14               12               12 
##       Clearwater    St Petersburg           Sparks           Goleta 
##               11               11               10                7 
##  King of Prussia         Metairie   St. Pete Beach          Dunedin 
##                7                7                7                6

For New Orleans:

df<-reticulate::py$df
head(df)
##          ybc.business_id  ybc.category
## 1 W4ZEKkva9HpAdZG88juwyQ          Bars
## 2 W4ZEKkva9HpAdZG88juwyQ     Nightlife
## 3 W4ZEKkva9HpAdZG88juwyQ Cocktail Bars
## 4 W4ZEKkva9HpAdZG88juwyQ         Cafes
## 5 W4ZEKkva9HpAdZG88juwyQ  Cajun/Creole
## 6 W4ZEKkva9HpAdZG88juwyQ      Barbeque

For those with a high review count in New Orleans, the categories associated with it is Cajun/Creole and Seafood, that is because those two cuisines are associated with New Orleans or Louisiana in general. In addition, Cajun/Creole is seafood-based.

## 
##               Restaurants              Cajun/Creole                   Seafood 
##                        82                        47                        36 
##                 Nightlife                      Bars        Breakfast & Brunch 
##                        26                        24                        24 
##                      Food            American (New)                Sandwiches 
##                        23                        22                        18 
##                  Southern             Cocktail Bars    American (Traditional) 
##                        18                        13                        11 
##                     Cafes Event Planning & Services                    French 
##                        11                         7                         6 
##           Hotels & Travel                Vegetarian      Arts & Entertainment 
##                         6                         6                         5 
##              Coffee & Tea                  Desserts 
##                         5                         5

For Nashville:

df<-reticulate::py$df
head(df)
##          ybc.business_id              ybc.category
## 1 ORL4JE6tz3rJxVqkdKfegA     Venues & Event Spaces
## 2 ORL4JE6tz3rJxVqkdKfegA                  Day Spas
## 3 ORL4JE6tz3rJxVqkdKfegA                   Resorts
## 4 ORL4JE6tz3rJxVqkdKfegA                    Cinema
## 5 ORL4JE6tz3rJxVqkdKfegA                    Hotels
## 6 ORL4JE6tz3rJxVqkdKfegA Event Planning & Services

For those with a high review count in Nashville, the categories associated with it is similar to those in New Orleans with American and Southern food.

## 
##               Restaurants                 Nightlife                      Bars 
##                        34                        23                        22 
##    American (Traditional)                  Southern            American (New) 
##                        18                        17                        13 
##                      Food        Breakfast & Brunch                  Barbeque 
##                        13                        11                         6 
##             Chicken Wings             Cocktail Bars                      Pubs 
##                         6                         6                         6 
##                Sandwiches      Arts & Entertainment                      Beer 
##                         5                         3                         3 
##                   Burgers                  Desserts Event Planning & Services 
##                         3                         3                         3 
##                   Lounges                   Mexican 
##                         3                         3

For Philadelphia:

df<-reticulate::py$df
head(df)
##          ybc.business_id ybc.category
## 1 vUrTGX_7HxqeoQ_6QCVz6g  Active Life
## 2 vUrTGX_7HxqeoQ_6QCVz6g     Lebanese
## 3 vUrTGX_7HxqeoQ_6QCVz6g Coffee & Tea
## 4 vUrTGX_7HxqeoQ_6QCVz6g  Restaurants
## 5 vUrTGX_7HxqeoQ_6QCVz6g    Nightlife
## 6 vUrTGX_7HxqeoQ_6QCVz6g         Food

For those with a high review count in Philadelphia, the categories associated with it is similar to New Orleans and Nashville, with the interesting difference being more Chinese/Asian and Italian food shops.

## 
##            Restaurants              Nightlife                   Bars 
##                     64                     21                     20 
##     Breakfast & Brunch                   Food American (Traditional) 
##                     19                     19                     18 
##         American (New)             Sandwiches                Chinese 
##                     17                     13                      9 
##           Cheesesteaks                Seafood         Specialty Food 
##                      8                      8                      8 
##          Cocktail Bars           Coffee & Tea                Italian 
##                      7                      7                      7 
##             Vegetarian           Asian Fusion                  Cafes 
##                      7                      6                      6 
##                 Diners                   Beer                Burgers 
##                      6                      5                      5 
##               Japanese           Local Flavor            Steakhouses 
##                      5                      5                      5 
##         Wine & Spirits 
##                      5
a<-reticulate::py$df

4.0 Text Mining Analysis

-

For the purpose of utilising text mining analysis to provide service improvements to a business, Geno’s Steaks with a rating of 2.5 was chosen. Its reviews at various star ratings was examined and comments on what is causing its low rating and recommendations to how to improve it was made .

Packages used: tm, textstem, tidyverse, leaflet

4.1 Pre-processing

For text mining analysis, before deciding what to do, I wanted to limit it to only businesses that are currently open and have at least 25 reviews to have enough substance to analyse. An issue faced by any business is negative customer feedback; however, the ability to collect, analyse and make changes based on those negative reviews would help a business improve their quality of service. So, in Ambari Hive, I made a new table or View based on the following:

## To be run in as a Hive Query in Ambari
DROP VIEW bus_view;

CREATE VIEW bus_view AS
SELECT bb.business_id, bb.name, bb.review_count, bb.stars, bb.city, bb.latitude, bb.longitude, 
COUNT(CASE WHEN gg.stars = 1 THEN 1 END) AS count_star_1,
COUNT(CASE WHEN gg.stars = 2 THEN 1 END) AS count_star_2,
COUNT(CASE WHEN gg.stars = 3 THEN 1 END) AS  count_star_3,
COUNT(CASE WHEN gg.stars = 4 THEN 1 END) AS count_star_4,
COUNT(CASE WHEN gg.stars = 5 THEN 1 END) AS count_star_5
FROM yelp_business bb 
JOIN yelp_review gg ON bb.business_id = gg.business_id

WHERE bb.is_open = 1 AND bb.review_count >= 25
GROUP BY bb.business_id, bb.name, bb.review_count, bb.stars, bb.city, bb.latitude, bb.longitude;

Leaving 41679 businesses out of the original 150246.

cursor.execute("SELECT COUNT(*) from yelp_business")
print(cursor.fetchall()) #150246 rows
## [(150346,)]
cursor.execute("SELECT COUNT(*) from bus_view")
print(cursor.fetchall()) #41679 rows
## [(41679,)]

For picking a poorly reviewed business, since most businesses average around 3-4 stars. I was interested in picking one that had a good distribution of different ratings, high number of ratings overall, and an average rating that was 2.5. Based on this, Geno’s Steaks’ reviews will be analysed for this purpose.

##     bus_view.business_id                            bus_view.name
## 1 IkY2ticzHEn4QFn8hQLSWg                            Geno's Steaks
## 2 -QI8Qi8XWH3D8y8ethnajA Philadelphia International Airport - PHL
## 3 ve_-rPlEGPClytyJtY55Vw                     Nugget Casino Resort
## 4 rSYyGcZZziJLsqKl5hMcDw                       Circus Circus Reno
## 5 6zEWIsb6Lhr3BeoC3gm1lw                     Chickie's and Pete's
## 6 v1Uesklh8DpEufYOhTq4iA                  Mar Monte Hotel - Hyatt
##   bus_view.review_count bus_view.stars bus_view.city bus_view.latitude
## 1                  3401            2.5  Philadelphia          39.93384
## 2                  2149            2.5  Philadelphia          39.87307
## 3                  1576            2.5        Sparks          39.53318
## 4                  1249            2.5          Reno          39.53220
## 5                   787            2.5  Philadelphia          39.87742
## 6                   767            2.5 Santa Barbara          34.41769
##   bus_view.longitude bus_view.count_star_1 bus_view.count_star_2
## 1          -75.15881                  1001                   807
## 2          -75.24325                   600                   511
## 3         -119.75573                   753                   281
## 4         -119.81536                   365                   203
## 5          -75.24052                   254                   157
## 6         -119.66853                   266                   155
##   bus_view.count_star_3 bus_view.count_star_4 bus_view.count_star_5
## 1                   765                   505                   350
## 2                   579                   366                   179
## 3                   224                   229                   166
## 4                   301                   264                   159
## 5                   161                   147                    79
## 6                   109                   133                   121

Based on the various queries made in Section 3.3, there are 5 steakhouse businesses in Philadelphia for this dataset in total. In truth, there are other steakhouses in the larger Philadelphia area, however, Yelp only includes a few metropolitan areas. Apart from Geno’s Steaks, the others that are categorised as ‘steakhouses’ are Butcher and Singer, Fogo de Chao Oyster House, Del Frisco’s Double Eagle Steakhouse. All of them are rated at 4 except for Butcher and Singer which has a rating of 4.5.

##              yb.address yb.attributes_alcohol
## 1        1500 Walnut St           u'full_bar'
## 2      1337 Chestnut St            'full_bar'
## 3         1219 S 9th St                'none'
## 4        1516 Sansom St           u'full_bar'
## 5 1428-1432 Chestnut St           u'full_bar'
##                                                                                                                                            yb.attributes_ambience
## 1  {'romantic': False, 'intimate': False, 'classy': True, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': False, 'upscale': True, 'casual': False}
## 2 {'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': True, 'trendy': False, 'upscale': False, 'casual': False}
## 3    {'touristy': True, 'hipster': False, 'romantic': False, 'divey': None, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': None}
## 4  {'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': True, 'casual': False}
## 5  {'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': True, 'classy': True, 'casual': False}
##   yb.attributes_byobcorkage yb.attributes_bikeparking
## 1                      <NA>                     False
## 2                      'no'                     False
## 3                'yes_free'                      True
## 4                      <NA>                      True
## 5                      <NA>                     False
##   yb.attributes_businessacceptscreditcards
## 1                                     True
## 2                                     True
## 3                                    False
## 4                                     True
## 5                                     True
##                                                         yb.attributes_businessparking
## 1 {'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}
## 2   {'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}
## 3  {'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}
## 4  {'garage': False, 'street': True, 'validated': True, 'lot': False, 'valet': False}
## 5   {'garage': True, 'street': True, 'validated': False, 'lot': False, 'valet': True}
##   yb.attributes_byappointmentonly yb.attributes_caters yb.attributes_coatcheck
## 1                            <NA>                False                    <NA>
## 2                            <NA>                 True                    <NA>
## 3                            <NA>                False                    <NA>
## 4                           False                False                    <NA>
## 5                           False                 True                   False
##   yb.attributes_corkage yb.attributes_dogsallowed yb.attributes_goodforkids
## 1                  <NA>                     False                     False
## 2                 False                      <NA>                     False
## 3                 False                      True                      True
## 4                  <NA>                     False                     False
## 5                  <NA>                     False                     False
##                                                                                    yb.attributes_goodformeal
## 1 {'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}
## 2 {'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}
## 3  {'dessert': False, 'latenight': True, 'lunch': True, 'dinner': None, 'brunch': False, 'breakfast': False}
## 4 {'dessert': False, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}
## 5  {'dessert': None, 'latenight': False, 'lunch': None, 'dinner': True, 'brunch': False, 'breakfast': False}
##   yb.attributes_happyhour yb.attributes_hastv yb.attributes_noiselevel
## 1                   False               False               u'average'
## 2                    True               False               u'average'
## 3                   False                True               u'average'
## 4                    True               False               u'average'
## 5                    True                True               u'average'
##   yb.attributes_outdoorseating yb.attributes_restaurantsattire
## 1                         True                       u'dressy'
## 2                         True                        'casual'
## 3                         True                        'casual'
## 4                         True                       u'casual'
## 5                         None                       u'dressy'
##   yb.attributes_restaurantsdelivery yb.attributes_restaurantsgoodforgroups
## 1                              True                                   True
## 2                              True                                   True
## 3                              True                                   True
## 4                              True                                   True
## 5                              True                                   True
##   yb.attributes_restaurantspricerange2 yb.attributes_restaurantsreservations
## 1                                    4                                  True
## 2                                    4                                  True
## 3                                    2                                 False
## 4                                    3                                  True
## 5                                    4                                  True
##   yb.attributes_restaurantstableservice yb.attributes_restaurantstakeout
## 1                                  True                             True
## 2                                 False                             True
## 3                                 False                             True
## 4                                  True                             True
## 5                                  <NA>                             True
##   yb.attributes_wheelchairaccessible yb.attributes_wifi         yb.business_id
## 1                               True              u'no' 0oSSjekU-3GR8gselReWnA
## 2                               <NA>              u'no' cGX-1IUwXOjkUqZbkKYcjw
## 3                               True              u'no' IkY2ticzHEn4QFn8hQLSWg
## 4                               True              u'no' poviu-6n3iaRE4gdQz6OYw
## 5                               <NA>            u'free' 4R2KR_-FybS7oegGrXjHVg
##                                                                     yb.categories
## 1                                Restaurants, Steakhouses, American (Traditional)
## 2                                    Seafood, Steakhouses, Brazilian, Restaurants
## 3                              Sandwiches, Cheesesteaks, Steakhouses, Restaurants
## 4                                               Restaurants, Steakhouses, Seafood
## 5 Food, Restaurants, Seafood, Specialty Food, Steakhouses, American (Traditional)
##        yb.city yb.hours_friday yb.hours_monday yb.hours_saturday
## 1 Philadelphia       16:0-21:0         0:0-0:0         17:0-23:0
## 2 Philadelphia      11:0-22:30      17:30-22:0       11:30-22:30
## 3 Philadelphia         0:0-0:0         0:0-0:0           0:0-0:0
## 4 Philadelphia      11:30-22:0            <NA>        11:30-22:0
## 5 Philadelphia        17:0-0:0       17:0-21:0         15:0-20:0
##   yb.hours_sunday yb.hours_thursday yb.hours_tuesday yb.hours_wednesday
## 1       17:0-22:0         17:0-22:0        17:0-22:0          17:0-22:0
## 2      11:30-21:0        17:30-22:0       17:30-22:0         17:30-22:0
## 3         0:0-0:0           0:0-0:0          0:0-0:0            0:0-0:0
## 4            <NA>        11:30-21:0       11:30-21:0         11:30-21:0
## 5       16:0-21:0         17:0-22:0        17:0-21:0          17:0-21:0
##   yb.is_open yb.latitude yb.longitude                              yb.name
## 1          1    39.94933    -75.16618                   Butcher and Singer
## 2          1    39.95092    -75.16297                         Fogo de Chao
## 3          1    39.93384    -75.15881                        Geno's Steaks
## 4          1    39.95022    -75.16655                         Oyster House
## 5          1    39.95096    -75.16546 Del Frisco's Double Eagle Steakhouse
##   yb.postal_code yb.review_count yb.stars yb.state        ybc.business_id
## 1          19102            1290      4.5       PA 0oSSjekU-3GR8gselReWnA
## 2          19107            1426      4.0       PA cGX-1IUwXOjkUqZbkKYcjw
## 3          19147            3401      2.5       PA IkY2ticzHEn4QFn8hQLSWg
## 4          19102            1407      4.0       PA poviu-6n3iaRE4gdQz6OYw
## 5          19102            1129      4.0       PA 4R2KR_-FybS7oegGrXjHVg
##   ybc.category
## 1  Steakhouses
## 2  Steakhouses
## 3  Steakhouses
## 4  Steakhouses
## 5  Steakhouses

Using business_id to obtain a dataframe with all the reviews.

For ease of use, run read.csv("gen_rev.csv") to get the dataset directly to avoid needing to obtain it from hadoop. There are 3490 reviews.

There are two reviews that still have the newline causing issues. Since it was just two (review_id: fRZGdiaCTbBkifuEz_klcw, ooXvho4aODoq_ffOqtuYbA), I removed them. There were also two Chinese reviews (review_id: 5IQ0ERyPZpuobdxHZAd7fA, uxRYoAM_eLWBHGPjIDkntQ) that were removed since our analysis will be using English lexicons and stopwords.

gen_rev <- gen_rev[!((is.na(gen_rev$yelp_review.user_id)) | (gen_rev$yelp_review.review_id %in% c('5IQ0ERyPZpuobdxHZAd7fA', 'uxRYoAM_eLWBHGPjIDkntQ'))), ]

gen_rev$yelp_review.date<-as.Date(gen_rev$yelp_review.date)

Next is preparing the corpus and removal of punctuation, numbers, whitespace and common stopwords. Finally, the words were lemmatized. Lemmatization uses a dictionary to reduce a word down to its root form while preserving the word’s legibility. The other method of stemming is similar but more destructive so it was not opted for.

## Loading required package: NLP
## 
## Attaching package: 'NLP'
## The following object is masked from 'package:ggplot2':
## 
##     annotate
## Loading required package: koRpus.lang.en
## Loading required package: koRpus
## Loading required package: sylly
## For information on available language packages for 'koRpus', run
## 
##   available.koRpus.lang()
## 
## and see ?install.koRpus.lang()
## 
## Attaching package: 'koRpus'
## The following object is masked from 'package:tm':
## 
##     readTagged
## The following object is masked from 'package:readr':
## 
##     tokenize

4.2 Exploratory Data Analysis

Looking at this, Geno’s Steaks is far away from the other steakhouses. So, theoretically they have the advantage of being less competition. However, the location of the other steakhouses seems to be nearer to a city hall and a main transportation route while Geno’s Steaks is comparatively out of the way.

Aside from the month of 2019-07, the most popular period for reviews for this business occurred from around mid 2013 to late 2014. The colours correspond to the frequency, pink 0-10, orange 11-20, blue 21-30, yellow 31-40, black 41-50, red is 53.

5-star reviews have always lagged behind the others, growing at a consistent rate. However, on the other hand, during the rush of reviews during 2013-2014 mentioned before, the rates of other star ratings went up with 1-star ratings going slightly more up compared to 2, 3, 4 rating.

df_cumsum <- gen_rev %>% mutate(review_month = format(gen_rev$yelp_review.date, "%Y-%m")) %>%
  count(review_month,yelp_review.stars) %>%
  pivot_wider(names_from = yelp_review.stars, values_from = n, values_fill = 0, names_prefix = "star_") %>%
  arrange(review_month) %>%
  mutate(across(starts_with("star_"), cumsum)) %>%
  pivot_longer(cols = starts_with("star_"),
               names_to = "star",
               names_prefix = "star_",
               values_to = "cum_count")%>% ungroup() %>% group_by(star) %>%
  mutate(star = factor(star), percent_cum = 100 * (cum_count / max(cum_count)))

#Cumulative sum of stra rating
ggplot(df_cumsum, aes(x = review_month, y = cum_count,color = star, group = star)) +
  geom_line(size = 1) +
  labs(
    title = "Cumulative Sum of Star Ratings Over Time",
    x = "Date",
    y = "Cumulative Count",
    color = "Star Rating"
  ) +
  scale_color_brewer(palette = "Set1") +
  theme_minimal()

#Percentage cumulative
ggplot(df_cumsum, aes(x = review_month, y = percent_cum,color = star, group = star)) +
  geom_line(size = 1) +
  labs(
    title = "Cumulative Sum of Star Ratings Over Time",
    x = "Date",
    y = "Cumulative Count",
    color = "Star Rating"
  ) +
  scale_color_brewer(palette = "Set1") +
  theme_minimal()

4.3 Analysis: Word Frequencies / Word Association

A Document-Term Matrix (DTM) is a table that represents the frequency of terms or words in our collection of reviews. Based on the DTM, there are 9022 unique words.

library(tm)
dtm<-DocumentTermMatrix(docs)
dtm_df<-data.frame(cbind(as.matrix(dtm),gen_rev$yelp_review.stars))
names(dtm_df)[9023]<-"stars_rating"
dtm_df$stars_rating<-as.integer(dtm_df$stars_rating)

library(tidyverse)
#Frequency of words per star rating
d<-dtm_df %>% group_by(stars_rating) %>% summarise(across(everything(),sum)) %>% pivot_longer(cols = -stars_rating, names_to="term",values_to="freq") 

#Frequency of words overall
dtm_sum<- data.frame(names(colSums(as.matrix(dtm))),colSums(as.matrix(dtm)))
names(dtm_sum)<-c("term","freq")

Term Frequency

Across all documents, below are the most common words as in they appear in the most number of documents. Those words are good, genos (referring to the name of the business), pat (apparently a rival business), words related to the food on the menu including ‘whiz’, a processed cheese sauce for Philly cheesesteak, and philly (short for Philadelphia).

dtm_sum %>% arrange(desc(freq)) %>% head(30) %>% 
  ggplot(aes(x=freq, y=reorder(term,freq))) +
  geom_bar(stat="identity") +
  labs(
    title="Most frequent terms",
    y="Term",
    x="Frequency"
  )

Wordcloud

For words with a frequency of at least 200, the key words are most related to food or cooking terms (fry, provolone, onion), or the location (Philly), although there are less nicer words like ‘bad’, ‘bland’, ‘rude’, ‘disappoint’, and ‘trap’.

library(wordcloud2)
wordcloud2(dtm_sum[dtm_sum$freq >=200,],size=0.7,shape="diamond",shuffle = FALSE)

In order to capture the ‘unique’ words within a particular star rating, the percent frequency was calculated where the word has appeared at least 30 times over all reviews. Therefore, if a word has a higher frequency in 1-star reviews compared to other star reviews, it will have a higher proportion. For example, the word ‘disgust’ appears in 1-star reviews 88% percent of the time, making it more unique to that. Apart from negative descriptor words, other words that appear include xenophobic, tasteless, overpriced, rubbery, racist, racism, rude, flavorless, immigrant, stale.

library(wordcloud)
## Loading required package: RColorBrewer
d2 <- d %>% group_by(term) %>% 
  mutate(total = sum(freq)) %>% 
  mutate(percent_freq = round((freq/total)*100)) %>% 
     filter(total>=30) %>% slice_max(percent_freq, n = 1, with_ties = FALSE) %>% ungroup() %>% arrange(desc(percent_freq))
d3 <- d2 %>% filter(stars_rating == 1) %>% slice_head(n = 50)
wordcloud(
  words = d3$term,
  freq = d3$percent_freq,
  min.freq = 1,
  scale = c(2, 0.5),
  colors = colorRampPalette(brewer.pal(10, "Spectral"))(length(d3$term)),
  ordered.colors = T,
  random.order = FALSE,
  rot.per = 0.25
)

Moving to the 2-star reviews, additional problems are being complained about. Neon lights and food that is grease-y, cheap or soggy appear here. The word ‘toast’ comes from feedback about upsettingly untoasted bread.

d3 <- d2 %>% filter(stars_rating == 2) %>% slice_head(n = 50)
wordcloud(
  words = d3$term,
  freq = d3$percent_freq,
  min.freq = 1,
  scale = c(1.5, 0.5),
  colors = colorRampPalette(brewer.pal(10, "Spectral"))(length(d3$term)),
  ordered.colors = T,
  random.order = FALSE,
  rot.per = 0.25
)

For 3-star ratings, words that are predominantly in it are becoming more neutral.

d3 <- d2 %>% filter(stars_rating == 3) %>% slice_head(n = 50)
wordcloud(
  words = d3$term,
  freq = d3$percent_freq,
  min.freq = 1,
  scale = c(1.5, 0.5),
  colors = colorRampPalette(brewer.pal(10, "Spectral"))(length(d3$term)),
  ordered.colors = T,
  random.order = FALSE,
  rot.per = 0.25
)

While it may be lacking in some respects, those who enjoyed their time in Genos’ Steaks’ food is tender and a classic. The word ‘friendly’ also appears here.

d3 <- d2 %>% filter(stars_rating == 4) %>% slice_head(n = 50)
wordcloud(
  words = d3$term,
  freq = d3$percent_freq,
  min.freq = 1,
  scale = c(1.5, 0.5),
  colors = colorRampPalette(brewer.pal(10, "Spectral"))(length(d3$term)),
  ordered.colors = T,
  random.order = FALSE,
  rot.per = 0.25
)

For 5-star reviews, only 3 words are at 32, 30, and 26% out of the other star ratings appear. Which means there isn’t any term that is particularly unique in a 5 star rating that isn’t already appearing in a 4 star review or elsewhere.

d3 <- d2 %>% filter(stars_rating == 5) %>% slice_head(n = 50)
wordcloud(
  words = d3$term,
  freq = d3$percent_freq,
  min.freq = 1,
  scale = c(10, 0),
  colors = colorRampPalette(brewer.pal(10, "Spectral"))(length(d3$term)),
  ordered.colors = T,
  random.order = FALSE,
  rot.per = 0.25
)

Word Correlations

As can be seen below, the top three words are heavily associated with each other, with even ‘geno’ appearing in reviews often only when ‘pat’ is there too, most likely as a way to refer and differentiate them. While ‘genos’ is more or less associated with food items, the word ‘pat’ is often appears in reviews together with words like ‘compare’, ‘comparison’, ‘either’, ‘difference’, ‘prefer’, ‘decide’, which tracks with how it is often brought up in reviews as something reviewers measure Geno’s Steaks to.

findAssocs(dtm,"good",0.2)
## $good
##       genos         pat         one cheesesteak        like      philly 
##        0.31        0.31        0.25        0.24        0.23        0.23 
##       steak       bread      cheese        make         get       order 
##        0.23        0.22        0.22        0.22        0.22        0.21 
##       place       think 
##        0.21        0.21
findAssocs(dtm,"genos",0.2)
## $genos
##          pat         good        steak  cheesesteak        order          one 
##         0.64         0.31         0.31         0.30         0.30         0.29 
##         meat       philly         also         make        onion         whiz 
##         0.28         0.27         0.27         0.26         0.26         0.26 
##          two          say          get       little     sandwich        bread 
##         0.26         0.26         0.25         0.24         0.24         0.23 
##         just         like          try         find        think       window 
##         0.23         0.23         0.23         0.23         0.23         0.23 
##        first philadelphia         bite       decide        slice       cheese 
##         0.23         0.23         0.22         0.22         0.22         0.21 
##      compare        right          eat          way       street         much 
##         0.21         0.21         0.21         0.21         0.21         0.20 
##       review         seem        since         chop 
##         0.20         0.20         0.20         0.20
findAssocs(dtm,"pat",0.2)
## $pat
##      genos       good        two    compare comparison       meat        one 
##       0.64       0.31       0.27       0.25       0.25       0.24       0.24 
##        try      steak     street       whiz     little      bread       seem 
##       0.24       0.24       0.24       0.24       0.23       0.22       0.22 
##     across     either       like      think difference      slice       chop 
##       0.22       0.21       0.21       0.21       0.21       0.21       0.21 
##     prefer     decide 
##       0.21       0.20

Compared to the top 3 words, many of the negative words aren’t as heavily associated with another word, with those at a correlation limit of around 0.1 to 0.2 usually only matching one or two reviews. For words like ‘bad’, ‘rude’, and ‘disappoint’, it means those words are used generally. Exceptions are the word ‘trap’ with the word ‘tourist’, referring to the phrase ‘tourist trap’ to describe it. For ‘racist’ and ‘offensive’, both are associated with the word ‘sign’. The word ‘sign’ itself is also heavily associated with ‘english’, ‘speak’, ‘america’.

findAssocs(dtm,"bad",0.15)
## $bad
##        ever politicsand        even  genosyoull      shaker 
##        0.24        0.24        0.18        0.17        0.17
findAssocs(dtm,"disappoint",0.15)
## $disappoint
## orderlike  meatball 
##      0.17      0.16
findAssocs(dtm,"rude",0.15)
## $rude
##     lady    staff    logic shitload 
##     0.23     0.19     0.16     0.16
findAssocs(dtm,"trap",0.15)
## $trap
##      tourist dellesandros pennsyltucky     gristled 
##         0.55         0.18         0.18         0.18
findAssocs(dtm,"offensive",0.20)
## $offensive
##           bolt   chicagostyle       construe      giordanos       interpet 
##           0.33           0.33           0.33           0.33           0.33 
##       malnatis        soapbox         speech        stellar           sign 
##           0.33           0.33           0.26           0.24           0.23 
##          flair discriminatory            lou      outwardly         belief 
##           0.23           0.23           0.23           0.23           0.22
findAssocs(dtm,"racist",0.20)
## $racist
##       sign      speak       race   religion      owner       bely   cesspool 
##       0.26       0.26       0.26       0.26       0.25       0.25       0.25 
##     doubly     errand      false     gender  horsecrap   runowned       tale 
##       0.25       0.25       0.25       0.25       0.25       0.25       0.25 
##   thatthen    reserve propaganda    english      bigot   ignorant management 
##       0.25       0.24       0.23       0.23       0.22       0.22       0.22
findAssocs(dtm,"sign",0.25)
## $sign
##   english     speak   america    parent   foreign   country  language   dialect 
##      0.54      0.48      0.39      0.30      0.29      0.28      0.28      0.28 
##    insert immigrate    racist 
##      0.28      0.27      0.26

Unfortunately, specific words that could be associated with the food items could not be drawn. Many of these scores from just one review.

findAssocs(dtm,"onion",0.25)
## $onion
##     order    cheese      whiz provolone     grill     genos  sandwich    remake 
##      0.34      0.33      0.31      0.30      0.30      0.26      0.26      0.26
findAssocs(dtm,"bread",0.2)
## $bread
##   meat   soft  chewy  genos  onion   good    pat cheese 
##   0.32   0.26   0.23   0.23   0.23   0.22   0.22   0.21
findAssocs(dtm,"toast",0.2)
## $toast
##     bleach      flour      olive indication     sponge 
##       0.33       0.33       0.33       0.23       0.23
findAssocs(dtm,"provolone",0.25)
## $provolone
## onion order  whiz 
##  0.30  0.27  0.25
findAssocs(dtm,"cheesesteak",0.25)
## $cheesesteak
##  genos philly  order    one    get 
##   0.30   0.30   0.28   0.27   0.25
findAssocs(dtm,"steak",0.25)
## $steak
##        cheese         genos         blasé   cheesegravy      creation 
##          0.52          0.31          0.26          0.26          0.26 
##    expedition        hunter       inhabit interestingly         kerry 
##          0.26          0.26          0.26          0.26          0.26 
##      montreal    possession     priscilla       procure   quasiracist 
##          0.26          0.26          0.26          0.26          0.26 
##           sam  scantilyclad  sequentially        skanky    steakeries 
##          0.26          0.26          0.26          0.26          0.26 
##         tammy    unmolested        uproar      vanessas 
##          0.26          0.26          0.26          0.26
findAssocs(dtm,"whiz",0.25)
## $whiz
##    cheese     onion     genos     order       wit provolone 
##      0.35      0.31      0.26      0.26      0.26      0.25
findAssocs(dtm,"flour",0.25)
## $flour
##       bleach        olive       sponge   complement     baguette unappetizing 
##         1.00         1.00         0.71         0.58         0.45         0.41 
##        toast      veggies  consistency        tooth 
##         0.33         0.32         0.29         0.27

Bigram Network

Bigrams are words that are next to each other in the text. However, in this case, the text has been processed and its stopwords removed, some of these ‘bigrams’ are not actually next to each other in the original text, e.g. the bigram ‘bread meat’ may have originally been ‘bread and meat’. When filtering for word pairs that appeared at least 50 times, there are some phrases in here that pop up regularly in the reviews, phrases such as ‘food network’ (referring to a TV show), ‘waste’ which regularly occurs next to ‘(of) time’ and ‘(of) money’, ‘tourist trap’, ‘tony luke’ (another restaurant namedropped in reviews), ‘wait line long’, ‘nothing special’, ‘speak english’.

Compared to the term frequency, using bigrams to analyse Yelp reviews for Genos seems to accrue more meaningful keyword expressions at a glance. Interestingly, a lot of the bigrams are to do with complaints when ignoring the common words like the food and location names. Reviewers seem to feel like Geno’s Steak is a tourist trap that is nothing special, or even worse, a waste of time since you might have to wait in line for a long time. It also highlights one major source of how people hear about this restaurant through the TV food network show.

library(tidytext)
processed_text<- data.frame(text = docs, stringsAsFactors = FALSE)
gen_word_pairs_ori <- processed_text %>%
  unnest_tokens(bigram,text,token = "ngrams", n = 2) %>%
  count(bigram, sort = TRUE) %>% separate(bigram, c("word1", "word2"), sep = " ")
gen_word_pairs_ori
##                                                  word1
## 1                                               cheese
## 2                                               across
## 3                                                  pat
## 4                                                genos
## 5                                               philly
## 6                                                 spin
## 7                                               cheese
## 8                                               cheese
## 9                                                 good
## 10                                              philly
## 11                                             tourist
## 12                                                good
## 13                                                  go
## 14                                                  go
## 15                                               speak
## 16                                               genos
## 17                                              cheese
## 18                                                 pat
## 19                                               steak
## 20                                               genos
## 21                                                 try
## 22                                                tony
## 23                                                much
## 24                                                good
## 25                                               taste
## 26                                                good
## 27                                               first
## 28                                                 try
## 29                                                good
## 30                                               south
## 31                                                 pat
## 32                                                good
## 33                                                  do
## 34                                                  go
## 35                                                long
## 36                                                feel
## 37                                         cheesesteak
## 38                                                 get
## 39                                                like
## 40                                                next
## 41                                                good
## 42                                               taste
## 43                                                good
## 44                                               order
## 45                                                 hot
## 46                                               steak
## 47                                                 can
## 48                                               steak
## 49                                              street
## 50                                                come
## 51                                               order
## 52                                               visit
## 53                                                look
## 54                                                 way
## 55                                                 get
## 56                                                whiz
## 57                                                 ive
## 58                                                like
## 59                                            customer
## 60                                                whiz
## 61                                              philly
## 62                                                wait
## 63                                                 ive
## 64                                                 fry
## 65                                                make
## 66                                                want
## 67                                            american
## 68                                               bread
## 69                                              pretty
## 70                                                 pat
## 71                                                good
## 72                                               steak
## 73                                                 wiz
## 74                                                  do
## 75                                                 get
## 76                                                 can
## 77                                                 fry
## 78                                             nothing
## 79                                                good
## 80                                                make
## 81                                                seem
## 82                                                 one
## 83                                               onion
## 84                                                  im
## 85                                           provolone
## 86                                               waste
## 87                                              really
## 88                                                 get
## 89                                                good
## 90                                                meat
## 91                                                take
## 92                                         cheesesteak
## 93                                              cheese
## 94                                                even
## 95                                               steak
## 96                                                  do
## 97                                                food
## 98                                                line
## 99                                                 try
## 100                                               come
## 101                                              place
## 102                                              right
## 103                                              steak
## 104                                               meat
## 105                                              south
## 106                                              taste
## 107                                        cheesesteak
## 108                                             prefer
## 109                                           sandwich
## 110                                             window
## 111                                               good
## 112                                               good
## 113                                                 vs
## 114                                              cheez
## 115                                              grill
## 116                                                pat
## 117                                              place
## 118                                              place
## 119                                        cheesesteak
## 120                                            compare
## 121                                                 go
## 122                                                wiz
## 123                                            freedom
## 124                                                 go
## 125                                               good
## 126                                          authentic
## 127                                        cheesesteak
## 128                                                get
## 129                                                pat
## 130                                               year
## 131                                               neon
## 132                                             philly
## 133                                              place
## 134                                              roast
## 135                                            america
## 136                                        cheesesteak
## 137                                                 do
## 138                                                get
## 139                                               late
## 140                                              genos
## 141                                               joey
## 142                                                say
## 143                                        cheesesteak
## 144                                                 do
## 145                                              genos
## 146                                               line
## 147                                              order
## 148                                              steak
## 149                                              genos
## 150                                              order
## 151                                            outdoor
## 152                                               take
## 153                                               will
## 154                                             decide
## 155                                                 do
## 156                                            english
## 157                                               just
## 158                                              order
## 159                                               sign
## 160                                          somewhere
## 161                                         definitely
## 162                                                eat
## 163                                               good
## 164                                               just
## 165                                               king
## 166                                               make
## 167                                                one
## 168                                              order
## 169                                              slice
## 170                                               time
## 171                                               trip
## 172                                              bread
## 173                                               give
## 174                                                 go
## 175                                               good
## 176                                             little
## 177                                              never
## 178                                                one
## 179                                               time
## 180                                                try
## 181                                              genos
## 182                                               just
## 183                                              wasnt
## 184                                               know
## 185                                               like
## 186                                               real
## 187                                              think
## 188                                              wasnt
## 189                                                bad
## 190                                                eat
## 191                                             french
## 192                                              genos
## 193                                                 go
## 194                                               good
## 195                                               know
## 196                                               live
## 197                                               meat
## 198                                              place
## 199                                              steak
## 200                                               want
## 201                                              didnt
## 202                                               good
## 203                                                one
## 204                                             philly
## 205                                             prefer
## 206                                               read
## 207                                             review
## 208                                                say
## 209                                              steak
## 210                                       cheesesteaks
## 211                                              didnt
## 212                                              drink
## 213                                                eat
## 214                                                get
## 215                                               good
## 216                                              great
## 217                                                 im
## 218                                               jims
## 219                                               just
## 220                                             pretty
## 221                                              steak
## 222                                              visit
## 223                                              wasnt
## 224                                                far
## 225                                               food
## 226                                                get
## 227                                               lack
## 228                                             philly
## 229                                           sandwich
## 230                                               time
## 231                                               walk
## 232                                              worth
## 233                                            america
## 234                                             choose
## 235                                               chop
## 236                                               chop
## 237                                              every
## 238                                                get
## 239                                                 go
## 240                                               good
## 241                                                 im
## 242                                               jims
## 243                                              place
## 244                                              slice
## 245                                              stand
## 246                                                try
## 247                                               whiz
## 248                                                wit
## 249                                              bread
## 250                                        cheesesteak
## 251                                              first
## 252                                                fry
## 253                                              genos
## 254                                              genos
## 255                                                get
## 256                                               good
## 257                                               meat
## 258                                                pat
## 259                                                pat
## 260                                              place
## 261                                              place
## 262                                            service
## 263                                        cheesesteak
## 264                                               find
## 265                                              genos
## 266                                               give
## 267                                               good
## 268                                               just
## 269                                               meat
## 270                                              order
## 271                                                pat
## 272                                              place
## 273                                               thin
## 274                                              think
## 275                                            tourist
## 276                                                wit
## 277                                        cheesesteak
## 278                                        cheesesteak
## 279                                                 do
## 280                                               even
## 281                                               good
## 282                                               just
## 283                                               just
## 284                                               like
## 285                                               look
## 286                                               meat
## 287                                               must
## 288                                               next
## 289                                                one
## 290                                                pat
## 291                                                pat
## 292                                               real
## 293                                               stay
## 294                                              steak
## 295                                               want
## 296                                                 do
## 297                                               fast
## 298                                              genos
## 299                                                get
## 300                                              johns
## 301                                               know
## 302                                               last
## 303                                               love
## 304                                               many
## 305                                               meat
## 306                                                pat
## 307                                             pepper
## 308                                             philly
## 309                                              steak
## 310                                               wait
## 311                                               will
## 312                                              bring
## 313                                          brotherly
## 314                                             cherry
## 315                                               give
## 316                                                 go
## 317                                                hot
## 318                                             indoor
## 319                                               love
## 320                                                new
## 321                                                one
## 322                                              onion
## 323                                                pat
## 324                                                pat
## 325                                                pat
## 326                                             really
## 327                                              steak
## 328                                            tourist
## 329                                             behind
## 330                                        cheesesteak
## 331                                        cheesesteak
## 332                                        cheesesteak
## 333                                        cheesesteak
## 334                                         definitely
## 335                                             famous
## 336                                              genos
## 337                                              genos
## 338                                                get
## 339                                                 go
## 340                                                 im
## 341                                               long
## 342                                                one
## 343                                              onion
## 344                                              order
## 345                                              order
## 346                                              order
## 347                                                pat
## 348                                                pat
## 349                                           sandwich
## 350                                               save
## 351                                                two
## 352                                                 vs
## 353                                                way
## 354                                              worth
## 355                                              bread
## 356                                        cheesesteak
## 357                                        cheesesteak
## 358                                              didnt
## 359                                               find
## 360                                                fry
## 361                                              genos
## 362                                                 go
## 363                                                 go
## 364                                               line
## 365                                              onion
## 366                                                pat
## 367                                               real
## 368                                           sandwich
## 369                                           sandwich
## 370                                                say
## 371                                              steak
## 372                                               stop
## 373                                               take
## 374                                              think
## 375                                                wit
## 376                                                can
## 377                                               city
## 378                                                eat
## 379                                               ever
## 380                                              first
## 381                                                get
## 382                                                 go
## 383                                               good
## 384                                               good
## 385                                                ive
## 386                                               like
## 387                                               like
## 388                                               make
## 389                                               move
## 390                                                pat
## 391                                                pat
## 392                                             philly
## 393                                             philly
## 394                                             really
## 395                                               road
## 396                                           sandwich
## 397                                                say
## 398                                              steak
## 399                                              still
## 400                                                try
## 401                                               want
## 402                                              waste
## 403                                               will
## 404                                              worth
## 405                                           anywhere
## 406                                              bread
## 407                                             bright
## 408                                             bucket
## 409                                             cheese
## 410                                              first
## 411                                             flavor
## 412                                              genos
## 413                                              genos
## 414                                              genos
## 415                                              genos
## 416                                               good
## 417                                                ive
## 418                                             little
## 419                                                lot
## 420                                                may
## 421                                               must
## 422                                                one
## 423                                             people
## 424                                              place
## 425                                             really
## 426                                               stop
## 427                                            tourist
## 428                                             travel
## 429                                                try
## 430                                              visit
## 431                                              youre
## 432                                             bottom
## 433                                              cross
## 434                                                cut
## 435                                             enough
## 436                                             excite
## 437                                              genos
## 438                                                get
## 439                                               just
## 440                                               line
## 441                                             little
## 442                                               make
## 443                                               many
## 444                                               melt
## 445                                               much
## 446                                              order
## 447                                                pat
## 448                                               side
## 449                                              steak
## 450                                                try
## 451                                              youre
## 452                                               back
## 453                                              bread
## 454                                        cheesesteak
## 455                                        cheesesteak
## 456                                              cheez
## 457                                             decide
## 458                                             flavor
## 459                                              genos
## 460                                              genos
## 461                                              genos
## 462                                              genos
## 463                                                get
## 464                                               give
## 465                                                 go
## 466                                               good
## 467                                               good
## 468                                               good
## 469                                               high
## 470                                             highly
## 471                                               just
## 472                                               like
## 473                                               like
## 474                                               like
## 475                                               live
## 476                                               meat
## 477                                               meat
## 478                                               meat
## 479                                              onion
## 480                                              order
## 481                                              place
## 482                                              place
## 483                                            quality
## 484                                          recommend
## 485                                               salt
## 486                                           sandwich
## 487                                                say
## 488                                              steak
## 489                                              steak
## 490                                             street
## 491                                               time
## 492                                               time
## 493                                               want
## 494                                              block
## 495                                              bread
## 496                                              bread
## 497                                                can
## 498                                                can
## 499                                             cheese
## 500                                             cheese
## 501                                        cheesesteak
## 502                                       cheesesteaks
## 503                                         definitely
## 504                                                eat
## 505                                              genos
## 506                                                get
## 507                                                 go
## 508                                               good
## 509                                               good
## 510                                              great
## 511                                               isnt
## 512                                               like
## 513                                               line
## 514                                               meat
## 515                                               meat
## 516                                               move
## 517                                              onion
## 518                                                pat
## 519                                                pat
## 520                                             philly
## 521                                              place
## 522                                          provolone
## 523                                             racist
## 524                                                say
## 525                                              steak
## 526                                             street
## 527                                             thinly
## 528                                              whole
## 529                                               will
## 530                                            without
## 531                                            wouldnt
## 532                                               zero
## 533                                                big
## 534                                                can
## 535                                        cheesesteak
## 536                                             decide
## 537                                                 do
## 538                                             either
## 539                                         experience
## 540                                             famous
## 541                                              genos
## 542                                              genos
## 543                                                 go
## 544                                                ive
## 545                                               just
## 546                                            liberty
## 547                                               like
## 548                                                lot
## 549                                                one
## 550                                              onion
## 551                                              onion
## 552                                              order
## 553                                          recommend
## 554                                                see
## 555                                              steak
## 556                                             street
## 557                                              taste
## 558                                               time
## 559                                                two
## 560                                               want
## 561                                               will
## 562                                               also
## 563                                            another
## 564                                           anything
## 565                                              avoid
## 566                                                bad
## 567                                        cheesesteak
## 568                                               come
## 569                                            compare
## 570                                         definitely
## 571                                              didnt
## 572                                            english
## 573                                               even
## 574                                         experience
## 575                                             famous
## 576                                                fry
## 577                                              genos
## 578                                              genos
## 579                                                get
## 580                                               give
## 581                                                 go
## 582                                               good
## 583                                               good
## 584                                                 im
## 585                                            italian
## 586                                               just
## 587                                               know
## 588                                               line
## 589                                             little
## 590                                               meat
## 591                                               meat
## 592                                               next
## 593                                                one
## 594                                              order
## 595                                              order
## 596                                             philly
## 597                                             philly
## 598                                             philly
## 599                                              place
## 600                                             police
## 601                                              rival
## 602                                               roll
## 603                                              steak
## 604                                              steak
## 605                                               take
## 606                                               tell
## 607                                               time
## 608                                              youll
## 609                                             around
## 610                                                bad
## 611                                                bad
## 612                                               bite
## 613                                               blow
## 614                                             cheese
## 615                                                 do
## 616                                                eat
## 617                                              first
## 618                                              first
## 619                                              genos
## 620                                              genos
## 621                                              genos
## 622                                              genos
## 623                                                 go
## 624                                                 go
## 625                                               good
## 626                                               good
## 627                                               good
## 628                                               just
## 629                                               line
## 630                                                low
## 631                                               meat
## 632                                               much
## 633                                                one
## 634                                              order
## 635                                              order
## 636                                            overall
## 637                                                pat
## 638                                             philly
## 639                                              place
## 640                                              place
## 641                                             review
## 642                                              right
## 643                                           sandwich
## 644                                                say
## 645                                            service
## 646                                              steak
## 647                                              steak
## 648                                               tell
## 649                                               time
## 650                                                try
## 651                                              youre
## 652                                                  2
## 653                                             amount
## 654                                             around
## 655                                                bad
## 656                                              bread
## 657                                              bread
## 658                                              bread
## 659                                              bread
## 660                                               cant
## 661                                             cheese
## 662                                             cheese
## 663                                        cheesesteak
## 664                                           directly
## 665                                                 do
## 666                                                 do
## 667                                                eat
## 668                                               fast
## 669                                             friend
## 670                                              genos
## 671                                                get
## 672                                               good
## 673                                               good
## 674                                               good
## 675                                              great
## 676                                              great
## 677                                                ill
## 678                                                 im
## 679                                               just
## 680                                               just
## 681                                               look
## 682                                               make
## 683                                               make
## 684                                               meat
## 685                                                one
## 686                                                one
## 687                                                one
## 688                                                pat
## 689                                                pat
## 690                                                pat
## 691                                             philly
## 692                                             review
## 693                                               rude
## 694                                           sandwich
## 695                                           sandwich
## 696                                               sign
## 697                                           slightly
## 698                                              staff
## 699                                              steak
## 700                                              steak
## 701                                              steak
## 702                                              think
## 703                                               time
## 704                                               true
## 705                                              wasnt
## 706                                                way
## 707                                             window
## 708                                                wit
## 709                                                wiz
## 710                                               wrap
## 711                                               also
## 712                                           american
## 713                                             around
## 714                                          authentic
## 715                                              birch
## 716                                               bite
## 717                                              bland
## 718                                              bread
## 719                                             cheese
## 720                                        cheesesteak
## 721                                            classic
## 722                                             credit
## 723                                               damn
## 724                                              didnt
## 725                                                 do
## 726                                                dry
## 727                                               east
## 728                                                eat
## 729                                         experience
## 730                                             famous
## 731                                            finally
## 732                                              genos
## 733                                               give
## 734                                               good
## 735                                              great
## 736                                               hear
## 737                                                 id
## 738                                                ive
## 739                                                las
## 740                                               like
## 741                                               like
## 742                                               line
## 743                                               long
## 744                                               love
## 745                                               love
## 746                                               many
## 747                                               many
## 748                                              maybe
## 749                                           mushroom
## 750                                              never
## 751                                              onion
## 752                                              order
## 753                                                pat
## 754                                                pat
## 755                                                pat
## 756                                                pat
## 757                                             people
## 758                                             philly
## 759                                              place
## 760                                            rivalry
## 761                                           sandwich
## 762                                                see
## 763                                                see
## 764                                                sit
## 765                                              slice
## 766                                              steak
## 767                                              steak
## 768                                              steak
## 769                                               take
## 770                                              taste
## 771                                               time
## 772                                            tourist
## 773                                                try
## 774                                                try
## 775                                               want
## 776                                               want
## 777                                               whiz
## 778                                               will
## 779                                                  2
## 780                                               also
## 781                                               cant
## 782                                        cheesesteak
## 783                                        cheesesteak
## 784                                        cheesesteak
## 785                                               chop
## 786                                            couldnt
## 787                                                 do
## 788                                                 do
## 789                                                 do
## 790                                                dry
## 791                                                dry
## 792                                                eat
## 793                                                eat
## 794                                             enough
## 795                                         everything
## 796                                               feel
## 797                                               find
## 798                                              first
## 799                                               geno
## 800                                              genos
## 801                                              genos
## 802                                              genos
## 803                                              genos
## 804                                              genos
## 805                                              genos
## 806                                                 go
## 807                                               good
## 808                                               good
## 809                                              great
## 810                                               hard
## 811                                               hear
## 812                                                 im
## 813                                               know
## 814                                               lady
## 815                                               line
## 816                                               meat
## 817                                               much
## 818                                           mushroom
## 819                                              never
## 820                                              never
## 821                                               okay
## 822                                                one
## 823                                                one
## 824                                                one
## 825                                              order
## 826                                                pat
## 827                                                pat
## 828                                                pat
## 829                                       philadelphia
## 830                                             philly
## 831                                              piece
## 832                                              place
## 833                                              place
## 834                                              place
## 835                                              place
## 836                                               pork
## 837                                          provolone
## 838                                             really
## 839                                            rivalry
## 840                                                say
## 841                                               soft
## 842                                              steak
## 843                                              steak
## 844                                               stop
## 845                                               take
## 846                                              taste
## 847                                              taste
## 848                                                way
## 849                                                wit
## 850                                               wont
## 851                                               wont
## 852                                              worth
## 853                                              write
## 854                                               back
## 855                                                bad
## 856                                               cant
## 857                                             cheese
## 858                                        cheesesteak
## 859                                       cheesesteaks
## 860                                             choose
## 861                                               come
## 862                                               cook
## 863                                               cook
## 864                                             decide
## 865                                              didnt
## 866                                              didnt
## 867                                                 do
## 868                                                 do
## 869                                                 do
## 870                                              drive
## 871                                                eat
## 872                                                eat
## 873                                             either
## 874                                               ever
## 875                                              genos
## 876                                              genos
## 877                                              genos
## 878                                              genos
## 879                                                get
## 880                                                 go
## 881                                               good
## 882                                               good
## 883                                              great
## 884                                               high
## 885                                                hit
## 886                                               just
## 887                                               just
## 888                                               know
## 889                                               last
## 890                                               like
## 891                                               like
## 892                                                lot
## 893                                               make
## 894                                               meat
## 895                                           negative
## 896                                               neon
## 897                                               next
## 898                                                now
## 899                                               open
## 900                                              order
## 901                                                pat
## 902                                                pat
## 903                                                pat
## 904                                                pat
## 905                                             people
## 906                                             pepper
## 907                                             philly
## 908                                             philly
## 909                                              place
## 910                                                put
## 911                                              quick
## 912                                               read
## 913                                             really
## 914                                           sandwich
## 915                                           sandwich
## 916                                           sandwich
## 917                                           sandwich
## 918                                           sandwich
## 919                                           sandwich
## 920                                                see
## 921                                              slice
## 922                                              steak
## 923                                              steak
## 924                                              steak
## 925                                              steak
## 926                                              steak
## 927                                              steak
## 928                                              taste
## 929                                              thick
## 930                                              thing
## 931                                               time
## 932                                           touristy
## 933                                           touristy
## 934                                                try
## 935                                              visit
## 936                                               want
## 937                                               will
## 938                                               will
## 939                                              youre
## 940                                              youve
## 941                                           anything
## 942                                                bad
## 943                                              bland
## 944                                              bland
## 945                                              bread
## 946                                               care
## 947                                        cheesesteak
## 948                                        cheesesteak
## 949                                        cheesesteak
## 950                                       cheesesteaks
## 951                                                 do
## 952                                                 do
## 953                                                 do
## 954                                              drink
## 955                                              drive
## 956                                               edge
## 957                                             either
## 958                                               even
## 959                                               ever
## 960                                           favorite
## 961                                             flavor
## 962                                               food
## 963                                               food
## 964                                                fry
## 965                                              genos
## 966                                              genos
## 967                                              genos
## 968                                                get
## 969                                                get
## 970                                                 go
## 971                                                 go
## 972                                               good
## 973                                               good
## 974                                               good
## 975                                               good
## 976                                               good
## 977                                               good
## 978                                               good
## 979                                                 id
## 980                                                 im
## 981                                               jims
## 982                                               just
## 983                                            ketchup
## 984                                               know
## 985                                               like
## 986                                             little
## 987                                               long
## 988                                               make
## 989                                               meat
## 990                                               meat
## 991                                             minute
## 992                                               much
## 993                                              never
## 994                                                 oh
## 995                                                one
## 996                                                one
## 997                                                one
## 998                                                pat
## 999                                                pat
## 1000                                               pat
## 1001                                               pat
## 1002                                            philly
## 1003                                            philly
## 1004                                             place
## 1005                                            pretty
## 1006                                          probably
## 1007                                           quality
## 1008                                            really
## 1009                                            reason
## 1010                                          sandwich
## 1011                                          sandwich
## 1012                                               say
## 1013                                               say
## 1014                                               say
## 1015                                             south
## 1016                                              star
## 1017                                             steak
## 1018                                            street
## 1019                                              sure
## 1020                                              take
## 1021                                             thing
## 1022                                             think
## 1023                                             three
## 1024                                             throw
## 1025                                               try
## 1026                                              wait
## 1027                                             wasnt
## 1028                                               way
## 1029                                             white
## 1030                                             whole
## 1031                                              yelp
## 1032                                            accept
## 1033                                               act
## 1034                                           another
## 1035                                               ask
## 1036                                              back
## 1037                                               bad
## 1038                                               big
## 1039                                             bread
## 1040                                             bread
## 1041                                             bread
## 1042                                              cash
## 1043                                       cheesesteak
## 1044                                           compare
## 1045                                           country
## 1046                                            decide
## 1047                                             didnt
## 1048                                             didnt
## 1049                                         different
## 1050                                        disappoint
## 1051                                                do
## 1052                                               eat
## 1053                                               eat
## 1054                                             every
## 1055                                            famous
## 1056                                               far
## 1057                                              find
## 1058                                              find
## 1059                                             first
## 1060                                            flavor
## 1061                                            flavor
## 1062                                              food
## 1063                                              food
## 1064                                              four
## 1065                                            friend
## 1066                                               fry
## 1067                                               fun
## 1068                                             genos
## 1069                                             genos
## 1070                                             genos
## 1071                                             genos
## 1072                                             genos
## 1073                                               get
## 1074                                              good
## 1075                                              good
## 1076                                              good
## 1077                                              good
## 1078                                              good
## 1079                                              good
## 1080                                               hit
## 1081                                              huge
## 1082                                               ill
## 1083                                               ill
## 1084                                              just
## 1085                                              just
## 1086                                              know
## 1087                                              like
## 1088                                               lot
## 1089                                              make
## 1090                                              many
## 1091                                              meat
## 1092                                              meat
## 1093                                              meat
## 1094                                              meat
## 1095                                              must
## 1096                                              okay
## 1097                                              okay
## 1098                                               one
## 1099                                             onion
## 1100                                             onion
## 1101                                             onion
## 1102                                             onion
## 1103                                           opinion
## 1104                                             order
## 1105                                             order
## 1106                                          original
## 1107                                           outside
## 1108                                              park
## 1109                                               pat
## 1110                                               pat
## 1111                                               pat
## 1112                                               pat
## 1113                                               pat
## 1114                                            people
## 1115                                            people
## 1116                                            philly
## 1117                                            philly
## 1118                                            philly
## 1119                                            philly
## 1120                                            picnic
## 1121                                             place
## 1122                                             place
## 1123                                             place
## 1124                                            please
## 1125                                           quality
## 1126                                              rate
## 1127                                               raw
## 1128                                            really
## 1129                                            really
## 1130                                             right
## 1131                                          sandwich
## 1132                                          sandwich
## 1133                                               say
## 1134                                               say
## 1135                                          separate
## 1136                                             sorry
## 1137                                              star
## 1138                                             steak
## 1139                                             steak
## 1140                                             steak
## 1141                                             steak
## 1142                                             steak
## 1143                                            street
## 1144                                            street
## 1145                                              take
## 1146                                            theres
## 1147                                             think
## 1148                                              time
## 1149                                              time
## 1150                                             visit
## 1151                                              want
## 1152                                              want
## 1153                                             wasnt
## 1154                                               way
## 1155                                              whiz
## 1156                                              will
## 1157                                            window
## 1158                                            window
## 1159                                              also
## 1160                                              also
## 1161                                            around
## 1162                                          assembly
## 1163                                               atm
## 1164                                               bad
## 1165                                              bear
## 1166                                             bread
## 1167                                             bread
## 1168                                            bright
## 1169                                               can
## 1170                                              cash
## 1171                                            cheese
## 1172                                            cheese
## 1173                                            cheese
## 1174                                            cheese
## 1175                                       cheesesteak
## 1176                                       cheesesteak
## 1177                                       cheesesteak
## 1178                                       cheesesteak
## 1179                                       cheesesteak
## 1180                                       cheesesteak
## 1181                                       cheesesteak
## 1182                                      cheesesteaks
## 1183                                              come
## 1184                                        comparison
## 1185                                       competition
## 1186                                        definitely
## 1187                                             didnt
## 1188                                                do
## 1189                                               eat
## 1190                                             enjoy
## 1191                                              even
## 1192                                              even
## 1193                                             extra
## 1194                                            famous
## 1195                                               fan
## 1196                                              fast
## 1197                                             first
## 1198                                             first
## 1199                                              food
## 1200                                              food
## 1201                                            friend
## 1202                                               fry
## 1203                                               fry
## 1204                                               fry
## 1205                                             genos
## 1206                                             genos
## 1207                                             genos
## 1208                                             genos
## 1209                                             genos
## 1210                                             genos
## 1211                                             genos
## 1212                                               get
## 1213                                               get
## 1214                                               get
## 1215                                                go
## 1216                                                go
## 1217                                                go
## 1218                                                go
## 1219                                                go
## 1220                                              good
## 1221                                              good
## 1222                                              good
## 1223                                              good
## 1224                                              good
## 1225                                              good
## 1226                                               guy
## 1227                                           however
## 1228                                              hype
## 1229                                              hype
## 1230                                              jims
## 1231                                              just
## 1232                                              just
## 1233                                              keep
## 1234                                             leave
## 1235                                              less
## 1236                                               let
## 1237                                              like
## 1238                                              like
## 1239                                              line
## 1240                                              line
## 1241                                              line
## 1242                                            little
## 1243                                            little
## 1244                                              look
## 1245                                              make
## 1246                                              make
## 1247                                              meat
## 1248                                              meat
## 1249                                          mediocre
## 1250                                              need
## 1251                                              need
## 1252                                              next
## 1253                                               one
## 1254                                               one
## 1255                                             onion
## 1256                                             onion
## 1257                                              open
## 1258                                             order
## 1259                                           outside
## 1260                                           overall
## 1261                                               pat
## 1262                                               pat
## 1263                                               pat
## 1264                                               pat
## 1265                                            people
## 1266                                            people
## 1267                                          personal
## 1268                                            philly
## 1269                                            philly
## 1270                                            philly
## 1271                                              pick
## 1272                                             place
## 1273                                             place
## 1274                                             place
## 1275                                             place
## 1276                                             place
## 1277                                             place
## 1278                                             place
## 1279                                            prefer
## 1280                                         provolone
## 1281                                            really
## 1282                                             right
## 1283                                             roast
## 1284                                          sandwich
## 1285                                          sandwich
## 1286                                          sandwich
## 1287                                          sandwich
## 1288                                          sandwich
## 1289                                               say
## 1290                                               say
## 1291                                               see
## 1292                                              seem
## 1293                                           service
## 1294                                               sit
## 1295                                             steak
## 1296                                             steak
## 1297                                               sub
## 1298                                             taste
## 1299                                             thing
## 1300                                             think
## 1301                                           tourist
## 1302                                              trip
## 1303                                               try
## 1304                                               try
## 1305                                               try
## 1306                                               two
## 1307                                              type
## 1308                                        understand
## 1309                                              wait
## 1310                                              walk
## 1311                                              want
## 1312                                              whiz
## 1313                                              whiz
## 1314                                            window
## 1315                                            window
## 1316                                               wit
## 1317                                               wit
## 1318                                               wiz
## 1319                                               wiz
## 1320                                               wiz
## 1321                                             world
## 1322                                             write
## 1323                                              zero
## 1324                                            accept
## 1325                                              also
## 1326                                            always
## 1327                                            around
## 1328                                            around
## 1329                                           average
## 1330                                              back
## 1331                                               bad
## 1332                                               bad
## 1333                                               bad
## 1334                                           believe
## 1335                                             bland
## 1336                                             bread
## 1337                                             bread
## 1338                                               buy
## 1339                                               buy
## 1340                                               buy
## 1341                                              cant
## 1342                                            cheese
## 1343                                            cheese
## 1344                                       cheesesteak
## 1345                                       cheesesteak
## 1346                                       cheesesteak
## 1347                                       cheesesteak
## 1348                                      cheesesteaks
## 1349                                             chewy
## 1350                                             clean
## 1351                                              cold
## 1352                                              come
## 1353                                              come
## 1354                                              come
## 1355                                              cook
## 1356                                               cut
## 1357                                               day
## 1358                                        difference
## 1359                                                do
## 1360                                               dry
## 1361                                               dry
## 1362                                             enjoy
## 1363                                              even
## 1364                                              even
## 1365                                            expect
## 1366                                         extremely
## 1367                                               far
## 1368                                           finally
## 1369                                             first
## 1370                                            flavor
## 1371                                              food
## 1372                                               fry
## 1373                                               fry
## 1374                                             genos
## 1375                                             genos
## 1376                                             genos
## 1377                                             genos
## 1378                                               get
## 1379                                               get
## 1380                                               get
## 1381                                               get
## 1382                                               get
## 1383                                               get
## 1384                                               get
## 1385                                             ginos
## 1386                                              give
## 1387                                              give
## 1388                                              give
## 1389                                              glad
## 1390                                                go
## 1391                                                go
## 1392                                                go
## 1393                                                go
## 1394                                              good
## 1395                                              good
## 1396                                              good
## 1397                                              good
## 1398                                              good
## 1399                                              good
## 1400                                              good
## 1401                                             gotta
## 1402                                             great
## 1403                                              hand
## 1404                                              hard
## 1405                                              huge
## 1406                                              hype
## 1407                                                id
## 1408                                                id
## 1409                                               ive
## 1410                                               ive
## 1411                                               ive
## 1412                                               ive
## 1413                                              just
## 1414                                              just
## 1415                                              just
## 1416                                              just
## 1417                                               let
## 1418                                             light
## 1419                                              like
## 1420                                              like
## 1421                                              look
## 1422                                              make
## 1423                                              make
## 1424                                              mean
## 1425                                              meat
## 1426                                              meat
## 1427                                              meat
## 1428                                              meat
## 1429                                              meat
## 1430                                          mediocre
## 1431                                            minute
## 1432                                            minute
## 1433                                             money
## 1434                                          mushroom
## 1435                                          needless
## 1436                                             never
## 1437                                             never
## 1438                                               new
## 1439                                               new
## 1440                                           nothing
## 1441                                               one
## 1442                                             onion
## 1443                                             onion
## 1444                                             order
## 1445                                             order
## 1446                                             order
## 1447                                               pat
## 1448                                               pat
## 1449                                               pat
## 1450                                               pat
## 1451                                               pat
## 1452                                               pat
## 1453                                               pat
## 1454                                               pat
## 1455                                            people
## 1456                                      philadelphia
## 1457                                            philly
## 1458                                            philly
## 1459                                            philly
## 1460                                            philly
## 1461                                            philly
## 1462                                             place
## 1463                                             place
## 1464                                             place
## 1465                                             place
## 1466                                            please
## 1467                                            pretty
## 1468                                            prince
## 1469                                          probably
## 1470                                               put
## 1471                                              real
## 1472                                            really
## 1473                                              rude
## 1474                                          sandwich
## 1475                                          sandwich
## 1476                                          sandwich
## 1477                                          sandwich
## 1478                                          sandwich
## 1479                                              save
## 1480                                               say
## 1481                                            season
## 1482                                          separate
## 1483                                             short
## 1484                                              side
## 1485                                              sign
## 1486                                             since
## 1487                                             sound
## 1488                                             south
## 1489                                             spend
## 1490                                             split
## 1491                                              spot
## 1492                                             stale
## 1493                                             steak
## 1494                                             steak
## 1495                                             steak
## 1496                                             steak
## 1497                                             steak
## 1498                                            steves
## 1499                                            street
## 1500                                             super
## 1501                                              sure
## 1502                                             sweet
## 1503                                             taste
## 1504                                             taste
## 1505                                             taste
## 1506                                             taste
## 1507                                             taste
## 1508                                              tell
## 1509                                          terminal
## 1510                                             thats
## 1511                                            theres
## 1512                                             think
## 1513                                             think
## 1514                                              time
## 1515                                           tourist
## 1516                                           tourist
## 1517                                               try
## 1518                                               try
## 1519                                               try
## 1520                                                tv
## 1521                                               two
## 1522                                               use
## 1523                                              walk
## 1524                                              want
## 1525                                             wasnt
## 1526                                             wasnt
## 1527                                             wasnt
## 1528                                              whiz
## 1529                                              whiz
## 1530                                              whiz
## 1531                                              whiz
## 1532                                              will
## 1533                                            window
## 1534                                             worth
## 1535                                           wouldnt
## 1536                                              year
## 1537                                             youll
## 1538                                          actually
## 1539                                              also
## 1540                                            always
## 1541                                            always
## 1542                                             amaze
## 1543                                          american
## 1544                                            amount
## 1545                                            around
## 1546                                           average
## 1547                                               bad
## 1548                                               bad
## 1549                                               bad
## 1550                                              beef
## 1551                                               big
## 1552                                             bread
## 1553                                            bright
## 1554                                             bring
## 1555                                               can
## 1556                                               can
## 1557                                              cant
## 1558                                              cash
## 1559                                            cheese
## 1560                                            cheese
## 1561                                       cheesesteak
## 1562                                       cheesesteak
## 1563                                       cheesesteak
## 1564                                       cheesesteak
## 1565                                       cheesesteak
## 1566                                       cheesesteak
## 1567                                      cheesesteaks
## 1568                                      cheesesteaks
## 1569                                      cheesesteaks
## 1570                                            choice
## 1571                                              come
## 1572                                              come
## 1573                                              come
## 1574                                              come
## 1575                                              come
## 1576                                       competition
## 1577                                           couldnt
## 1578                                               cut
## 1579                                               day
## 1580                                            decent
## 1581                                            decent
## 1582                                             didnt
## 1583                                             didnt
## 1584                                         different
## 1585                                        disappoint
## 1586                                            doesnt
## 1587                                            doesnt
## 1588                                              easy
## 1589                                               eat
## 1590                                            either
## 1591                                           english
## 1592                                           english
## 1593                                             enjoy
## 1594                                              even
## 1595                                              even
## 1596                                              ever
## 1597                                        experience
## 1598                                        experience
## 1599                                            famous
## 1600                                          favorite
## 1601                                              feel
## 1602                                              find
## 1603                                             first
## 1604                                            flavor
## 1605                                            flavor
## 1606                                            flavor
## 1607                                            flavor
## 1608                                              food
## 1609                                              food
## 1610                                              food
## 1611                                              food
## 1612                                            freeze
## 1613                                             fresh
## 1614                                             fresh
## 1615                                            friend
## 1616                                            friend
## 1617                                            friend
## 1618                                          friendly
## 1619                                               fry
## 1620                                               fry
## 1621                                             genos
## 1622                                             genos
## 1623                                             genos
## 1624                                             genos
## 1625                                             genos
## 1626                                             genos
## 1627                                             genos
## 1628                                             genos
## 1629                                             genos
## 1630                                             genos
## 1631                                             genos
## 1632                                             genos
## 1633                                             genos
## 1634                                               get
## 1635                                               get
## 1636                                               get
## 1637                                               get
## 1638                                               get
## 1639                                               get
## 1640                                              give
## 1641                                              give
## 1642                                                go
## 1643                                                go
## 1644                                                go
## 1645                                              good
## 1646                                              good
## 1647                                              good
## 1648                                              good
## 1649                                              good
## 1650                                              good
## 1651                                             great
## 1652                                             great
## 1653                                             great
## 1654                                             great
## 1655                                           grocery
## 1656                                               guy
## 1657                                              head
## 1658                                              hear
## 1659                                              hear
## 1660                                              hour
## 1661                                                id
## 1662                                               ill
## 1663                                               ill
## 1664                                                im
## 1665                                                im
## 1666                                                im
## 1667                                           instead
## 1668                                              isnt
## 1669                                              just
## 1670                                              just
## 1671                                              just
## 1672                                              just
## 1673                                              just
## 1674                                              just
## 1675                                              keep
## 1676                                              know
## 1677                                              know
## 1678                                             light
## 1679                                              like
## 1680                                              line
## 1681                                              line
## 1682                                              line
## 1683                                            little
## 1684                                            little
## 1685                                            little
## 1686                                             local
## 1687                                              long
## 1688                                              love
## 1689                                             lukes
## 1690                                              make
## 1691                                              make
## 1692                                              make
## 1693                                              make
## 1694                                              make
## 1695                                              make
## 1696                                              make
## 1697                                               may
## 1698                                              mean
## 1699                                              meat
## 1700                                              meat
## 1701                                              meat
## 1702                                              meat
## 1703                                              melt
## 1704                                          mushroom
## 1705                                             never
## 1706                                             night
## 1707                                           nothing
## 1708                                               now
## 1709                                              okay
## 1710                                               one
## 1711                                               one
## 1712                                               one
## 1713                                             onion
## 1714                                             onion
## 1715                                             onion
## 1716                                             onion
## 1717                                             onion
## 1718                                             onion
## 1719                                             order
## 1720                                             order
## 1721                                             order
## 1722                                             order
## 1723                                          original
## 1724                                           overall
## 1725                                              park
## 1726                                               pat
## 1727                                               pat
## 1728                                               pat
## 1729                                               pat
## 1730                                               pat
## 1731                                               pat
## 1732                                               pat
## 1733                                               pat
## 1734                                               pat
## 1735                                               pat
## 1736                                            people
## 1737                                            people
## 1738                                            people
## 1739                                            people
## 1740                                      philadelphia
## 1741                                      philadelphia
## 1742                                            philly
## 1743                                            philly
## 1744                                            philly
## 1745                                            philly
## 1746                                            philly
## 1747                                           picture
## 1748                                              pipe
## 1749                                             place
## 1750                                             place
## 1751                                             place
## 1752                                             place
## 1753                                             place
## 1754                                             press
## 1755                                            pretty
## 1756                                         provolone
## 1757                                           quality
## 1758                                             quick
## 1759                                            rather
## 1760                                              read
## 1761                                              read
## 1762                                              real
## 1763                                            really
## 1764                                            really
## 1765                                         recommend
## 1766                                         recommend
## 1767                                             right
## 1768                                               san
## 1769                                          sandwich
## 1770                                          sandwich
## 1771                                               say
## 1772                                               say
## 1773                                               say
## 1774                                               say
## 1775                                               say
## 1776                                               say
## 1777                                               see
## 1778                                             serve
## 1779                                           service
## 1780                                           service
## 1781                                              sign
## 1782                                             since
## 1783                                             slice
## 1784                                             slice
## 1785                                             small
## 1786                                              soft
## 1787                                         something
## 1788                                             south
## 1789                                             start
## 1790                                             steak
## 1791                                             steak
## 1792                                             steak
## 1793                                             steak
## 1794                                             steak
## 1795                                             steak
## 1796                                             steak
## 1797                                              stop
## 1798                                            street
## 1799                                            street
## 1800                                              take
## 1801                                             taste
## 1802                                             tasty
## 1803                                              tell
## 1804                                                th
## 1805                                             thick
## 1806                                             thing
## 1807                                             think
## 1808                                             think
## 1809                                              time
## 1810                                              time
## 1811                                              time
## 1812                                             tough
## 1813                                              trap
## 1814                                               try
## 1815                                               two
## 1816                                             visit
## 1817                                              walk
## 1818                                              walk
## 1819                                              want
## 1820                                              want
## 1821                                             wasnt
## 1822                                             wasnt
## 1823                                             whole
## 1824                                              will
## 1825                                              will
## 1826                                              will
## 1827                                               win
## 1828                                            winner
## 1829                                           without
## 1830                                             worth
## 1831                                             youre
## 1832                                           accross
## 1833                                            across
## 1834                                          actually
## 1835                                             along
## 1836                                           america
## 1837                                          american
## 1838                                           another
## 1839                                           another
## 1840                                           another
## 1841                                         authentic
## 1842                                              back
## 1843                                               bad
## 1844                                               bad
## 1845                                              bite
## 1846                                              bite
## 1847                                              bite
## 1848                                              bite
## 1849                                             bland
## 1850                                             bread
## 1851                                             bread
## 1852                                             bread
## 1853                                             bread
## 1854                                             bring
## 1855                                               can
## 1856                                               can
## 1857                                               can
## 1858                                              cant
## 1859                                         certainly
## 1860                                            cheese
## 1861                                            cheese
## 1862                                            cheese
## 1863                                            cheese
## 1864                                       cheesesteak
## 1865                                       cheesesteak
## 1866                                       cheesesteak
## 1867                                       cheesesteak
## 1868                                       cheesesteak
## 1869                                       cheesesteak
## 1870                                       cheesesteak
## 1871                                       cheesesteak
## 1872                                      cheesesteaks
## 1873                                      cheesesteaks
## 1874                                      cheesesteaks
## 1875                                      cheesesteaks
## 1876                                      cheesesteaks
## 1877                                             chewy
## 1878                                           classic
## 1879                                        competitor
## 1880                                            corner
## 1881                                               day
## 1882                                            decide
## 1883                                         delicious
## 1884                                         delicious
## 1885                                             didnt
## 1886                                         different
## 1887                                                do
## 1888                                            doesnt
## 1889                                               dry
## 1890                                               eat
## 1891                                               end
## 1892                                             enjoy
## 1893                                              even
## 1894                                              even
## 1895                                              even
## 1896                                              ever
## 1897                                              ever
## 1898                                              ever
## 1899                                          everyone
## 1900                                         extremely
## 1901                                              fast
## 1902                                             favor
## 1903                                           finally
## 1904                                              find
## 1905                                              find
## 1906                                              find
## 1907                                             first
## 1908                                         flavorful
## 1909                                         flavorful
## 1910                                        flavorless
## 1911                                              food
## 1912                                              food
## 1913                                            friend
## 1914                                            friend
## 1915                                               fry
## 1916                                               fry
## 1917                                               fry
## 1918                                             genos
## 1919                                             genos
## 1920                                             genos
## 1921                                             genos
## 1922                                             genos
## 1923                                             genos
## 1924                                             genos
## 1925                                             genos
## 1926                                             genos
## 1927                                             genos
## 1928                                             genos
## 1929                                               get
## 1930                                               get
## 1931                                                go
## 1932                                                go
## 1933                                                go
## 1934                                                go
## 1935                                                go
## 1936                                                go
## 1937                                                go
## 1938                                              good
## 1939                                              good
## 1940                                              good
## 1941                                              good
## 1942                                              good
## 1943                                              good
## 1944                                              good
## 1945                                              good
## 1946                                             great
## 1947                                               guy
## 1948                                              half
## 1949                                              half
## 1950                                              hard
## 1951                                              hate
## 1952                                            havent
## 1953                                            hoagie
## 1954                                               hot
## 1955                                               hot
## 1956                                               hot
## 1957                                              hour
## 1958                                                id
## 1959                                                id
## 1960                                               ill
## 1961                                               ill
## 1962                                                im
## 1963                                               ive
## 1964                                              jims
## 1965                                              just
## 1966                                              just
## 1967                                              just
## 1968                                              just
## 1969                                              know
## 1970                                              know
## 1971                                              know
## 1972                                              know
## 1973                                              know
## 1974                                              last
## 1975                                             learn
## 1976                                             leave
## 1977                                               let
## 1978                                              like
## 1979                                              like
## 1980                                              like
## 1981                                              like
## 1982                                              like
## 1983                                              like
## 1984                                            little
## 1985                                            little
## 1986                                              live
## 1987                                              long
## 1988                                              look
## 1989                                               lot
## 1990                                               lot
## 1991                                              love
## 1992                                              love
## 1993                                              love
## 1994                                             lukes
## 1995                                              make
## 1996                                              make
## 1997                                               may
## 1998                                              meat
## 1999                                              meat
## 2000                                              meat
## 2001                                              meat
## 2002                                              meat
## 2003                                              melt
## 2004                                            minute
## 2005                                              much
## 2006                                              must
## 2007                                           nothing
## 2008                                                oh
## 2009                                              okay
## 2010                                              okay
## 2011                                               one
## 2012                                               one
## 2013                                               one
## 2014                                             onion
## 2015                                             onion
## 2016                                             onion
## 2017                                             onion
## 2018                                             order
## 2019                                             order
## 2020                                             order
## 2021                                             order
## 2022                                           outside
## 2023                                              part
## 2024                                              part
## 2025                                               pat
## 2026                                               pat
## 2027                                               pat
## 2028                                               pat
## 2029                                               pat
## 2030                                               pat
## 2031                                               pat
## 2032                                               pat
## 2033                                               pat
## 2034                                               pay
## 2035                                            people
## 2036                                            people
## 2037                                            people
## 2038                                            people
## 2039                                            pepper
## 2040                                          personal
## 2041                                      philadelphia
## 2042                                            philly
## 2043                                            philly
## 2044                                              pick
## 2045                                             piece
## 2046                                             pizza
## 2047                                             place
## 2048                                             place
## 2049                                             place
## 2050                                             place
## 2051                                             place
## 2052                                             place
## 2053                                             place
## 2054                                             place
## 2055                                             place
## 2056                                             place
## 2057                                            prefer
## 2058                                            pretty
## 2059                                          probably
## 2060                                           process
## 2061                                         provolone
## 2062                                         provolone
## 2063                                         provolone
## 2064                                            racist
## 2065                                              real
## 2066                                            really
## 2067                                            really
## 2068                                            recent
## 2069                                         recommend
## 2070                                            refuse
## 2071                                            review
## 2072                                            review
## 2073                                          sandwich
## 2074                                          sandwich
## 2075                                          sandwich
## 2076                                          sandwich
## 2077                                          sandwich
## 2078                                          sandwich
## 2079                                          sandwich
## 2080                                          sandwich
## 2081                                          sandwich
## 2082                                          sandwich
## 2083                                          sandwich
## 2084                                             sauce
## 2085                                             saute
## 2086                                               say
## 2087                                               say
## 2088                                            season
## 2089                                              seat
## 2090                                               see
## 2091                                               see
## 2092                                           service
## 2093                                           service
## 2094                                           service
## 2095                                             slice
## 2096                                             slice
## 2097                                             small
## 2098                                             staff
## 2099                                             stale
## 2100                                              star
## 2101                                             steak
## 2102                                             steak
## 2103                                             steak
## 2104                                             steak
## 2105                                             steak
## 2106                                             steak
## 2107                                             steak
## 2108                                             still
## 2109                                              stop
## 2110                                            street
## 2111                                           suggest
## 2112                                              sure
## 2113                                              take
## 2114                                              take
## 2115                                              take
## 2116                                             taste
## 2117                                             tasty
## 2118                                              tell
## 2119                                              tell
## 2120                                             thats
## 2121                                            theres
## 2122                                            theres
## 2123                                             thing
## 2124                                             thing
## 2125                                              time
## 2126                                              time
## 2127                                              time
## 2128                                           totally
## 2129                                           tourist
## 2130                                            travel
## 2131                                              trip
## 2132                                               try
## 2133                                               try
## 2134                                               try
## 2135                                               try
## 2136                                               try
## 2137                                               try
## 2138                                               two
## 2139                                               two
## 2140                                               two
## 2141                                               two
## 2142                                               use
## 2143                                              want
## 2144                                              want
## 2145                                              want
## 2146                                             white
## 2147                                              whiz
## 2148                                              whiz
## 2149                                              whiz
## 2150                                             whole
## 2151                                              will
## 2152                                              will
## 2153                                              wish
## 2154                                               wiz
## 2155                                             woman
## 2156                                             worth
## 2157                                             worth
## 2158                                           wouldnt
## 2159                                              youd
## 2160                                             youre
## 2161                                             youve
## 2162                                              able
## 2163                                            actual
## 2164                                          actually
## 2165                                          actually
## 2166                                            always
## 2167                                            amount
## 2168                                               ask
## 2169                                          atlantic
## 2170                                              away
## 2171                                              back
## 2172                                              back
## 2173                                               bad
## 2174                                               bad
## 2175                                               bad
## 2176                                            barely
## 2177                                              beef
## 2178                                              bite
## 2179                                              bite
## 2180                                              bite
## 2181                                              boil
## 2182                                             bread
## 2183                                             bread
## 2184                                             bread
## 2185                                             bread
## 2186                                               can
## 2187                                              cant
## 2188                                              cant
## 2189                                              cash
## 2190                                             check
## 2191                                             check
## 2192                                            cheese
## 2193                                            cheese
## 2194                                       cheesesteak
## 2195                                       cheesesteak
## 2196                                       cheesesteak
## 2197                                       cheesesteak
## 2198                                       cheesesteak
## 2199                                       cheesesteak
## 2200                                       cheesesteak
## 2201                                       cheesesteak
## 2202                                       cheesesteak
## 2203                                       cheesesteak
## 2204                                       cheesesteak
## 2205                                       cheesesteak
## 2206                                       cheesesteak
## 2207                                       cheesesteak
## 2208                                      cheesesteaks
## 2209                                      cheesesteaks
## 2210                                      cheesesteaks
## 2211                                         cheesteak
## 2212                                             chewy
## 2213                                             claim
## 2214                                              come
## 2215                                           compare
## 2216                                         condiment
## 2217                                            corner
## 2218                                           couldnt
## 2219                                           counter
## 2220                                               cut
## 2221                                               day
## 2222                                            decide
## 2223                                        definitely
## 2224                                             didnt
## 2225                                         different
## 2226                                        disappoint
## 2227                                                do
## 2228                                                do
## 2229                                             drink
## 2230                                             drink
## 2231                                             drink
## 2232                                             drive
## 2233                                               dry
## 2234                                               dry
## 2235                                               dry
## 2236                                               dry
## 2237                                               dry
## 2238                                               dry
## 2239                                               eat
## 2240                                               eat
## 2241                                               eat
## 2242                                              else
## 2243                                           english
## 2244                                            entire
## 2245                                        especially
## 2246                                              even
## 2247                                             every
## 2248                                          everyone
## 2249                                        experience
## 2250                                            famous
## 2251                                               fan
## 2252                                              find
## 2253                                             first
## 2254                                             first
## 2255                                             first
## 2256                                              five
## 2257                                              five
## 2258                                            flashy
## 2259                                              food
## 2260                                              food
## 2261                                              food
## 2262                                              foot
## 2263                                              free
## 2264                                             fresh
## 2265                                            friend
## 2266                                            friend
## 2267                                               fry
## 2268                                               fry
## 2269                                             genos
## 2270                                             genos
## 2271                                             genos
## 2272                                             genos
## 2273                                             genos
## 2274                                             genos
## 2275                                             genos
## 2276                                             genos
## 2277                                               get
## 2278                                               get
## 2279                                               get
## 2280                                               get
## 2281                                               get
## 2282                                             ginos
## 2283                                              give
## 2284                                              give
## 2285                                              give
## 2286                                                go
## 2287                                                go
## 2288                                                go
## 2289                                                go
## 2290                                                go
## 2291                                              good
## 2292                                              good
## 2293                                              good
## 2294                                              good
## 2295                                              good
## 2296                                              good
## 2297                                              good
## 2298                                              good
## 2299                                              good
## 2300                                              good
## 2301                                              good
## 2302                                              good
## 2303                                              good
## 2304                                            greasy
## 2305                                            greasy
## 2306                                             great
## 2307                                             great
## 2308                                              half
## 2309                                              head
## 2310                                              hear
## 2311                                              high
## 2312                                               hit
## 2313                                          honestly
## 2314                                              hour
## 2315                                           however
## 2316                                           husband
## 2317                                              hype
## 2318                                              hype
## 2319                                              hype
## 2320                                              hype
## 2321                                               ill
## 2322                                                im
## 2323                                                im
## 2324                                           instead
## 2325                                             juicy
## 2326                                              junk
## 2327                                              just
## 2328                                              just
## 2329                                              just
## 2330                                              just
## 2331                                              just
## 2332                                              just
## 2333                                              kind
## 2334                                              know
## 2335                                              know
## 2336                                              know
## 2337                                              know
## 2338                                          language
## 2339                                             leave
## 2340                                             leave
## 2341                                              less
## 2342                                              less
## 2343                                               let
## 2344                                              like
## 2345                                              like
## 2346                                              like
## 2347                                              like
## 2348                                              like
## 2349                                              like
## 2350                                              like
## 2351                                              like
## 2352                                              like
## 2353                                              like
## 2354                                              like
## 2355                                              line
## 2356                                              line
## 2357                                              line
## 2358                                              line
## 2359                                              line
## 2360                                              line
## 2361                                            little
## 2362                                            little
## 2363                                             local
## 2364                                            locate
## 2365                                              long
## 2366                                              love
## 2367                                               low
## 2368                                              meat
## 2369                                              meat
## 2370                                              meat
## 2371                                              meat
## 2372                                              meat
## 2373                                              meat
## 2374                                              meat
## 2375                                              melt
## 2376                                               mom
## 2377                                             mouth
## 2378                                              move
## 2379                                              move
## 2380                                              much
## 2381                                              much
## 2382                                              much
## 2383                                          mushroom
## 2384                                          neighbor
## 2385                                           neither
## 2386                                             never
## 2387                                              nice
## 2388                                              note
## 2389                                           nothing
## 2390                                               now
## 2391                                         offensive
## 2392                                              okay
## 2393                                              okay
## 2394                                               one
## 2395                                               one
## 2396                                               one
## 2397                                               one
## 2398                                               one
## 2399                                               one
## 2400                                               one
## 2401                                               one
## 2402                                               one
## 2403                                               one
## 2404                                               one
## 2405                                               one
## 2406                                               one
## 2407                                             onion
## 2408                                             onion
## 2409                                             onion
## 2410                                             onion
## 2411                                             onion
## 2412                                             onion
## 2413                                             order
## 2414                                             order
## 2415                                             order
## 2416                                             order
## 2417                                              park
## 2418                                               pat
## 2419                                               pat
## 2420                                               pat
## 2421                                               pat
## 2422                                               pat
## 2423                                               pat
## 2424                                               pat
## 2425                                               pat
## 2426                                               pat
## 2427                                               pat
## 2428                                               pat
## 2429                                               pat
## 2430                                               pat
## 2431                                               pat
## 2432                                               pat
## 2433                                               pat
## 2434                                               pay
## 2435                                            people
## 2436                                            people
## 2437                                            people
## 2438                                            people
## 2439                                            pepper
## 2440                                        personally
## 2441                                      philadelphia
## 2442                                            philly
## 2443                                            philly
## 2444                                            philly
## 2445                                            philly
## 2446                                            philly
## 2447                                              pick
## 2448                                           picture
## 2449                                             place
## 2450                                             place
## 2451                                             place
## 2452                                             place
## 2453                                             place
## 2454                                             place
## 2455                                             place
## 2456                                             place
## 2457                                             place
## 2458                                             place
## 2459                                             place
## 2460                                             place
## 2461                                            plenty
## 2462                                            police
## 2463                                         political
## 2464                                            pretty
## 2465                                            pretty
## 2466                                          probably
## 2467                                         provolone
## 2468                                         provolone
## 2469                                               put
## 2470                                           quality
## 2471                                             quite
## 2472                                             ready
## 2473                                            really
## 2474                                           regular
## 2475                                            return
## 2476                                            review
## 2477                                             right
## 2478                                              rude
## 2479                                          sandwich
## 2480                                          sandwich
## 2481                                          sandwich
## 2482                                          sandwich
## 2483                                          sandwich
## 2484                                          sandwich
## 2485                                          saturday
## 2486                                             sauce
## 2487                                               say
## 2488                                               say
## 2489                                              seat
## 2490                                               see
## 2491                                               see
## 2492                                               see
## 2493                                               see
## 2494                                              seem
## 2495                                           service
## 2496                                           service
## 2497                                           several
## 2498                                              side
## 2499                                              sign
## 2500                                              sign
## 2501                                              sign
## 2502                                              sign
## 2503                                             since
## 2504                                             slice
## 2505                                              soft
## 2506                                           special
## 2507                                             spend
## 2508                                             split
## 2509                                             split
## 2510                                              spot
## 2511                                             start
## 2512                                             start
## 2513                                             steak
## 2514                                             steak
## 2515                                             steak
## 2516                                             steak
## 2517                                             steak
## 2518                                             steak
## 2519                                             steak
## 2520                                             steak
## 2521                                             steak
## 2522                                             steak
## 2523                                             steak
## 2524                                             steak
## 2525                                             steak
## 2526                                             stick
## 2527                                             still
## 2528                                              stop
## 2529                                            street
## 2530                                             strip
## 2531                                             super
## 2532                                           support
## 2533                                              take
## 2534                                              take
## 2535                                              take
## 2536                                              take
## 2537                                              take
## 2538                                             taste
## 2539                                             taste
## 2540                                             taste
## 2541                                             taste
## 2542                                             taste
## 2543                                         tasteless
## 2544                                             tasty
## 2545                                              tell
## 2546                                              test
## 2547                                              test
## 2548                                           texture
## 2549                                             thats
## 2550                                             thing
## 2551                                             thing
## 2552                                             think
## 2553                                             think
## 2554                                             think
## 2555                                             think
## 2556                                             think
## 2557                                             think
## 2558                                              time
## 2559                                              time
## 2560                                              time
## 2561                                             total
## 2562                                             tough
## 2563                                           tourist
## 2564                                           tourist
## 2565                                           tourist
## 2566                                               try
## 2567                                               try
## 2568                                               try
## 2569                                               try
## 2570                                               two
## 2571                                               two
## 2572                                             unite
## 2573                                            unless
## 2574                                            unless
## 2575                                                us
## 2576                                                 w
## 2577                                              wait
## 2578                                              want
## 2579                                        washington
## 2580                                             wasnt
## 2581                                             wasnt
## 2582                                               way
## 2583                                               way
## 2584                                               way
## 2585                                              week
## 2586                                              west
## 2587                                              whiz
## 2588                                              whiz
## 2589                                              whiz
## 2590                                              whiz
## 2591                                              whiz
## 2592                                              whiz
## 2593                                            window
## 2594                                            within
## 2595                                               wiz
## 2596                                               wiz
## 2597                                               wiz
## 2598                                             wrong
## 2599                                             wrong
## 2600                                              year
## 2601                                               yes
## 2602                                               yes
## 2603                                               yes
## 2604                                             youre
## 2605                                             youre
## 2606                                              able
## 2607                                        absolutely
## 2608                                            across
## 2609                                            actual
## 2610                                          actually
## 2611                                               add
## 2612                                               add
## 2613                                               add
## 2614                                             agree
## 2615                                           already
## 2616                                              also
## 2617                                              also
## 2618                                              also
## 2619                                              also
## 2620                                            always
## 2621                                            always
## 2622                                            anyone
## 2623                                              area
## 2624                                             arent
## 2625                                            artery
## 2626                                         authentic
## 2627                                         authentic
## 2628                                              away
## 2629                                              back
## 2630                                              back
## 2631                                               bad
## 2632                                               bad
## 2633                                               bad
## 2634                                              beat
## 2635                                              beef
## 2636                                               big
## 2637                                               big
## 2638                                              bite
## 2639                                              bite
## 2640                                              bite
## 2641                                              bite
## 2642                                              bite
## 2643                                              bite
## 2644                                              blah
## 2645                                            bottle
## 2646                                             bread
## 2647                                             bread
## 2648                                             bread
## 2649                                             bread
## 2650                                             bread
## 2651                                             bread
## 2652                                            bright
## 2653                                             bring
## 2654                                              bryn
## 2655                                            bumper
## 2656                                               buy
## 2657                                              call
## 2658                                              call
## 2659                                               can
## 2660                                               can
## 2661                                               can
## 2662                                              cant
## 2663                                              cant
## 2664                                              cash
## 2665                                         celebrity
## 2666                                            center
## 2667                                             check
## 2668                                            cheese
## 2669                                            cheese
## 2670                                            cheese
## 2671                                            cheese
## 2672                                       cheesesteak
## 2673                                       cheesesteak
## 2674                                       cheesesteak
## 2675                                       cheesesteak
## 2676                                       cheesesteak
## 2677                                       cheesesteak
## 2678                                       cheesesteak
## 2679                                       cheesesteak
## 2680                                      cheesesteaks
## 2681                                      cheesesteaks
## 2682                                      cheesesteaks
## 2683                                      cheesesteaks
## 2684                                             chewy
## 2685                                             chewy
## 2686                                              chop
## 2687                                            circle
## 2688                                             clean
## 2689                                             clean
## 2690                                             close
## 2691                                              cold
## 2692                                              cold
## 2693                                              come
## 2694                                              come
## 2695                                              come
## 2696                                              come
## 2697                                              come
## 2698                                           compare
## 2699                                              cook
## 2700                                              cook
## 2701                                              cook
## 2702                                               day
## 2703                                               day
## 2704                                               day
## 2705                                            decent
## 2706                                            decide
## 2707                                            decide
## 2708                                            decide
## 2709                                        definitely
## 2710                                        definitely
## 2711                                         delicious
## 2712                                             didnt
## 2713                                             didnt
## 2714                                             didnt
## 2715                                              diet
## 2716                                        difference
## 2717                                              dine
## 2718                                        disappoint
## 2719                                        disappoint
## 2720                                        disappoint
## 2721                                                do
## 2722                                                do
## 2723                                                do
## 2724                                                do
## 2725                                             drive
## 2726                                               dry
## 2727                                               dry
## 2728                                               eat
## 2729                                               eat
## 2730                                            either
## 2731                                               end
## 2732                                           english
## 2733                                           english
## 2734                                           english
## 2735                                           english
## 2736                                           english
## 2737                                           english
## 2738                                             enjoy
## 2739                                             enjoy
## 2740                                            enough
## 2741                                            enough
## 2742                                            enough
## 2743                                            entire
## 2744                                              even
## 2745                                              even
## 2746                                              even
## 2747                                              ever
## 2748                                              ever
## 2749                                              ever
## 2750                                             every
## 2751                                             every
## 2752                                            expect
## 2753                                        experience
## 2754                                        experience
## 2755                                              fake
## 2756                                            family
## 2757                                               fan
## 2758                                              fast
## 2759                                          favorite
## 2760                                           feature
## 2761                                              feel
## 2762                                              feel
## 2763                                              find
## 2764                                              find
## 2765                                             first
## 2766                                            flavor
## 2767                                            flavor
## 2768                                            flavor
## 2769                                            flavor
## 2770                                            flavor
## 2771                                            flavor
## 2772                                         flavorful
## 2773                                              food
## 2774                                              food
## 2775                                              food
## 2776                                              food
## 2777                                              food
## 2778                                              food
## 2779                                              food
## 2780                                              food
## 2781                                              food
## 2782                                              food
## 2783                                            freeze
## 2784                                             fresh
## 2785                                             fresh
## 2786                                             fresh
## 2787                                            friend
## 2788                                          friendly
## 2789                                               fry
## 2790                                               fry
## 2791                                              full
## 2792                                             genos
## 2793                                             genos
## 2794                                             genos
## 2795                                             genos
## 2796                                             genos
## 2797                                             genos
## 2798                                             genos
## 2799                                             genos
## 2800                                             genos
## 2801                                             genos
## 2802                                             genos
## 2803                                             genos
## 2804                                             genos
## 2805                                             genos
## 2806                                             genos
## 2807                                             genos
## 2808                                             genos
## 2809                                             genos
## 2810                                             genos
## 2811                                               get
## 2812                                               get
## 2813                                               get
## 2814                                               get
## 2815                                               get
## 2816                                               get
## 2817                                               get
## 2818                                               get
## 2819                                               get
## 2820                                              give
## 2821                                              give
## 2822                                              give
## 2823                                              give
## 2824                                              give
## 2825                                                go
## 2826                                                go
## 2827                                                go
## 2828                                                go
## 2829                                                go
## 2830                                                go
## 2831                                                go
## 2832                                                go
## 2833                                                go
## 2834                                                go
## 2835                                                go
## 2836                                              good
## 2837                                              good
## 2838                                              good
## 2839                                              good
## 2840                                              good
## 2841                                              good
## 2842                                              good
## 2843                                              good
## 2844                                              good
## 2845                                              good
## 2846                                              good
## 2847                                              good
## 2848                                              good
## 2849                                              good
## 2850                                              good
## 2851                                             gotta
## 2852                                            greasy
## 2853                                             great
## 2854                                             guess
## 2855                                               guy
## 2856                                               guy
## 2857                                              hand
## 2858                                              head
## 2859                                              head
## 2860                                            highly
## 2861                                              hole
## 2862                                          honestly
## 2863                                          honestly
## 2864                                              hour
## 2865                                              huge
## 2866                                               ill
## 2867                                               ill
## 2868                                                im
## 2869                                                im
## 2870                                                im
## 2871                                                im
## 2872                                              isnt
## 2873                                              isnt
## 2874                                           italian
## 2875                                               ive
## 2876                                               ive
## 2877                                             juice
## 2878                                             juicy
## 2879                                              just
## 2880                                              just
## 2881                                              just
## 2882                                              just
## 2883                                              keep
## 2884                                              kind
## 2885                                              kind
## 2886                                              kind
## 2887                                              know
## 2888                                              know
## 2889                                              know
## 2890                                              know
## 2891                                              know
## 2892                                              know
## 2893                                              lack
## 2894                                              lady
## 2895                                             large
## 2896                                             large
## 2897                                               let
## 2898                                               let
## 2899                                           lettuce
## 2900                                             light
## 2901                                             light
## 2902                                             light
## 2903                                              like
## 2904                                              like
## 2905                                              like
## 2906                                              like
## 2907                                              like
## 2908                                              like
## 2909                                              like
## 2910                                              like
## 2911                                              like
## 2912                                              like
## 2913                                              like
## 2914                                              like
## 2915                                              like
## 2916                                              line
## 2917                                              line
## 2918                                              line
## 2919                                              line
## 2920                                              line
## 2921                                              line
## 2922                                              line
## 2923                                              line
## 2924                                         literally
## 2925                                            little
## 2926                                            little
## 2927                                            little
## 2928                                            little
## 2929                                              live
## 2930                                             local
## 2931                                              look
## 2932                                               lot
## 2933                                              love
## 2934                                              love
## 2935                                              love
## 2936                                              make
## 2937                                              make
## 2938                                              many
## 2939                                              mean
## 2940                                              mean
## 2941                                              meat
## 2942                                              meat
## 2943                                              meat
## 2944                                              meat
## 2945                                              meat
## 2946                                              meat
## 2947                                              meat
## 2948                                              meat
## 2949                                              meat
## 2950                                              meat
## 2951                                            minute
## 2952                                               mix
## 2953                                             money
## 2954                                             money
## 2955                                             money
## 2956                                             month
## 2957                                              move
## 2958                                              move
## 2959                                              much
## 2960                                              much
## 2961                                              much
## 2962                                             mumia
## 2963                                          mushroom
## 2964                                          mushroom
## 2965                                              must
## 2966                                           mustard
## 2967                                             nacho
## 2968                                              need
## 2969                                           neither
## 2970                                           neither
## 2971                                             never
## 2972                                             never
## 2973                                             never
## 2974                                              next
## 2975                                           nothing
## 2976                                           nothing
## 2977                                           nothing
## 2978                                           nothing
## 2979                                            notice
## 2980                                               now
## 2981                                          official
## 2982                                              okay
## 2983                                              okay
## 2984                                               old
## 2985                                               old
## 2986                                               one
## 2987                                               one
## 2988                                               one
## 2989                                             onion
## 2990                                             onion
## 2991                                             onion
## 2992                                             onion
## 2993                                             onion
## 2994                                             onion
## 2995                                              open
## 2996                                            orange
## 2997                                             order
## 2998                                             order
## 2999                                             order
## 3000                                             order
## 3001                                             order
## 3002                                             order
## 3003                                             order
## 3004                                             order
## 3005                                           overall
## 3006                                           overall
## 3007                                           overall
## 3008                                             owner
## 3009                                             owner
## 3010                                              park
## 3011                                              part
## 3012                                              part
## 3013                                              past
## 3014                                               pat
## 3015                                               pat
## 3016                                               pat
## 3017                                               pat
## 3018                                               pat
## 3019                                               pat
## 3020                                               pat
## 3021                                               pat
## 3022                                               pat
## 3023                                               pat
## 3024                                               pat
## 3025                                               pat
## 3026                                               pat
## 3027                                               pay
## 3028                                               pay
## 3029                                            people
## 3030                                            people
## 3031                                            pepper
## 3032                                            pepper
## 3033                                          phillies
## 3034                                            philly
## 3035                                            philly
## 3036                                            philly
## 3037                                            philly
## 3038                                            philly
## 3039                                            philly
## 3040                                            philly
## 3041                                            philly
## 3042                                            philly
## 3043                                            philly
## 3044                                            philly
## 3045                                            philly
## 3046                                            philly
## 3047                                           phillys
## 3048                                             pizza
## 3049                                             place
## 3050                                             place
## 3051                                             place
## 3052                                             place
## 3053                                             place
## 3054                                             place
## 3055                                             place
## 3056                                             place
## 3057                                             place
## 3058                                             plain
## 3059                                           popular
## 3060                                              post
## 3061                                             press
## 3062                                            pretty
## 3063                                            pretty
## 3064                                            pretty
## 3065                                            pretty
## 3066                                         provolone
## 3067                                         provolone
## 3068                                         provolone
## 3069                                               put
## 3070                                           quality
## 3071                                           quality
## 3072                                             quite
## 3073                                            racist
## 3074                                             ready
## 3075                                             ready
## 3076                                            really
## 3077                                            really
## 3078                                            really
## 3079                                            really
## 3080                                            really
## 3081                                            really
## 3082                                            really
## 3083                                            really
## 3084                                            reason
## 3085                                          remember
## 3086                                        restaurant
## 3087                                               rib
## 3088                                            ribeye
## 3089                                             right
## 3090                                              roll
## 3091                                              roll
## 3092                                             salty
## 3093                                          sandwich
## 3094                                          sandwich
## 3095                                          sandwich
## 3096                                          sandwich
## 3097                                          sandwich
## 3098                                          saturday
## 3099                                              save
## 3100                                               say
## 3101                                               say
## 3102                                               say
## 3103                                               say
## 3104                                               say
## 3105                                               say
## 3106                                               say
## 3107                                            search
## 3108                                              seat
## 3109                                               see
## 3110                                               see
## 3111                                              seem
## 3112                                             serve
## 3113                                           service
## 3114                                           service
## 3115                                           service
## 3116                                              side
## 3117                                              side
## 3118                                              side
## 3119                                              sign
## 3120                                              sign
## 3121                                              sign
## 3122                                              sign
## 3123                                              sign
## 3124                                             since
## 3125                                             since
## 3126                                             since
## 3127                                               sit
## 3128                                              slab
## 3129                                             smell
## 3130                                              soda
## 3131                                              soft
## 3132                                         something
## 3133                                              soup
## 3134                                             spend
## 3135                                              spot
## 3136                                              star
## 3137                                              star
## 3138                                              star
## 3139                                              stay
## 3140                                             steak
## 3141                                             steak
## 3142                                             steak
## 3143                                             steak
## 3144                                             steak
## 3145                                             steak
## 3146                                             steak
## 3147                                             steak
## 3148                                             steak
## 3149                                             steak
## 3150                                             steak
## 3151                                             steak
## 3152                                             steak
## 3153                                             still
## 3154                                             still
## 3155                                            street
## 3156                                            street
## 3157                                            street
## 3158                                           suppose
## 3159                                              sure
## 3160                                              sure
## 3161                                              sure
## 3162                                          surprise
## 3163                                             table
## 3164                                              take
## 3165                                              take
## 3166                                              take
## 3167                                              take
## 3168                                              take
## 3169                                              take
## 3170                                              take
## 3171                                              take
## 3172                                              take
## 3173                                               tap
## 3174                                             taste
## 3175                                             taste
## 3176                                             taste
## 3177                                             taste
## 3178                                             taste
## 3179                                             tasty
## 3180                                              tell
## 3181                                                th
## 3182                                             thats
## 3183                                             thick
## 3184                                             thing
## 3185                                             thing
## 3186                                             thing
## 3187                                             think
## 3188                                             think
## 3189                                             think
## 3190                                             think
## 3191                                             think
## 3192                                             think
## 3193                                        thoroughly
## 3194                                            though
## 3195                                            though
## 3196                                              time
## 3197                                              time
## 3198                                              tony
## 3199                                               top
## 3200                                           tourist
## 3201                                           tourist
## 3202                                           tourist
## 3203                                              town
## 3204                                               try
## 3205                                               try
## 3206                                               try
## 3207                                               two
## 3208                                               two
## 3209                                               two
## 3210                                           typical
## 3211                                            unlike
## 3212                                                us
## 3213                                             visit
## 3214                                              wait
## 3215                                              want
## 3216                                              want
## 3217                                              want
## 3218                                              want
## 3219                                             wasnt
## 3220                                             wasnt
## 3221                                               way
## 3222                                               way
## 3223                                            werent
## 3224                                              whiz
## 3225                                              whiz
## 3226                                             whole
## 3227                                              will
## 3228                                              will
## 3229                                              will
## 3230                                              will
## 3231                                              will
## 3232                                              will
## 3233                                               win
## 3234                                            window
## 3235                                              wish
## 3236                                              wish
## 3237                                               wiz
## 3238                                               wiz
## 3239                                             worth
## 3240                                           wouldnt
## 3241                                             wrong
## 3242                                              year
## 3243                                              year
## 3244                                             youre
## 3245                                                 2
## 3246                                            across
## 3247                                          actually
## 3248                                          actually
## 3249                                          actually
## 3250                                          actually
## 3251                                               add
## 3252                                               add
## 3253                                               add
## 3254                                             ahead
## 3255                                            almost
## 3256                                            almost
## 3257                                             along
## 3258                                              also
## 3259                                              also
## 3260                                              also
## 3261                                              also
## 3262                                              also
## 3263                                              also
## 3264                                              also
## 3265                                          although
## 3266                                          although
## 3267                                            always
## 3268                                            always
## 3269                                            always
## 3270                                            always
## 3271                                           amoroso
## 3272                                           another
## 3273                                           another
## 3274                                           another
## 3275                                           another
## 3276                                            anyone
## 3277                                            anyone
## 3278                                          anything
## 3279                                           anytime
## 3280                                              area
## 3281                                             arent
## 3282                                            around
## 3283                                            around
## 3284                                               art
## 3285                                             avoid
## 3286                                              back
## 3287                                              back
## 3288                                              back
## 3289                                              back
## 3290                                              back
## 3291                                               bad
## 3292                                               bad
## 3293                                               bad
## 3294                                               bad
## 3295                                            barely
## 3296                                              beef
## 3297                                            behind
## 3298                                               big
## 3299                                               big
## 3300                                              bite
## 3301                                              bite
## 3302                                              bite
## 3303                                              bite
## 3304                                              bite
## 3305                                              bite
## 3306                                             bland
## 3307                                             bland
## 3308                                            bother
## 3309                                         boyfriend
## 3310                                         boyfriend
## 3311                                         boyfriend
## 3312                                             bread
## 3313                                             bread
## 3314                                             bread
## 3315                                             bread
## 3316                                             bread
## 3317                                             bread
## 3318                                             bread
## 3319                                             bread
## 3320                                          brightly
## 3321                                            burger
## 3322                                          business
## 3323                                               buy
## 3324                                               buy
## 3325                                         cafeteria
## 3326                                              call
## 3327                                              call
## 3328                                              call
## 3329                                               can
## 3330                                               can
## 3331                                               can
## 3332                                               can
## 3333                                               can
## 3334                                              cant
## 3335                                        carmelized
## 3336                                              cash
## 3337                                              cash
## 3338                                              cash
## 3339                                           channel
## 3340                                             check
## 3341                                            cheese
## 3342                                            cheese
## 3343                                            cheese
## 3344                                            cheese
## 3345                                            cheese
## 3346                                            cheese
## 3347                                            cheese
## 3348                                            cheese
## 3349                                            cheese
## 3350                                            cheese
## 3351                                       cheesesteak
## 3352                                       cheesesteak
## 3353                                       cheesesteak
## 3354                                       cheesesteak
## 3355                                       cheesesteak
## 3356                                       cheesesteak
## 3357                                       cheesesteak
## 3358                                       cheesesteak
## 3359                                       cheesesteak
## 3360                                       cheesesteak
## 3361                                       cheesesteak
## 3362                                       cheesesteak
## 3363                                       cheesesteak
## 3364                                       cheesesteak
## 3365                                       cheesesteak
## 3366                                       cheesesteak
## 3367                                       cheesesteak
## 3368                                       cheesesteak
## 3369                                      cheesesteaks
## 3370                                      cheesesteaks
## 3371                                      cheesesteaks
## 3372                                      cheesesteaks
## 3373                                      cheesesteaks
## 3374                                      cheesesteaks
## 3375                                            choose
## 3376                                              chop
## 3377                                              chop
## 3378                                              city
## 3379                                              city
## 3380                                           classic
## 3381                                             clean
## 3382                                              coke
## 3383                                              cold
## 3384                                              cold
## 3385                                              come
## 3386                                              come
## 3387                                              come
## 3388                                              come
## 3389                                              come
## 3390                                              come
## 3391                                              come
## 3392                                              come
## 3393                                              come
## 3394                                              come
## 3395                                              come
## 3396                                        comparison
## 3397                                          complete
## 3398                                              cook
## 3399                                              cool
## 3400                                              cool
## 3401                                              cool
## 3402                                           couldnt
## 3403                                           couldnt
## 3404                                            couple
## 3405                                             cover
## 3406                                             cream
## 3407                                             cross
## 3408                                            daniel
## 3409                                               day
## 3410                                               day
## 3411                                               day
## 3412                                            debate
## 3413                                            debate
## 3414                                            decide
## 3415                                            decide
## 3416                                        definitely
## 3417                                        definitely
## 3418                                        definitely
## 3419                                        definitely
## 3420                                         delicious
## 3421                                         delicious
## 3422                                         delicious
## 3423                                         delicious
## 3424                                             didnt
## 3425                                             didnt
## 3426                                             didnt
## 3427                                             didnt
## 3428                                             didnt
## 3429                                             didnt
## 3430                                             didnt
## 3431                                             didnt
## 3432                                             dirty
## 3433                                        disappoint
## 3434                                        disappoint
## 3435                                        disappoint
## 3436                                                do
## 3437                                                do
## 3438                                                do
## 3439                                                do
## 3440                                            doesnt
## 3441                                            double
## 3442                                             drink
## 3443                                             drink
## 3444                                             drive
## 3445                                               dry
## 3446                                               due
## 3447                                             eagle
## 3448                                               eat
## 3449                                               eat
## 3450                                               eat
## 3451                                               eat
## 3452                                               eat
## 3453                                               eat
## 3454                                               eat
## 3455                                               eat
## 3456                                              else
## 3457                                              else
## 3458                                               end
## 3459                                           english
## 3460                                           english
## 3461                                             enjoy
## 3462                                        especially
## 3463                                              even
## 3464                                              even
## 3465                                              even
## 3466                                              even
## 3467                                              even
## 3468                                              ever
## 3469                                              ever
## 3470                                          everyone
## 3471                                          everyone
## 3472                                            expect
## 3473                                        experience
## 3474                                        experience
## 3475                                        experience
## 3476                                        experience
## 3477                                        experience
## 3478                                        experience
## 3479                                               eye
## 3480                                            family
## 3481                                            famous
## 3482                                               fan
## 3483                                               far
## 3484                                              fast
## 3485                                              fast
## 3486                                          favorite
## 3487                                           feature
## 3488                                              feel
## 3489                                              find
## 3490                                             first
## 3491                                             first
## 3492                                             first
## 3493                                             first
## 3494                                             flash
## 3495                                            flashy
## 3496                                              flat
## 3497                                            flavor
## 3498                                            flavor
## 3499                                              food
## 3500                                              food
## 3501                                              food
## 3502                                              food
## 3503                                              food
## 3504                                              food
## 3505                                              food
## 3506                                              food
## 3507                                              food
## 3508                                              food
## 3509                                          frequent
## 3510                                            friday
## 3511                                            friend
## 3512                                             front
## 3513                                               fry
## 3514                                               fry
## 3515                                               fry
## 3516                                               fry
## 3517                                               fry
## 3518                                               fry
## 3519                                               fry
## 3520                                               fry
## 3521                                               fry
## 3522                                               fry
## 3523                                               fry
## 3524                                               fry
## 3525                                               fun
## 3526                                             genos
## 3527                                             genos
## 3528                                             genos
## 3529                                             genos
## 3530                                             genos
## 3531                                             genos
## 3532                                             genos
## 3533                                             genos
## 3534                                             genos
## 3535                                             genos
## 3536                                             genos
## 3537                                             genos
## 3538                                             genos
## 3539                                             genos
## 3540                                             genos
## 3541                                             genos
## 3542                                             genos
## 3543                                             genos
## 3544                                             genos
## 3545                                             genos
## 3546                                             genos
## 3547                                             genos
## 3548                                             genos
## 3549                                             genos
## 3550                                             genos
## 3551                                             genos
## 3552                                             genos
## 3553                                             genos
## 3554                                             genos
## 3555                                             genos
## 3556                                             genos
## 3557                                             genos
## 3558                                               get
## 3559                                               get
## 3560                                               get
## 3561                                               get
## 3562                                               get
## 3563                                               get
## 3564                                               get
## 3565                                               get
## 3566                                               get
## 3567                                               get
## 3568                                               get
## 3569                                               get
## 3570                                               get
## 3571                                               get
## 3572                                              give
## 3573                                              glad
## 3574                                                go
## 3575                                                go
## 3576                                                go
## 3577                                                go
## 3578                                                go
## 3579                                                go
## 3580                                                go
## 3581                                                go
## 3582                                                go
## 3583                                                go
## 3584                                                go
## 3585                                                go
## 3586                                                go
## 3587                                                go
## 3588                                                go
## 3589                                                go
## 3590                                                go
## 3591                                                go
## 3592                                              good
## 3593                                              good
## 3594                                              good
## 3595                                              good
## 3596                                              good
## 3597                                              good
## 3598                                              good
## 3599                                              good
## 3600                                              good
## 3601                                              good
## 3602                                              good
## 3603                                              good
## 3604                                              good
## 3605                                              good
## 3606                                              good
## 3607                                              good
## 3608                                              good
## 3609                                              good
## 3610                                              good
## 3611                                              good
## 3612                                              good
## 3613                                              good
## 3614                                              grab
## 3615                                             great
## 3616                                             great
## 3617                                             great
## 3618                                             great
## 3619                                             guess
## 3620                                             guess
## 3621                                               guy
## 3622                                              half
## 3623                                              hand
## 3624                                              hard
## 3625                                              hard
## 3626                                              hard
## 3627                                              hate
## 3628                                              head
## 3629                                              hear
## 3630                                             heres
## 3631                                               hey
## 3632                                              high
## 3633                                            highly
## 3634                                               hit
## 3635                                              hold
## 3636                                          honestly
## 3637                                               hot
## 3638                                           however
## 3639                                            humble
## 3640                                              hype
## 3641                                              hype
## 3642                                              hype
## 3643                                              hype
## 3644                                               ill
## 3645                                                im
## 3646                                                im
## 3647                                                im
## 3648                                                im
## 3649                                                im
## 3650                                                im
## 3651                                           impress
## 3652                                        incredibly
## 3653                                      independence
## 3654                                               ive
## 3655                                               ive
## 3656                                               ive
## 3657                                            jersey
## 3658                                              jims
## 3659                                              joey
## 3660                                             juicy
## 3661                                             juicy
## 3662                                             juicy
## 3663                                              just
## 3664                                              just
## 3665                                              just
## 3666                                              just
## 3667                                              just
## 3668                                              just
## 3669                                              just
## 3670                                              just
## 3671                                              just
## 3672                                              just
## 3673                                              keep
## 3674                                              know
## 3675                                              know
## 3676                                              know
## 3677                                              know
## 3678                                              know
## 3679                                              know
## 3680                                              lack
## 3681                                              lady
## 3682                                              lady
## 3683                                              last
## 3684                                              less
## 3685                                               let
## 3686                                               let
## 3687                                               let
## 3688                                               let
## 3689                                               let
## 3690                                             light
## 3691                                             light
## 3692                                              like
## 3693                                              like
## 3694                                              like
## 3695                                              like
## 3696                                              like
## 3697                                              like
## 3698                                              like
## 3699                                              like
## 3700                                              like
## 3701                                              like
## 3702                                              like
## 3703                                              like
## 3704                                              like
## 3705                                              like
## 3706                                              like
## 3707                                              like
## 3708                                              like
## 3709                                              like
## 3710                                              like
## 3711                                              like
## 3712                                              line
## 3713                                              line
## 3714                                              line
## 3715                                              line
## 3716                                              line
## 3717                                              line
## 3718                                            little
## 3719                                            little
## 3720                                            little
## 3721                                            little
## 3722                                              live
## 3723                                              live
## 3724                                             local
## 3725                                             local
## 3726                                             local
## 3727                                             local
## 3728                                              long
## 3729                                              long
## 3730                                              long
## 3731                                              long
## 3732                                              look
## 3733                                              look
## 3734                                              look
## 3735                                              look
## 3736                                              look
## 3737                                               los
## 3738                                               lot
## 3739                                              love
## 3740                                              love
## 3741                                              love
## 3742                                              love
## 3743                                              love
## 3744                                              luck
## 3745                                              luke
## 3746                                             lukes
## 3747                                              make
## 3748                                              make
## 3749                                              make
## 3750                                              make
## 3751                                              make
## 3752                                              make
## 3753                                              make
## 3754                                              many
## 3755                                              many
## 3756                                              many
## 3757                                              many
## 3758                                              many
## 3759                                              mass
## 3760                                               may
## 3761                                               may
## 3762                                             maybe
## 3763                                             maybe
## 3764                                              meat
## 3765                                              meat
## 3766                                              meat
## 3767                                              meat
## 3768                                              meat
## 3769                                              meat
## 3770                                              meat
## 3771                                              meat
## 3772                                              meat
## 3773                                              meat
## 3774                                              meat
## 3775                                              meat
## 3776                                          mediocre
## 3777                                              melt
## 3778                                             melty
## 3779                                           mention
## 3780                                            middle
## 3781                                              mind
## 3782                                             money
## 3783                                             money
## 3784                                             money
## 3785                                              move
## 3786                                                mr
## 3787                                              much
## 3788                                              much
## 3789                                              much
## 3790                                              much
## 3791                                              much
## 3792                                          mushroom
## 3793                                              must
## 3794                                              name
## 3795                                                nd
## 3796                                             never
## 3797                                             never
## 3798                                               new
## 3799                                              nice
## 3800                                              nice
## 3801                                             north
## 3802                                               now
## 3803                                               now
## 3804                                               now
## 3805                                           nowhere
## 3806                                              numb
## 3807                                              numb
## 3808                                             offer
## 3809                                              okay
## 3810                                              okay
## 3811                                               old
## 3812                                               one
## 3813                                               one
## 3814                                               one
## 3815                                               one
## 3816                                               one
## 3817                                               one
## 3818                                               one
## 3819                                               one
## 3820                                               one
## 3821                                             onion
## 3822                                             onion
## 3823                                             onion
## 3824                                             onion
## 3825                                             onion
## 3826                                             onion
## 3827                                             order
## 3828                                             order
## 3829                                             order
## 3830                                             order
## 3831                                             order
## 3832                                             order
## 3833                                             order
## 3834                                             order
## 3835                                             order
## 3836                                             order
## 3837                                           outside
## 3838                                           overall
## 3839                                           overall
## 3840                                           overall
## 3841                                              park
## 3842                                              park
## 3843                                              park
## 3844                                              part
## 3845                                              part
## 3846                                              part
## 3847                                              part
## 3848                                              part
## 3849                                              pass
## 3850                                              past
## 3851                                               pat
## 3852                                               pat
## 3853                                               pat
## 3854                                               pat
## 3855                                               pat
## 3856                                               pat
## 3857                                               pat
## 3858                                               pat
## 3859                                               pat
## 3860                                               pat
## 3861                                               pat
## 3862                                               pat
## 3863                                               pat
## 3864                                               pat
## 3865                                               pat
## 3866                                               pay
## 3867                                               pay
## 3868                                            people
## 3869                                            people
## 3870                                            people
## 3871                                            people
## 3872                                            pepper
## 3873                                        personally
## 3874                                      philadelphia
## 3875                                      philadelphia
## 3876                                      philadelphia
## 3877                                            philly
## 3878                                            philly
## 3879                                            philly
## 3880                                            philly
## 3881                                            philly
## 3882                                            philly
## 3883                                            philly
## 3884                                            philly
## 3885                                            philly
## 3886                                            philly
## 3887                                            philly
## 3888                                            philly
## 3889                                              pick
## 3890                                             pizza
## 3891                                             pizza
## 3892                                             place
## 3893                                             place
## 3894                                             place
## 3895                                             place
## 3896                                             place
## 3897                                             place
## 3898                                             place
## 3899                                             place
## 3900                                             place
## 3901                                             place
## 3902                                             place
## 3903                                             place
## 3904                                             place
## 3905                                             place
## 3906                                             place
## 3907                                             place
## 3908                                             place
## 3909                                            please
## 3910                                            please
## 3911                                            police
## 3912                                           popular
## 3913                                           popular
## 3914                                              pork
## 3915                                            prefer
## 3916                                            pretty
## 3917                                            pretty
## 3918                                            pretty
## 3919                                            pretty
## 3920                                             price
## 3921                                             price
## 3922                                             price
## 3923                                             price
## 3924                                             price
## 3925                                          probably
## 3926                                          probably
## 3927                                         provolone
## 3928                                         provolone
## 3929                                               put
## 3930                                               put
## 3931                                               put
## 3932                                               put
## 3933                                           quality
## 3934                                          question
## 3935                                            racist
## 3936                                            racist
## 3937                                              rate
## 3938                                            rather
## 3939                                              read
## 3940                                              real
## 3941                                            really
## 3942                                            really
## 3943                                            really
## 3944                                            really
## 3945                                            really
## 3946                                            really
## 3947                                            really
## 3948                                            really
## 3949                                            really
## 3950                                            reason
## 3951                                        reasonable
## 3952                                          recently
## 3953                                            refuse
## 3954                                           regular
## 3955                                           regular
## 3956                                            relish
## 3957                                            review
## 3958                                            review
## 3959                                            review
## 3960                                             right
## 3961                                             right
## 3962                                              roll
## 3963                                              roll
## 3964                                              roll
## 3965                                              rude
## 3966                                              rude
## 3967                                              rude
## 3968                                              ruin
## 3969                                               san
## 3970                                          sandwich
## 3971                                          sandwich
## 3972                                          sandwich
## 3973                                          sandwich
## 3974                                          sandwich
## 3975                                          sandwich
## 3976                                          sandwich
## 3977                                          sandwich
## 3978                                          sandwich
## 3979                                          sandwich
## 3980                                          sandwich
## 3981                                          sandwich
## 3982                                          sandwich
## 3983                                          sandwich
## 3984                                          sandwich
## 3985                                          sandwich
## 3986                                          sandwich
## 3987                                          sandwich
## 3988                                          sandwich
## 3989                                          sandwich
## 3990                                           satisfy
## 3991                                           satisfy
## 3992                                               say
## 3993                                               say
## 3994                                            school
## 3995                                            season
## 3996                                            season
## 3997                                              seat
## 3998                                               see
## 3999                                               see
## 4000                                               see
## 4001                                               see
## 4002                                               see
## 4003                                              send
## 4004                                             serve
## 4005                                           service
## 4006                                           service
## 4007                                           service
## 4008                                           service
## 4009                                           service
## 4010                                           service
## 4011                                              shop
## 4012                                              side
## 4013                                              side
## 4014                                        sidebyside
## 4015                                              sign
## 4016                                              sign
## 4017                                             since
## 4018                                             since
## 4019                                             since
## 4020                                             slice
## 4021                                             slice
## 4022                                             slice
## 4023                                            slight
## 4024                                            social
## 4025                                              soft
## 4026                                              soft
## 4027                                           someone
## 4028                                         something
## 4029                                              soon
## 4030                                             sorry
## 4031                                             sorry
## 4032                                             spend
## 4033                                              spot
## 4034                                          standard
## 4035                                              star
## 4036                                              star
## 4037                                             steak
## 4038                                             steak
## 4039                                             steak
## 4040                                             steak
## 4041                                             steak
## 4042                                             steak
## 4043                                             steak
## 4044                                             steak
## 4045                                             steak
## 4046                                             steak
## 4047                                             steak
## 4048                                             steak
## 4049                                             steak
## 4050                                             steak
## 4051                                             steak
## 4052                                             steak
## 4053                                             steak
## 4054                                             steak
## 4055                                             steak
## 4056                                             steak
## 4057                                             steak
## 4058                                             steak
## 4059                                             steak
## 4060                                             steak
## 4061                                           sticker
## 4062                                             still
## 4063                                             still
## 4064                                           stomach
## 4065                                            street
## 4066                                            street
## 4067                                            street
## 4068                                            subpar
## 4069                                             super
## 4070                                             super
## 4071                                           support
## 4072                                           suppose
## 4073                                              sure
## 4074                                              sure
## 4075                                              sure
## 4076                                             sweet
## 4077                                             table
## 4078                                              take
## 4079                                              take
## 4080                                              take
## 4081                                             taste
## 4082                                             taste
## 4083                                             taste
## 4084                                             taste
## 4085                                             taste
## 4086                                             taste
## 4087                                             taste
## 4088                                             taste
## 4089                                             taste
## 4090                                             tasty
## 4091                                             tasty
## 4092                                             tasty
## 4093                                              tell
## 4094                                              tell
## 4095                                            tender
## 4096                                             thank
## 4097                                             thank
## 4098                                             thats
## 4099                                             thats
## 4100                                            theres
## 4101                                            theres
## 4102                                            theyre
## 4103                                            theyre
## 4104                                            theyve
## 4105                                             thing
## 4106                                             thing
## 4107                                             thing
## 4108                                             thing
## 4109                                             think
## 4110                                             think
## 4111                                             think
## 4112                                             think
## 4113                                             think
## 4114                                             think
## 4115                                             think
## 4116                                             think
## 4117                                            though
## 4118                                            though
## 4119                                            though
## 4120                                             throw
## 4121                                              time
## 4122                                              time
## 4123                                              time
## 4124                                              time
## 4125                                              time
## 4126                                              time
## 4127                                             toast
## 4128                                          together
## 4129                                             tough
## 4130                                           tourist
## 4131                                           tourist
## 4132                                           towards
## 4133                                              town
## 4134                                       traditional
## 4135                                             treat
## 4136                                             treat
## 4137                                               try
## 4138                                               try
## 4139                                               try
## 4140                                               try
## 4141                                               try
## 4142                                               try
## 4143                                               try
## 4144                                               try
## 4145                                               try
## 4146                                               try
## 4147                                               try
## 4148                                               try
## 4149                                              turn
## 4150                                              turn
## 4151                                               two
## 4152                                               two
## 4153                                               two
## 4154                                               two
## 4155                                               two
## 4156                                              type
## 4157                                              uber
## 4158                                        unseasoned
## 4159                                                us
## 4160                                               use
## 4161                                               use
## 4162                                           usually
## 4163                                                 v
## 4164                                              vega
## 4165                                             vento
## 4166                                            versus
## 4167                                             visit
## 4168                                             visit
## 4169                                              wait
## 4170                                              wait
## 4171                                              walk
## 4172                                              walk
## 4173                                              want
## 4174                                              want
## 4175                                              want
## 4176                                              want
## 4177                                              want
## 4178                                              want
## 4179                                              want
## 4180                                              want
## 4181                                               war
## 4182                                             wasnt
## 4183                                             wasnt
## 4184                                             wasnt
## 4185                                               way
## 4186                                               way
## 4187                                               way
## 4188                                               way
## 4189                                               way
## 4190                                               way
## 4191                                               way
## 4192                                            werent
## 4193                                              weve
## 4194                                              whiz
## 4195                                              whiz
## 4196                                              whiz
## 4197                                              whiz
## 4198                                              whiz
## 4199                                              whiz
## 4200                                              whiz
## 4201                                             whole
## 4202                                             whole
## 4203                                             whole
## 4204                                              will
## 4205                                              will
## 4206                                              will
## 4207                                            window
## 4208                                            window
## 4209                                            window
## 4210                                              wish
## 4211                                               wit
## 4212                                               wit
## 4213                                            within
## 4214                                           without
## 4215                                           without
## 4216                                               wiz
## 4217                                               wiz
## 4218                                               wiz
## 4219                                               wiz
## 4220                                               wiz
## 4221                                              wont
## 4222                                              work
## 4223                                             worth
## 4224                                             worth
## 4225                                        xenophobic
## 4226                                        xenophobic
## 4227                                              year
## 4228                                              year
## 4229                                              year
## 4230                                               yes
## 4231                                               yes
## 4232                                             youre
## 4233                                             youre
## 4234                                             youre
## 4235                                                 2
## 4236                                                 2
## 4237                                                 2
## 4238                                          absolute
## 4239                                        absolutely
## 4240                                            actual
## 4241                                          actually
## 4242                                               add
## 4243                                               add
## 4244                                            advice
## 4245                                               age
## 4246                                               ago
## 4247                                               ago
## 4248                                             agree
## 4249                                           airport
## 4250                                              also
## 4251                                              also
## 4252                                              also
## 4253                                              also
## 4254                                              also
## 4255                                              also
## 4256                                              also
## 4257                                            always
## 4258                                            always
## 4259                                            always
## 4260                                             amaze
## 4261                                             amaze
## 4262                                            amount
## 4263                                           another
## 4264                                           another
## 4265                                           another
## 4266                                            anyone
## 4267                                          anything
## 4268                                          anything
## 4269                                          anything
## 4270                                          anything
## 4271                                           anyways
## 4272                                          approach
## 4273                                              area
## 4274                                              area
## 4275                                             arent
## 4276                                             arent
## 4277                                            around
## 4278                                            around
## 4279                                            around
## 4280                                            around
## 4281                                            around
## 4282                                            arrive
## 4283                                            arrive
## 4284                                               ask
## 4285                                               ask
## 4286                                               ask
## 4287                                               ask
## 4288                                          attitude
## 4289                                             avoid
## 4290                                              away
## 4291                                              away
## 4292                                              back
## 4293                                              back
## 4294                                              back
## 4295                                              back
## 4296                                              back
## 4297                                               bad
## 4298                                               bad
## 4299                                               bad
## 4300                                               bad
## 4301                                               bad
## 4302                                               bad
## 4303                                               bad
## 4304                                               bad
## 4305                                               bar
## 4306                                            barely
## 4307                                            battle
## 4308                                            battle
## 4309                                            battle
## 4310                                              beef
## 4311                                              beef
## 4312                                           believe
## 4313                                           believe
## 4314                                            beyond
## 4315                                                bf
## 4316                                               big
## 4317                                               big
## 4318                                               big
## 4319                                               big
## 4320                                              bite
## 4321                                              bite
## 4322                                              bite
## 4323                                              bite
## 4324                                              bite
## 4325                                             bland
## 4326                                             bland
## 4327                                             bland
## 4328                                             bland
## 4329                                             bland
## 4330                                               boy
## 4331                                             bread
## 4332                                             bread
## 4333                                             bread
## 4334                                             bread
## 4335                                             bread
## 4336                                             bread
## 4337                                             bread
## 4338                                             bread
## 4339                                             bring
## 4340                                          business
## 4341                                          business
## 4342                                          business
## 4343                                               buy
## 4344                                               buy
## 4345                                               cab
## 4346                                              call
## 4347                                               can
## 4348                                               can
## 4349                                               can
## 4350                                               can
## 4351                                               can
## 4352                                               can
## 4353                                               can
## 4354                                               can
## 4355                                               can
## 4356                                              cant
## 4357                                              cant
## 4358                                              cant
## 4359                                              cant
## 4360                                              care
## 4361                                              cash
## 4362                                              cash
## 4363                                              cash
## 4364                                              cash
## 4365                                         celebrity
## 4366                                         certainly
## 4367                                            chance
## 4368                                            charge
## 4369                                             cheap
## 4370                                             cheap
## 4371                                             check
## 4372                                            cheese
## 4373                                            cheese
## 4374                                            cheese
## 4375                                            cheese
## 4376                                            cheese
## 4377                                            cheese
## 4378                                            cheese
## 4379                                            cheese
## 4380                                            cheese
## 4381                                            cheese
## 4382                                            cheese
## 4383                                            cheese
## 4384                                       cheesesteak
## 4385                                       cheesesteak
## 4386                                       cheesesteak
## 4387                                       cheesesteak
## 4388                                       cheesesteak
## 4389                                       cheesesteak
## 4390                                       cheesesteak
## 4391                                       cheesesteak
## 4392                                       cheesesteak
## 4393                                       cheesesteak
## 4394                                       cheesesteak
## 4395                                       cheesesteak
## 4396                                       cheesesteak
## 4397                                       cheesesteak
## 4398                                       cheesesteak
## 4399                                       cheesesteak
## 4400                                       cheesesteak
## 4401                                       cheesesteak
## 4402                                       cheesesteak
## 4403                                       cheesesteak
## 4404                                       cheesesteak
## 4405                                       cheesesteak
## 4406                                       cheesesteak
## 4407                                       cheesesteak
## 4408                                       cheesesteak
## 4409                                       cheesesteak
## 4410                                       cheesesteak
## 4411                                       cheesesteak
## 4412                                      cheesesteaks
## 4413                                      cheesesteaks
## 4414                                      cheesesteaks
## 4415                                      cheesesteaks
## 4416                                      cheesesteaks
## 4417                                      cheesesteaks
## 4418                                      cheesesteaks
## 4419                                      cheesesteaks
## 4420                                      cheesesteaks
## 4421                                      cheesesteaks
## 4422                                      cheesesteaks
## 4423                                      cheesesteaks
## 4424                                      cheesesteaks
## 4425                                            cheeze
## 4426                                             chewy
## 4427                                             chewy
## 4428                                            choose
## 4429                                              chop
## 4430                                              chop
## 4431                                              city
## 4432                                              city
## 4433                                              city
## 4434                                              city
## 4435                                              city
## 4436                                              city
## 4437                                             clean
## 4438                                             clean
## 4439                                             clean
## 4440                                             clear
## 4441                                             close
## 4442                                              cold
## 4443                                              cold
## 4444                                              cold
## 4445                                              cold
## 4446                                              cold
## 4447                                              come
## 4448                                              come
## 4449                                              come
## 4450                                              come
## 4451                                              come
## 4452                                              come
## 4453                                              come
## 4454                                              come
## 4455                                              come
## 4456                                              come
## 4457                                              come
## 4458                                           compare
## 4459                                           compare
## 4460                                           compare
## 4461                                        comparison
## 4462                                        competitor
## 4463                                          complete
## 4464                                         condiment
## 4465                                         condiment
## 4466                                         condiment
## 4467                                          consider
## 4468                                              cook
## 4469                                            corner
## 4470                                            corner
## 4471                                           couldnt
## 4472                                           counter
## 4473                                            couple
## 4474                                            course
## 4475                                            course
## 4476                                              crap
## 4477                                             crave
## 4478                                             crave
## 4479                                             crisp
## 4480                                             cross
## 4481                                          customer
## 4482                                          customer
## 4483                                               cut
## 4484                                              damn
## 4485                                               day
## 4486                                               day
## 4487                                               day
## 4488                                               day
## 4489                                               day
## 4490                                               day
## 4491                                               day
## 4492                                               day
## 4493                                            debate
## 4494                                            decent
## 4495                                            decent
## 4496                                            decide
## 4497                                            decide
## 4498                                            decide
## 4499                                            decide
## 4500                                            decide
## 4501                                            decide
## 4502                                            decide
## 4503                                             decor
## 4504                                        definitely
## 4505                                        definitely
## 4506                                        definitely
## 4507                                        definitely
## 4508                                        definitely
## 4509                                        definitely
## 4510                                            degree
## 4511                                         delicious
## 4512                                         delicious
## 4513                                           deserve
## 4514                                             didnt
## 4515                                             didnt
## 4516                                             didnt
## 4517                                             didnt
## 4518                                             didnt
## 4519                                        disappoint
## 4520                                        disappoint
## 4521                                           disgust
## 4522                                                do
## 4523                                                do
## 4524                                                do
## 4525                                                do
## 4526                                                do
## 4527                                                do
## 4528                                                do
## 4529                                                do
## 4530                                                do
## 4531                                                do
## 4532                                                do
## 4533                                            doesnt
## 4534                                            doesnt
## 4535                                            doesnt
## 4536                                            doesnt
## 4537                                            doesnt
## 4538                                              draw
## 4539                                             drink
## 4540                                             drink
## 4541                                             drink
## 4542                                             drink
## 4543                                             drink
## 4544                                              drip
## 4545                                              drip
## 4546                                              drip
## 4547                                             drive
## 4548                                             drive
## 4549                                             drive
## 4550                                               dry
## 4551                                               dry
## 4552                                               dry
## 4553                                               dry
## 4554                                               dry
## 4555                                              easy
## 4556                                               eat
## 4557                                               eat
## 4558                                               eat
## 4559                                               eat
## 4560                                               eat
## 4561                                               eat
## 4562                                               eat
## 4563                                               eat
## 4564                                               eat
## 4565                                                eh
## 4566                                            either
## 4567                                              else
## 4568                                          employee
## 4569                                               end
## 4570                                               end
## 4571                                               end
## 4572                                           english
## 4573                                           english
## 4574                                           english
## 4575                                             enjoy
## 4576                                             enjoy
## 4577                                            enough
## 4578                                            enough
## 4579                                               etc
## 4580                                              even
## 4581                                              even
## 4582                                              even
## 4583                                              even
## 4584                                              even
## 4585                                              even
## 4586                                              ever
## 4587                                              ever
## 4588                                              ever
## 4589                                              ever
## 4590                                          everyone
## 4591                                          everyone
## 4592                                        everything
## 4593                                        everything
## 4594                                           exactly
## 4595                                            expect
## 4596                                            expect
## 4597                                            expect
## 4598                                            expect
## 4599                                            expect
## 4600                                       expectation
## 4601                                         expensive
## 4602                                        experience
## 4603                                        experience
## 4604                                        experience
## 4605                                        experience
## 4606                                        experience
## 4607                                        experience
## 4608                                             extra
## 4609                                              fact
## 4610                                              fall
## 4611                                              fall
## 4612                                              fall
## 4613                                              fall
## 4614                                              fall
## 4615                                              fall
## 4616                                              fame
## 4617                                            family
## 4618                                               fan
## 4619                                               far
## 4620                                               far
## 4621                                              fast
## 4622                                              fast
## 4623                                              fast
## 4624                                             favor
## 4625                                          favorite
## 4626                                              feel
## 4627                                              feel
## 4628                                              feel
## 4629                                              feel
## 4630                                              feel
## 4631                                              feel
## 4632                                            fellow
## 4633                                            figure
## 4634                                              find
## 4635                                              find
## 4636                                              find
## 4637                                              find
## 4638                                              find
## 4639                                              find
## 4640                                            finish
## 4641                                             first
## 4642                                             first
## 4643                                             first
## 4644                                             first
## 4645                                             first
## 4646                                             first
## 4647                                             first
## 4648                                             first
## 4649                                            flavor
## 4650                                            flavor
## 4651                                            flavor
## 4652                                            flavor
## 4653                                            flavor
## 4654                                            flavor
## 4655                                            flavor
## 4656                                            flavor
## 4657                                         flavorful
## 4658                                         flavorful
## 4659                                         flavorful
## 4660                                         flavorful
## 4661                                         flavorful
## 4662                                               fly
## 4663                                             flyer
## 4664                                             focus
## 4665                                              food
## 4666                                              food
## 4667                                              food
## 4668                                              food
## 4669                                              food
## 4670                                              food
## 4671                                              food
## 4672                                              food
## 4673                                              food
## 4674                                              food
## 4675                                              food
## 4676                                              food
## 4677                                              food
## 4678                                              food
## 4679                                              food
## 4680                                              food
## 4681                                              food
## 4682                                              food
## 4683                                              food
## 4684                                              food
## 4685                                              food
## 4686                                              food
## 4687                                          fountain
## 4688                                              four
## 4689                                              free
## 4690                                            freeze
## 4691                                             fresh
## 4692                                             fresh
## 4693                                           freshly
## 4694                                            friend
## 4695                                            friend
## 4696                                          friendly
## 4697                                             front
## 4698                                               fry
## 4699                                               fry
## 4700                                               fry
## 4701                                               fry
## 4702                                               fry
## 4703                                               fry
## 4704                                               fry
## 4705                                               fry
## 4706                                               fry
## 4707                                               fry
## 4708                                               fry
## 4709                                               fry
## 4710                                               fry
## 4711                                               fry
## 4712                                               fry
## 4713                                               fry
## 4714                                               fry
## 4715                                               fun
## 4716                                               gas
## 4717                                              geno
## 4718                                              geno
## 4719                                             genos
## 4720                                             genos
## 4721                                             genos
## 4722                                             genos
## 4723                                             genos
## 4724                                             genos
## 4725                                             genos
## 4726                                             genos
## 4727                                             genos
## 4728                                             genos
## 4729                                             genos
## 4730                                             genos
## 4731                                             genos
## 4732                                             genos
## 4733                                             genos
## 4734                                             genos
## 4735                                             genos
## 4736                                             genos
## 4737                                             genos
## 4738                                             genos
## 4739                                             genos
## 4740                                             genos
## 4741                                             genos
## 4742                                             genos
## 4743                                             genos
## 4744                                             genos
## 4745                                             genos
## 4746                                             genos
## 4747                                             genos
## 4748                                             genos
## 4749                                             genos
## 4750                                             genos
## 4751                                             genos
## 4752                                             genos
## 4753                                             genos
## 4754                                             genos
## 4755                                             genos
## 4756                                             genos
## 4757                                             genos
## 4758                                             genos
## 4759                                             genos
## 4760                                             genos
## 4761                                             genos
## 4762                                             genos
## 4763                                             genos
## 4764                                             genos
## 4765                                             genos
## 4766                                             genos
## 4767                                           genuine
## 4768                                               get
## 4769                                               get
## 4770                                               get
## 4771                                               get
## 4772                                               get
## 4773                                               get
## 4774                                               get
## 4775                                               get
## 4776                                               get
## 4777                                               get
## 4778                                               get
## 4779                                               get
## 4780                                               get
## 4781                                               get
## 4782                                               get
## 4783                                               get
## 4784                                               get
## 4785                                               get
## 4786                                               get
## 4787                                               get
## 4788                                               get
## 4789                                               get
## 4790                                               get
## 4791                                               get
## 4792                                               get
## 4793                                               get
## 4794                                               get
## 4795                                               get
## 4796                                              give
## 4797                                              give
## 4798                                              give
## 4799                                              give
## 4800                                              give
## 4801                                              give
## 4802                                              give
## 4803                                              give
## 4804                                              give
## 4805                                              give
## 4806                                              give
## 4807                                              give
## 4808                                              glad
## 4809                                                go
## 4810                                                go
## 4811                                                go
## 4812                                                go
## 4813                                                go
## 4814                                                go
## 4815                                                go
## 4816                                                go
## 4817                                                go
## 4818                                                go
## 4819                                                go
## 4820                                                go
## 4821                                                go
## 4822                                                go
## 4823                                                go
## 4824                                                go
## 4825                                                go
## 4826                                                go
## 4827                                                go
## 4828                                                go
## 4829                                                go
## 4830                                                go
## 4831                                                go
## 4832                                                go
## 4833                                               god
## 4834                                               god
## 4835                                             gonna
## 4836                                              good
## 4837                                              good
## 4838                                              good
## 4839                                              good
## 4840                                              good
## 4841                                              good
## 4842                                              good
## 4843                                              good
## 4844                                              good
## 4845                                              good
## 4846                                              good
## 4847                                              good
## 4848                                              good
## 4849                                              good
## 4850                                              good
## 4851                                              good
## 4852                                              good
## 4853                                              good
## 4854                                              good
## 4855                                              good
## 4856                                              good
## 4857                                              good
## 4858                                              good
## 4859                                              good
## 4860                                              good
## 4861                                              good
## 4862                                              good
## 4863                                              good
## 4864                                              good
## 4865                                              good
## 4866                                              good
## 4867                                              good
## 4868                                              good
## 4869                                              good
## 4870                                              good
## 4871                                              good
## 4872                                              good
## 4873                                              good
## 4874                                              good
## 4875                                              good
## 4876                                              good
## 4877                                              good
## 4878                                              good
## 4879                                              good
## 4880                                              good
## 4881                                              good
## 4882                                              good
## 4883                                              good
## 4884                                             gooey
## 4885                                             gooey
## 4886                                            google
## 4887                                              goto
## 4888                                             gotta
## 4889                                              grab
## 4890                                            grease
## 4891                                            greasy
## 4892                                            greasy
## 4893                                             great
## 4894                                             great
## 4895                                             great
## 4896                                             great
## 4897                                             great
## 4898                                             green
## 4899                                             guess
## 4900                                             guess
## 4901                                            guilty
## 4902                                               guy
## 4903                                               guy
## 4904                                               guy
## 4905                                               guy
## 4906                                               guy
## 4907                                              half
## 4908                                              half
## 4909                                              half
## 4910                                              hard
## 4911                                            hardly
## 4912                                             hasnt
## 4913                                              head
## 4914                                              head
## 4915                                              head
## 4916                                             heart
## 4917                                              hell
## 4918                                               hey
## 4919                                              high
## 4920                                               hit
## 4921                                              hold
## 4922                                              hold
## 4923                                              home
## 4924                                              home
## 4925                                          honestly
## 4926                                          honestly
## 4927                                          honestly
## 4928                                              hope
## 4929                                          horrible
## 4930                                          horrible
## 4931                                          horrible
## 4932                                          horrible
## 4933                                               hot
## 4934                                               hot
## 4935                                             hotel
## 4936                                           however
## 4937                                           however
## 4938                                           however
## 4939                                              hype
## 4940                                              hype
## 4941                                              hype
## 4942                                               ice
## 4943                                                id
## 4944                                                id
## 4945                                                id
## 4946                                                id
## 4947                                          ignorant
## 4948                                                ii
## 4949                                               ill
## 4950                                               ill
## 4951                                               ill
## 4952                                                im
## 4953                                                im
## 4954                                                im
## 4955                                                im
## 4956                                                im
## 4957                                                im
## 4958                                                im
## 4959                                                im
## 4960                                                im
## 4961                                                im
## 4962                                           impress
## 4963                                           impress
## 4964                                          infamous
## 4965                                          infamous
## 4966                                           instead
## 4967                                          interest
## 4968                                      ishkabibbles
## 4969                                              isnt
## 4970                                           italian
## 4971                                           italian
## 4972                                           italian
## 4973                                               ive
## 4974                                               ive
## 4975                                               ive
## 4976                                               ive
## 4977                                               ive
## 4978                                               ive
## 4979                                               ive
## 4980                                               joe
## 4981                                             joint
## 4982                                             judge
## 4983                                             juice
## 4984                                             juicy
## 4985                                              just
## 4986                                              just
## 4987                                              just
## 4988                                              just
## 4989                                              just
## 4990                                              just
## 4991                                              just
## 4992                                              just
## 4993                                              just
## 4994                                              just
## 4995                                              just
## 4996                                              just
## 4997                                              just
## 4998                                              just
## 4999                                              just
## 5000                                              just
## 5001                                              just
## 5002                                              just
## 5003                                              just
## 5004                                              just
## 5005                                              just
## 5006                                              just
## 5007                                              just
## 5008                                              keep
## 5009                                              keep
## 5010                                              keep
## 5011                                              keep
## 5012                                           ketchup
## 5013                                              kill
## 5014                                              kind
## 5015                                             kinda
## 5016                                             knock
## 5017                                              know
## 5018                                              know
## 5019                                              know
## 5020                                              know
## 5021                                              know
## 5022                                              know
## 5023                                              know
## 5024                                              lady
## 5025                                          landmark
## 5026                                             large
## 5027                                              last
## 5028                                              last
## 5029                                               law
## 5030                                              lean
## 5031                                             learn
## 5032                                              less
## 5033                                              less
## 5034                                              less
## 5035                                               let
## 5036                                               let
## 5037                                              life
## 5038                                              life
## 5039                                              like
## 5040                                              like
## 5041                                              like
## 5042                                              like
## 5043                                              like
## 5044                                              like
## 5045                                              like
## 5046                                              like
## 5047                                              like
## 5048                                              like
## 5049                                              like
## 5050                                              like
## 5051                                              like
## 5052                                              like
## 5053                                              like
## 5054                                              like
## 5055                                              like
## 5056                                              like
## 5057                                              like
## 5058                                              like
## 5059                                              like
## 5060                                              like
## 5061                                              like
## 5062                                             limit
## 5063                                              line
## 5064                                              line
## 5065                                              line
## 5066                                              line
## 5067                                              line
## 5068                                              line
## 5069                                              line
## 5070                                              line
## 5071                                              line
## 5072                                         literally
## 5073                                            little
## 5074                                            little
## 5075                                            little
## 5076                                              live
## 5077                                              live
## 5078                                              live
## 5079                                              live
## 5080                                             local
## 5081                                             local
## 5082                                             local
## 5083                                             local
## 5084                                             local
## 5085                                              long
## 5086                                              long
## 5087                                              long
## 5088                                              long
## 5089                                              long
## 5090                                              long
## 5091                                              look
## 5092                                              look
## 5093                                              look
## 5094                                              look
## 5095                                              look
## 5096                                              lose
## 5097                                               lot
## 5098                                              love
## 5099                                               low
## 5100                                               low
## 5101                                             loyal
## 5102                                             lukes
## 5103                                             lunch
## 5104                                             lunch
## 5105                                              main
## 5106                                              main
## 5107                                              make
## 5108                                              make
## 5109                                              make
## 5110                                              make
## 5111                                              make
## 5112                                              make
## 5113                                              make
## 5114                                              make
## 5115                                              make
## 5116                                              make
## 5117                                              make
## 5118                                              make
## 5119                                              make
## 5120                                              make
## 5121                                              make
## 5122                                              many
## 5123                                              many
## 5124                                              many
## 5125                                               may
## 5126                                               may
## 5127                                               may
## 5128                                             maybe
## 5129                                             maybe
## 5130                                             maybe
## 5131                                             maybe
## 5132                                             maybe
## 5133                                             maybe
## 5134                                              mean
## 5135                                              mean
## 5136                                              meat
## 5137                                              meat
## 5138                                              meat
## 5139                                              meat
## 5140                                              meat
## 5141                                              meat
## 5142                                              meat
## 5143                                              meat
## 5144                                              meat
## 5145                                              meat
## 5146                                              meat
## 5147                                              meat
## 5148                                              meat
## 5149                                          mediocre
## 5150                                          mediocre
## 5151                                          mediocre
## 5152                                              melt
## 5153                                            middle
## 5154                                              mind
## 5155                                              mine
## 5156                                              miss
## 5157                                           mistake
## 5158                                             moist
## 5159                                             money
## 5160                                             money
## 5161                                             money
## 5162                                             money
## 5163                                             money
## 5164                                            mostly
## 5165                                              move
## 5166                                              move
## 5167                                              move
## 5168                                              much
## 5169                                              much
## 5170                                              much
## 5171                                              much
## 5172                                              much
## 5173                                              much
## 5174                                          mushroom
## 5175                                              must
## 5176                                              must
## 5177                                              must
## 5178                                              must
## 5179                                              near
## 5180                                              need
## 5181                                              need
## 5182                                              need
## 5183                                              need
## 5184                                              need
## 5185                                              need
## 5186                                          negative
## 5187                                           neither
## 5188                                           network
## 5189                                             never
## 5190                                             never
## 5191                                             never
## 5192                                             never
## 5193                                             never
## 5194                                              next
## 5195                                              nice
## 5196                                              nice
## 5197                                              nice
## 5198                                              nice
## 5199                                              nice
## 5200                                              nice
## 5201                                              nice
## 5202                                             night
## 5203                                             night
## 5204                                              none
## 5205                                              note
## 5206                                           nothing
## 5207                                           nothing
## 5208                                               now
## 5209                                               now
## 5210                                               now
## 5211                                           officer
## 5212                                              okay
## 5213                                              okay
## 5214                                              okay
## 5215                                              okay
## 5216                                              okay
## 5217                                              okay
## 5218                                              okay
## 5219                                               one
## 5220                                               one
## 5221                                               one
## 5222                                               one
## 5223                                               one
## 5224                                               one
## 5225                                               one
## 5226                                               one
## 5227                                               one
## 5228                                               one
## 5229                                               one
## 5230                                               one
## 5231                                               one
## 5232                                               one
## 5233                                               one
## 5234                                               one
## 5235                                               one
## 5236                                               one
## 5237                                               one
## 5238                                               one
## 5239                                             onion
## 5240                                             onion
## 5241                                             onion
## 5242                                             onion
## 5243                                             onion
## 5244                                             onion
## 5245                                             onion
## 5246                                             onion
## 5247                                             onion
## 5248                                             onion
## 5249                                             onion
## 5250                                             onion
## 5251                                           opinion
## 5252                                           opinion
## 5253                                           opinion
## 5254                                               opt
## 5255                                             order
## 5256                                             order
## 5257                                             order
## 5258                                             order
## 5259                                             order
## 5260                                             order
## 5261                                             order
## 5262                                             order
## 5263                                             order
## 5264                                             order
## 5265                                             order
## 5266                                             order
## 5267                                             order
## 5268                                             other
## 5269                                           outdoor
## 5270                                           outside
## 5271                                           outside
## 5272                                           outside
## 5273                                           outside
## 5274                                           overall
## 5275                                           overall
## 5276                                           overall
## 5277                                           overall
## 5278                                        overpriced
## 5279                                          overrate
## 5280                                              park
## 5281                                              park
## 5282                                              park
## 5283                                              park
## 5284                                              park
## 5285                                              park
## 5286                                              pass
## 5287                                             paste
## 5288                                               pat
## 5289                                               pat
## 5290                                               pat
## 5291                                               pat
## 5292                                               pat
## 5293                                               pat
## 5294                                               pat
## 5295                                               pat
## 5296                                               pat
## 5297                                               pat
## 5298                                               pat
## 5299                                               pat
## 5300                                               pat
## 5301                                               pat
## 5302                                               pat
## 5303                                               pat
## 5304                                               pat
## 5305                                               pat
## 5306                                               pat
## 5307                                               pat
## 5308                                               pat
## 5309                                               pat
## 5310                                               pat
## 5311                                               pat
## 5312                                               pat
## 5313                                               pat
## 5314                                               pat
## 5315                                               pat
## 5316                                             patch
## 5317                                            patron
## 5318                                         patronize
## 5319                                               pay
## 5320                                               pay
## 5321                                            people
## 5322                                            people
## 5323                                            people
## 5324                                            people
## 5325                                            people
## 5326                                            people
## 5327                                            people
## 5328                                            people
## 5329                                            people
## 5330                                            people
## 5331                                            pepper
## 5332                                            pepper
## 5333                                           perfect
## 5334                                           perfect
## 5335                                           perfect
## 5336                                         perfectly
## 5337                                            person
## 5338                                          personal
## 5339                                        personally
## 5340                                        personally
## 5341                                      philadelphia
## 5342                                      philadelphia
## 5343                                      philadelphia
## 5344                                      philadelphia
## 5345                                      philadelphia
## 5346                                      philadelphia
## 5347                                      philadelphia
## 5348                                      philadelphia
## 5349                                      philadelphia
## 5350                                      philadelphia
## 5351                                            philly
## 5352                                            philly
## 5353                                            philly
## 5354                                            philly
## 5355                                            philly
## 5356                                            philly
## 5357                                            philly
## 5358                                            philly
## 5359                                            philly
## 5360                                            philly
## 5361                                            philly
## 5362                                            philly
## 5363                                            philly
## 5364                                            philly
## 5365                                            philly
## 5366                                            philly
## 5367                                            philly
## 5368                                            philly
## 5369                                            philly
## 5370                                             photo
## 5371                                            pickle
## 5372                                             piece
## 5373                                              pile
## 5374                                             place
## 5375                                             place
## 5376                                             place
## 5377                                             place
## 5378                                             place
## 5379                                             place
## 5380                                             place
## 5381                                             place
## 5382                                             place
## 5383                                             place
## 5384                                             place
## 5385                                             place
## 5386                                             place
## 5387                                             place
## 5388                                             place
## 5389                                             place
## 5390                                             place
## 5391                                             place
## 5392                                             place
## 5393                                             place
## 5394                                             place
## 5395                                             place
## 5396                                             place
## 5397                                             place
## 5398                                             place
## 5399                                             place
## 5400                                             place
## 5401                                             place
## 5402                                             place
## 5403                                             place
## 5404                                           plaster
## 5405                                        pleasantly
## 5406                                            please
## 5407                                                pm
## 5408                                             point
## 5409                                            police
## 5410                                              poor
## 5411                                              poor
## 5412                                           popular
## 5413                                              pork
## 5414                                           portion
## 5415                                           portion
## 5416                                           preface
## 5417                                            prefer
## 5418                                            prefer
## 5419                                            prefer
## 5420                                        preference
## 5421                                           prepare
## 5422                                           prepare
## 5423                                           prepare
## 5424                                            pretty
## 5425                                            pretty
## 5426                                            pretty
## 5427                                          previous
## 5428                                             price
## 5429                                             price
## 5430                                             price
## 5431                                               pro
## 5432                                          probably
## 5433                                          probably
## 5434                                           problem
## 5435                                         provolone
## 5436                                         provolone
## 5437                                            public
## 5438                                               put
## 5439                                               put
## 5440                                               put
## 5441                                               put
## 5442                                               put
## 5443                                               put
## 5444                                               put
## 5445                                           quality
## 5446                                          question
## 5447                                             quick
## 5448                                           quickly
## 5449                                            rather
## 5450                                            rather
## 5451                                            rather
## 5452                                            rather
## 5453                                              rave
## 5454                                              read
## 5455                                              read
## 5456                                             ready
## 5457                                              real
## 5458                                              real
## 5459                                            really
## 5460                                            really
## 5461                                            really
## 5462                                            really
## 5463                                            really
## 5464                                            really
## 5465                                            really
## 5466                                            really
## 5467                                            really
## 5468                                            really
## 5469                                            reason
## 5470                                         recommend
## 5471                                         recommend
## 5472                                         recommend
## 5473                                               red
## 5474                                               red
## 5475                                         represent
## 5476                                           reserve
## 5477                                       residential
## 5478                                              rest
## 5479                                        restaurant
## 5480                                            review
## 5481                                            review
## 5482                                            review
## 5483                                            review
## 5484                                             right
## 5485                                             right
## 5486                                             rival
## 5487                                             rocky
## 5488                                              roll
## 5489                                              roll
## 5490                                              roll
## 5491                                              roll
## 5492                                              root
## 5493                                              rude
## 5494                                              rude
## 5495                                              rude
## 5496                                               run
## 5497                                                 s
## 5498                                               sad
## 5499                                             salty
## 5500                                          sandwich
## 5501                                          sandwich
## 5502                                          sandwich
## 5503                                          sandwich
## 5504                                          sandwich
## 5505                                          sandwich
## 5506                                          sandwich
## 5507                                          sandwich
## 5508                                          sandwich
## 5509                                          sandwich
## 5510                                          sandwich
## 5511                                          sandwich
## 5512                                          sandwich
## 5513                                          sandwich
## 5514                                          sandwich
## 5515                                          sandwich
## 5516                                          sandwich
## 5517                                          sandwich
## 5518                                          sandwich
## 5519                                          sandwich
## 5520                                             sauce
## 5521                                             sauce
## 5522                                             sauce
## 5523                                           sautéed
## 5524                                               say
## 5525                                               say
## 5526                                               say
## 5527                                               say
## 5528                                               say
## 5529                                               say
## 5530                                               say
## 5531                                               say
## 5532                                               say
## 5533                                               say
## 5534                                               say
## 5535                                               say
## 5536                                               say
## 5537                                               say
## 5538                                              seat
## 5539                                              seat
## 5540                                            second
## 5541                                               see
## 5542                                               see
## 5543                                               see
## 5544                                               see
## 5545                                              seem
## 5546                                              seem
## 5547                                              seem
## 5548                                              seem
## 5549                                              seem
## 5550                                         seriously
## 5551                                         seriously
## 5552                                             serve
## 5553                                             serve
## 5554                                           service
## 5555                                           service
## 5556                                           service
## 5557                                           service
## 5558                                           several
## 5559                                             share
## 5560                                             share
## 5561                                             sharp
## 5562                                             shave
## 5563                                              shop
## 5564                                              shop
## 5565                                              shop
## 5566                                             short
## 5567                                          shouldve
## 5568                                              side
## 5569                                             since
## 5570                                             since
## 5571                                             since
## 5572                                             since
## 5573                                             since
## 5574                                              sink
## 5575                                               sit
## 5576                                               sit
## 5577                                               sit
## 5578                                              size
## 5579                                             skimp
## 5580                                            skimpy
## 5581                                              skip
## 5582                                             slice
## 5583                                          slightly
## 5584                                             small
## 5585                                             small
## 5586                                             smart
## 5587                                              soft
## 5588                                              soft
## 5589                                              soft
## 5590                                             soggy
## 5591                                         something
## 5592                                         something
## 5593                                         something
## 5594                                          somewhat
## 5595                                             sorry
## 5596                                              sort
## 5597                                             speak
## 5598                                             spend
## 5599                                             split
## 5600                                             sport
## 5601                                              spot
## 5602                                              spot
## 5603                                             staff
## 5604                                             staff
## 5605                                             stand
## 5606                                              star
## 5607                                              star
## 5608                                              star
## 5609                                              star
## 5610                                              star
## 5611                                              star
## 5612                                             state
## 5613                                             steak
## 5614                                             steak
## 5615                                             steak
## 5616                                             steak
## 5617                                             steak
## 5618                                             steak
## 5619                                             steak
## 5620                                             steak
## 5621                                             steak
## 5622                                             steak
## 5623                                             steak
## 5624                                             steak
## 5625                                             steak
## 5626                                             steak
## 5627                                             steak
## 5628                                             steak
## 5629                                             steak
## 5630                                             steak
## 5631                                             steak
## 5632                                             steak
## 5633                                             steak
## 5634                                             steak
## 5635                                             steak
## 5636                                             steak
## 5637                                             steak
## 5638                                             steak
## 5639                                             steak
## 5640                                             steak
## 5641                                             steak
## 5642                                             steak
## 5643                                             steak
## 5644                                             steak
## 5645                                             steak
## 5646                                             steak
## 5647                                             steak
## 5648                                             steak
## 5649                                              step
## 5650                                           sticker
## 5651                                             still
## 5652                                             still
## 5653                                             still
## 5654                                             still
## 5655                                             still
## 5656                                             still
## 5657                                             still
## 5658                                             still
## 5659                                              stop
## 5660                                              stop
## 5661                                              stop
## 5662                                             story
## 5663                                          straight
## 5664                                          straight
## 5665                                            street
## 5666                                            street
## 5667                                            street
## 5668                                            street
## 5669                                            street
## 5670                                            street
## 5671                                            street
## 5672                                            street
## 5673                                            street
## 5674                                            street
## 5675                                            street
## 5676                                            street
## 5677                                             strip
## 5678                                             stuff
## 5679                                               sub
## 5680                                               sub
## 5681                                               sub
## 5682                                              suck
## 5683                                           suggest
## 5684                                            sunday
## 5685                                             super
## 5686                                             super
## 5687                                             super
## 5688                                          superior
## 5689                                          superior
## 5690                                              sure
## 5691                                              sure
## 5692                                              sure
## 5693                                              sure
## 5694                                              sure
## 5695                                              sure
## 5696                                          surprise
## 5697                                              take
## 5698                                              take
## 5699                                              take
## 5700                                              take
## 5701                                              take
## 5702                                              talk
## 5703                                             taste
## 5704                                             taste
## 5705                                             taste
## 5706                                             taste
## 5707                                             taste
## 5708                                             taste
## 5709                                             taste
## 5710                                             taste
## 5711                                             taste
## 5712                                             tasty
## 5713                                           teacher
## 5714                                              tell
## 5715                                              tell
## 5716                                              tell
## 5717                                               ten
## 5718                                            tender
## 5719                                            tender
## 5720                                           texture
## 5721                                             thank
## 5722                                             thank
## 5723                                             thats
## 5724                                             thats
## 5725                                             thats
## 5726                                             thats
## 5727                                             thats
## 5728                                             thats
## 5729                                             thats
## 5730                                             thats
## 5731                                             thats
## 5732                                            theres
## 5733                                            theres
## 5734                                            theyre
## 5735                                            theyre
## 5736                                            theyre
## 5737                                            theyre
## 5738                                            theyre
## 5739                                             thick
## 5740                                             thick
## 5741                                             thing
## 5742                                             thing
## 5743                                             thing
## 5744                                             thing
## 5745                                             thing
## 5746                                             thing
## 5747                                             thing
## 5748                                             thing
## 5749                                             thing
## 5750                                             think
## 5751                                             think
## 5752                                             think
## 5753                                             think
## 5754                                             think
## 5755                                            though
## 5756                                            though
## 5757                                            though
## 5758                                            though
## 5759                                            though
## 5760                                            though
## 5761                                            though
## 5762                                             three
## 5763                                             three
## 5764                                             throw
## 5765                                              time
## 5766                                              time
## 5767                                              time
## 5768                                              time
## 5769                                              time
## 5770                                              time
## 5771                                              time
## 5772                                              time
## 5773                                              time
## 5774                                              time
## 5775                                              time
## 5776                                               top
## 5777                                               top
## 5778                                           totally
## 5779                                             tough
## 5780                                             tough
## 5781                                              tour
## 5782                                              tour
## 5783                                           tourist
## 5784                                           tourist
## 5785                                           tourist
## 5786                                           tourist
## 5787                                           tourist
## 5788                                           tourist
## 5789                                           tourist
## 5790                                          touristy
## 5791                                              town
## 5792                                              town
## 5793                                              town
## 5794                                              town
## 5795                                              town
## 5796                                              town
## 5797                                              town
## 5798                                              trap
## 5799                                              trap
## 5800                                              trip
## 5801                                              true
## 5802                                              true
## 5803                                              true
## 5804                                               try
## 5805                                               try
## 5806                                               try
## 5807                                               try
## 5808                                               try
## 5809                                               try
## 5810                                               try
## 5811                                               try
## 5812                                               try
## 5813                                              turn
## 5814                                               two
## 5815                                               two
## 5816                                               two
## 5817                                               two
## 5818                                               two
## 5819                                               two
## 5820                                               two
## 5821                                               two
## 5822                                               two
## 5823                                           typical
## 5824                                        underwhelm
## 5825                                     unfortunately
## 5826                                            unique
## 5827                                            unique
## 5828                                            unless
## 5829                                        unseasoned
## 5830                                             upper
## 5831                                                ur
## 5832                                                us
## 5833                                                us
## 5834                                                us
## 5835                                                us
## 5836                                                us
## 5837                                                us
## 5838                                                us
## 5839                                                us
## 5840                                                us
## 5841                                                us
## 5842                                               use
## 5843                                               use
## 5844                                               use
## 5845                                           usually
## 5846                                              vega
## 5847                                            versus
## 5848                                              vice
## 5849                                             visit
## 5850                                             visit
## 5851                                             visit
## 5852                                             visit
## 5853                                             visit
## 5854                                              vote
## 5855                                              wait
## 5856                                              wait
## 5857                                              walk
## 5858                                              walk
## 5859                                              walk
## 5860                                              want
## 5861                                              want
## 5862                                              want
## 5863                                              want
## 5864                                              want
## 5865                                              want
## 5866                                              want
## 5867                                              want
## 5868                                              want
## 5869                                              want
## 5870                                              warm
## 5871                                              warm
## 5872                                             wasnt
## 5873                                             wasnt
## 5874                                             wasnt
## 5875                                             wasnt
## 5876                                             wasnt
## 5877                                             wasnt
## 5878                                             wasnt
## 5879                                             wasnt
## 5880                                             wasnt
## 5881                                             wasnt
## 5882                                               wax
## 5883                                               way
## 5884                                               way
## 5885                                               way
## 5886                                               way
## 5887                                               way
## 5888                                               way
## 5889                                               way
## 5890                                           weekend
## 5891                                           weekend
## 5892                                          whatever
## 5893                                             where
## 5894                                             white
## 5895                                             white
## 5896                                              whiz
## 5897                                              whiz
## 5898                                              whiz
## 5899                                              whiz
## 5900                                              whiz
## 5901                                              whiz
## 5902                                              whiz
## 5903                                              whiz
## 5904                                              whiz
## 5905                                              whiz
## 5906                                              whiz
## 5907                                              whiz
## 5908                                              whiz
## 5909                                              whiz
## 5910                                              whiz
## 5911                                             whizz
## 5912                                             whole
## 5913                                             whole
## 5914                                             whole
## 5915                                              whos
## 5916                                              wife
## 5917                                              will
## 5918                                              will
## 5919                                              will
## 5920                                              will
## 5921                                              will
## 5922                                              will
## 5923                                              will
## 5924                                               win
## 5925                                            window
## 5926                                            window
## 5927                                            window
## 5928                                            window
## 5929                                            window
## 5930                                            window
## 5931                                            window
## 5932                                            window
## 5933                                            window
## 5934                                               wit
## 5935                                               wit
## 5936                                               wit
## 5937                                            within
## 5938                                            within
## 5939                                           without
## 5940                                           without
## 5941                                           without
## 5942                                           without
## 5943                                           without
## 5944                                            witout
## 5945                                               wiz
## 5946                                               wiz
## 5947                                               wiz
## 5948                                            wonder
## 5949                                              wont
## 5950                                             worth
## 5951                                             worth
## 5952                                             worth
## 5953                                             worth
## 5954                                           wouldnt
## 5955                                             wrong
## 5956                                             wrong
## 5957                                               yes
## 5958                                               yet
## 5959                                              york
## 5960                                              youd
## 5961                                              youd
## 5962                                             youll
## 5963                                             youre
## 5964                                             youre
## 5965                                             youre
## 5966                                             youre
## 5967                                             youre
## 5968                                             youre
## 5969                                             youre
## 5970                                             youre
## 5971                                             youre
## 5972                                             youre
## 5973                                             youre
## 5974                                             youve
## 5975                                                 2
## 5976                                              able
## 5977                                              able
## 5978                                              able
## 5979                                              able
## 5980                                            accept
## 5981                                            across
## 5982                                            actual
## 5983                                            actual
## 5984                                          actually
## 5985                                          actually
## 5986                                          actually
## 5987                                          actually
## 5988                                          actually
## 5989                                          actually
## 5990                                               add
## 5991                                               add
## 5992                                               add
## 5993                                               add
## 5994                                               add
## 5995                                               add
## 5996                                               add
## 5997                                               age
## 5998                                               ago
## 5999                                               ago
## 6000                                             agree
## 6001                                             agree
## 6002                                             allow
## 6003                                            almost
## 6004                                            almost
## 6005                                            almost
## 6006                                              alot
## 6007                                           already
## 6008                                           already
## 6009                                           already
## 6010                                           already
## 6011                                           alright
## 6012                                              also
## 6013                                              also
## 6014                                              also
## 6015                                              also
## 6016                                              also
## 6017                                              also
## 6018                                              also
## 6019                                              also
## 6020                                              also
## 6021                                              also
## 6022                                              also
## 6023                                              also
## 6024                                              also
## 6025                                              also
## 6026                                              also
## 6027                                              also
## 6028                                          although
## 6029                                            always
## 6030                                            always
## 6031                                            always
## 6032                                            always
## 6033                                            always
## 6034                                            always
## 6035                                            always
## 6036                                             amaze
## 6037                                          american
## 6038                                          american
## 6039                                          american
## 6040                                          american
## 6041                                          american
## 6042                                          american
## 6043                                          american
## 6044                                            amount
## 6045                                           another
## 6046                                           another
## 6047                                           another
## 6048                                           another
## 6049                                            answer
## 6050                                            anyone
## 6051                                            anyone
## 6052                                            anyone
## 6053                                            anyone
## 6054                                          anything
## 6055                                          anything
## 6056                                          anything
## 6057                                            anyway
## 6058                                          anywhere
## 6059                                        apparently
## 6060                                        apparently
## 6061                                              area
## 6062                                              area
## 6063                                              area
## 6064                                              area
## 6065                                              area
## 6066                                              area
## 6067                                              area
## 6068                                              area
## 6069                                              area
## 6070                                              area
## 6071                                             arent
## 6072                                             arent
## 6073                                            around
## 6074                                            around
## 6075                                            around
## 6076                                            around
## 6077                                            around
## 6078                                            arrive
## 6079                                               ask
## 6080                                               ask
## 6081                                               ask
## 6082                                               ask
## 6083                                               ask
## 6084                                               ask
## 6085                                               ask
## 6086                                               ask
## 6087                                               ask
## 6088                                               ask
## 6089                                               ask
## 6090                                               ask
## 6091                                               ask
## 6092                                               ask
## 6093                                               ass
## 6094                                               atm
## 6095                                        atmosphere
## 6096                                          attitude
## 6097                                          attitude
## 6098                                          attitude
## 6099                                          attitude
## 6100                                           attract
## 6101                                           attract
## 6102                                         authentic
## 6103                                           average
## 6104                                             avoid
## 6105                                             avoid
## 6106                                              away
## 6107                                              away
## 6108                                              away
## 6109                                           awesome
## 6110                                           awesome
## 6111                                           awesome
## 6112                                           awesome
## 6113                                             awful
## 6114                                             awful
## 6115                                              back
## 6116                                              back
## 6117                                              back
## 6118                                              back
## 6119                                              back
## 6120                                              back
## 6121                                              back
## 6122                                              back
## 6123                                              back
## 6124                                              back
## 6125                                              back
## 6126                                              back
## 6127                                              back
## 6128                                              back
## 6129                                              back
## 6130                                              back
## 6131                                              back
## 6132                                              back
## 6133                                              back
## 6134                                               bad
## 6135                                               bad
## 6136                                               bad
## 6137                                               bad
## 6138                                               bad
## 6139                                               bad
## 6140                                               bad
## 6141                                               bad
## 6142                                              bang
## 6143                                            barely
## 6144                                            barely
## 6145                                            barely
## 6146                                            barely
## 6147                                              bark
## 6148                                              base
## 6149                                             basic
## 6150                                             basic
## 6151                                            battle
## 6152                                               bay
## 6153                                              beat
## 6154                                         beautiful
## 6155                                              beef
## 6156                                            behind
## 6157                                           believe
## 6158                                           believe
## 6159                                           believe
## 6160                                           believe
## 6161                                             bench
## 6162                                             bench
## 6163                                               big
## 6164                                               big
## 6165                                               big
## 6166                                               big
## 6167                                               big
## 6168                                               big
## 6169                                               big
## 6170                                           bigoted
## 6171                                              bite
## 6172                                              bite
## 6173                                              bite
## 6174                                              bite
## 6175                                              bite
## 6176                                              bite
## 6177                                              bite
## 6178                                              bite
## 6179                                              bite
## 6180                                              bite
## 6181                                              bite
## 6182                                             bland
## 6183                                             bland
## 6184                                             bland
## 6185                                             bland
## 6186                                             bland
## 6187                                             bland
## 6188                                             bland
## 6189                                         blatantly
## 6190                                             blend
## 6191                                             block
## 6192                                              blue
## 6193                                            bother
## 6194                                             bread
## 6195                                             bread
## 6196                                             bread
## 6197                                             bread
## 6198                                             bread
## 6199                                             bread
## 6200                                             bread
## 6201                                             bread
## 6202                                             bread
## 6203                                             bread
## 6204                                             bread
## 6205                                             bread
## 6206                                             bread
## 6207                                             bread
## 6208                                             bread
## 6209                                             bread
## 6210                                             bread
## 6211                                             bread
## 6212                                             bread
## 6213                                             bread
## 6214                                             bread
## 6215                                            bright
## 6216                                             bring
## 6217                                             bring
## 6218                                          broccoli
## 6219                                           brother
## 6220                                              buck
## 6221                                             build
## 6222                                               bun
## 6223                                               bun
## 6224                                               bun
## 6225                                               bun
## 6226                                             bunch
## 6227                                          business
## 6228                                          business
## 6229                                          business
## 6230                                          business
## 6231                                              busy
## 6232                                              busy
## 6233                                               buy
## 6234                                               buy
## 6235                                               cab
## 6236                                              call
## 6237                                               can
## 6238                                               can
## 6239                                               can
## 6240                                               can
## 6241                                               can
## 6242                                               can
## 6243                                               can
## 6244                                               can
## 6245                                               can
## 6246                                               can
## 6247                                               can
## 6248                                               can
## 6249                                               can
## 6250                                               can
## 6251                                               can
## 6252                                               can
## 6253                                              cant
## 6254                                              cant
## 6255                                              cant
## 6256                                              cant
## 6257                                              cant
## 6258                                              cant
## 6259                                               car
## 6260                                              card
## 6261                                              care
## 6262                                             carry
## 6263                                              cash
## 6264                                              cash
## 6265                                              cash
## 6266                                              cash
## 6267                                              cash
## 6268                                              cash
## 6269                                              cash
## 6270                                              cash
## 6271                                              cash
## 6272                                              cash
## 6273                                              cash
## 6274                                           cashier
## 6275                                             catch
## 6276                                         celebrity
## 6277                                         celebrity
## 6278                                         challenge
## 6279                                         challenge
## 6280                                            charge
## 6281                                             check
## 6282                                             check
## 6283                                             check
## 6284                                             chees
## 6285                                            cheese
## 6286                                            cheese
## 6287                                            cheese
## 6288                                            cheese
## 6289                                            cheese
## 6290                                            cheese
## 6291                                            cheese
## 6292                                            cheese
## 6293                                            cheese
## 6294                                            cheese
## 6295                                            cheese
## 6296                                            cheese
## 6297                                            cheese
## 6298                                            cheese
## 6299                                            cheese
## 6300                                            cheese
## 6301                                            cheese
## 6302                                            cheese
## 6303                                            cheese
## 6304                                            cheese
## 6305                                       cheesesteak
## 6306                                       cheesesteak
## 6307                                       cheesesteak
## 6308                                       cheesesteak
## 6309                                       cheesesteak
## 6310                                       cheesesteak
## 6311                                       cheesesteak
## 6312                                       cheesesteak
## 6313                                       cheesesteak
## 6314                                       cheesesteak
## 6315                                       cheesesteak
## 6316                                       cheesesteak
## 6317                                       cheesesteak
## 6318                                       cheesesteak
## 6319                                       cheesesteak
## 6320                                       cheesesteak
## 6321                                       cheesesteak
## 6322                                       cheesesteak
## 6323                                       cheesesteak
## 6324                                       cheesesteak
## 6325                                       cheesesteak
## 6326                                       cheesesteak
## 6327                                       cheesesteak
## 6328                                       cheesesteak
## 6329                                       cheesesteak
## 6330                                       cheesesteak
## 6331                                       cheesesteak
## 6332                                       cheesesteak
## 6333                                       cheesesteak
## 6334                                       cheesesteak
## 6335                                       cheesesteak
## 6336                                       cheesesteak
## 6337                                       cheesesteak
## 6338                                      cheesesteaks
## 6339                                      cheesesteaks
## 6340                                      cheesesteaks
## 6341                                      cheesesteaks
## 6342                                      cheesesteaks
## 6343                                      cheesesteaks
## 6344                                      cheesesteaks
## 6345                                      cheesesteaks
## 6346                                      cheesesteaks
## 6347                                      cheesesteaks
## 6348                                      cheesesteaks
## 6349                                      cheesesteaks
## 6350                                      cheesesteaks
## 6351                                      cheesesteaks
## 6352                                      cheesesteaks
## 6353                                      cheesesteaks
## 6354                                      cheesesteaks
## 6355                                            cheesy
## 6356                                            cheeze
## 6357                                              chew
## 6358                                             chewy
## 6359                                             chewy
## 6360                                             chewy
## 6361                                             chewy
## 6362                                             chewy
## 6363                                             chewy
## 6364                                           chicken
## 6365                                           chinese
## 6366                                            choice
## 6367                                            choose
## 6368                                            choose
## 6369                                            choose
## 6370                                            choose
## 6371                                            choose
## 6372                                              chop
## 6373                                              chop
## 6374                                              chop
## 6375                                             chunk
## 6376                                      circumstance
## 6377                                              city
## 6378                                              city
## 6379                                              city
## 6380                                              city
## 6381                                             clean
## 6382                                             clean
## 6383                                             clean
## 6384                                             clean
## 6385                                             clean
## 6386                                              clog
## 6387                                              coke
## 6388                                              cold
## 6389                                              cold
## 6390                                              cold
## 6391                                              cold
## 6392                                              cold
## 6393                                              cold
## 6394                                              cold
## 6395                                              cold
## 6396                                              come
## 6397                                              come
## 6398                                              come
## 6399                                              come
## 6400                                              come
## 6401                                              come
## 6402                                              come
## 6403                                              come
## 6404                                              come
## 6405                                              come
## 6406                                              come
## 6407                                              come
## 6408                                              come
## 6409                                              come
## 6410                                              come
## 6411                                              come
## 6412                                              come
## 6413                                              come
## 6414                                              come
## 6415                                              come
## 6416                                              come
## 6417                                           compare
## 6418                                        comparison
## 6419                                       competition
## 6420                                          complain
## 6421                                         complaint
## 6422                                        completely
## 6423                                        conclusion
## 6424                                         condiment
## 6425                                         condiment
## 6426                                             coney
## 6427                                           confuse
## 6428                                          consider
## 6429                                       consistency
## 6430                                           contest
## 6431                                              cook
## 6432                                              cook
## 6433                                              cook
## 6434                                              cook
## 6435                                              cool
## 6436                                               cop
## 6437                                               cop
## 6438                                            corner
## 6439                                            corner
## 6440                                              cost
## 6441                                              cost
## 6442                                              cost
## 6443                                           couldnt
## 6444                                           couldnt
## 6445                                           couldnt
## 6446                                           counter
## 6447                                           counter
## 6448                                           counter
## 6449                                            couple
## 6450                                            couple
## 6451                                            course
## 6452                                            course
## 6453                                            course
## 6454                                            course
## 6455                                              crap
## 6456                                              crap
## 6457                                            crappy
## 6458                                             crave
## 6459                                             crave
## 6460                                           crunchy
## 6461                                               cup
## 6462                                               cup
## 6463                                               cup
## 6464                                               cup
## 6465                                          customer
## 6466                                          customer
## 6467                                          customer
## 6468                                          customer
## 6469                                          customer
## 6470                                               cut
## 6471                                               dam
## 6472                                               day
## 6473                                               day
## 6474                                               day
## 6475                                               day
## 6476                                               day
## 6477                                               day
## 6478                                                dc
## 6479                                              dead
## 6480                                            decent
## 6481                                            decent
## 6482                                            decent
## 6483                                            decide
## 6484                                            decide
## 6485                                            decide
## 6486                                            decide
## 6487                                            decide
## 6488                                            decide
## 6489                                            decide
## 6490                                          decision
## 6491                                          decision
## 6492                                               def
## 6493                                        definitely
## 6494                                        definitely
## 6495                                        definitely
## 6496                                        definitely
## 6497                                        definitely
## 6498                                        definitely
## 6499                                        definitely
## 6500                                         delicious
## 6501                                         delicious
## 6502                                         delicious
## 6503                                         delicious
## 6504                                         delicious
## 6505                                         delicious
## 6506                                            depend
## 6507                                       deportation
## 6508                                          describe
## 6509                                           deserve
## 6510                                           deserve
## 6511                                           despite
## 6512                                           despite
## 6513                                              dice
## 6514                                             didnt
## 6515                                             didnt
## 6516                                             didnt
## 6517                                             didnt
## 6518                                             didnt
## 6519                                             didnt
## 6520                                               die
## 6521                                        difference
## 6522                                        difference
## 6523                                         different
## 6524                                         different
## 6525                                         different
## 6526                                         different
## 6527                                         different
## 6528                                         difficult
## 6529                                             dirty
## 6530                                        disappoint
## 6531                                        disappoint
## 6532                                        disappoint
## 6533                                        disappoint
## 6534                                        disappoint
## 6535                                        disappoint
## 6536                                        disappoint
## 6537                                        disappoint
## 6538                                        disappoint
## 6539                                        disappoint
## 6540                                        disappoint
## 6541                                        disappoint
## 6542                                    disappointment
## 6543                                           display
## 6544                                                do
## 6545                                                do
## 6546                                                do
## 6547                                                do
## 6548                                                do
## 6549                                                do
## 6550                                                do
## 6551                                                do
## 6552                                                do
## 6553                                                do
## 6554                                                do
## 6555                                                do
## 6556                                            doesnt
## 6557                                            doesnt
## 6558                                            doesnt
## 6559                                            doesnt
## 6560                                             dozen
## 6561                                             drink
## 6562                                             drink
## 6563                                             drink
## 6564                                             drink
## 6565                                             drink
## 6566                                             drink
## 6567                                             drink
## 6568                                             drink
## 6569                                             drive
## 6570                                             drive
## 6571                                             drive
## 6572                                             drive
## 6573                                             drive
## 6574                                             drive
## 6575                                             drive
## 6576                                             drive
## 6577                                             drive
## 6578                                            driver
## 6579                                               dry
## 6580                                               dry
## 6581                                               dry
## 6582                                               dry
## 6583                                               dry
## 6584                                               dry
## 6585                                               dry
## 6586                                               dry
## 6587                                               dry
## 6588                                               dry
## 6589                                               dry
## 6590                                               dry
## 6591                                               due
## 6592                                              dump
## 6593                                             eagle
## 6594                                             early
## 6595                                              earn
## 6596                                              easy
## 6597                                              easy
## 6598                                               eat
## 6599                                               eat
## 6600                                               eat
## 6601                                               eat
## 6602                                               eat
## 6603                                               eat
## 6604                                               eat
## 6605                                               eat
## 6606                                               eat
## 6607                                               eat
## 6608                                               eat
## 6609                                               eat
## 6610                                               eat
## 6611                                               eat
## 6612                                               eat
## 6613                                               eat
## 6614                                               eat
## 6615                                               eat
## 6616                                                eh
## 6617                                            either
## 6618                                              else
## 6619                                              else
## 6620                                              else
## 6621                                              else
## 6622                                              else
## 6623                                              else
## 6624                                              else
## 6625                                              else
## 6626                                              else
## 6627                                          employee
## 6628                                             empty
## 6629                                               end
## 6630                                               end
## 6631                                               end
## 6632                                           english
## 6633                                           english
## 6634                                           english
## 6635                                           english
## 6636                                           english
## 6637                                           english
## 6638                                           english
## 6639                                           english
## 6640                                           english
## 6641                                           english
## 6642                                           english
## 6643                                       englishonly
## 6644                                             enjoy
## 6645                                             enjoy
## 6646                                             enjoy
## 6647                                             enjoy
## 6648                                             enjoy
## 6649                                             enjoy
## 6650                                            enough
## 6651                                            enough
## 6652                                            enough
## 6653                                            enough
## 6654                                            enough
## 6655                                            enough
## 6656                                            entire
## 6657                                           epitome
## 6658                                           equally
## 6659                                           equally
## 6660                                        especially
## 6661                                     establishment
## 6662                                     establishment
## 6663                                     establishment
## 6664                                     establishment
## 6665                                     establishment
## 6666                                     establishment
## 6667                                               etc
## 6668                                              even
## 6669                                              even
## 6670                                              even
## 6671                                              even
## 6672                                              even
## 6673                                              even
## 6674                                              even
## 6675                                              even
## 6676                                              even
## 6677                                              even
## 6678                                              even
## 6679                                              even
## 6680                                              even
## 6681                                              even
## 6682                                              even
## 6683                                              even
## 6684                                              even
## 6685                                              even
## 6686                                              even
## 6687                                              even
## 6688                                              even
## 6689                                              even
## 6690                                              ever
## 6691                                              ever
## 6692                                              ever
## 6693                                              ever
## 6694                                              ever
## 6695                                              ever
## 6696                                             every
## 6697                                             every
## 6698                                             every
## 6699                                             every
## 6700                                             every
## 6701                                          everyone
## 6702                                          everyone
## 6703                                          everyone
## 6704                                          everyone
## 6705                                          everyone
## 6706                                          everyone
## 6707                                        everything
## 6708                                           exactly
## 6709                                           exactly
## 6710                                           example
## 6711                                         excellent
## 6712                                            excite
## 6713                                            excite
## 6714                                            excite
## 6715                                            excite
## 6716                                            expect
## 6717                                            expect
## 6718                                            expect
## 6719                                            expect
## 6720                                            expect
## 6721                                            expect
## 6722                                            expect
## 6723                                            expect
## 6724                                            expect
## 6725                                       expectation
## 6726                                       expectation
## 6727                                       expectation
## 6728                                        experience
## 6729                                        experience
## 6730                                        experience
## 6731                                        experience
## 6732                                        experience
## 6733                                        experience
## 6734                                        experience
## 6735                                        experience
## 6736                                        experience
## 6737                                        experience
## 6738                                        experience
## 6739                                        experience
## 6740                                        experience
## 6741                                        experience
## 6742                                        experience
## 6743                                        experience
## 6744                                             extra
## 6745                                             extra
## 6746                                         extremely
## 6747                                         extremely
## 6748                                         extremely
## 6749                                              fact
## 6750                                              fair
## 6751                                            family
## 6752                                            family
## 6753                                            family
## 6754                                            famous
## 6755                                            famous
## 6756                                            famous
## 6757                                               fan
## 6758                                               far
## 6759                                               far
## 6760                                               far
## 6761                                               far
## 6762                                               far
## 6763                                              fast
## 6764                                              fast
## 6765                                              fast
## 6766                                              fast
## 6767                                              fast
## 6768                                              fast
## 6769                                              fast
## 6770                                               fat
## 6771                                             fatty
## 6772                                             favor
## 6773                                          favorite
## 6774                                          favorite
## 6775                                          favorite
## 6776                                           feature
## 6777                                              feel
## 6778                                              feel
## 6779                                              feel
## 6780                                              feel
## 6781                                              feel
## 6782                                              feel
## 6783                                              feel
## 6784                                              feel
## 6785                                              feel
## 6786                                              feud
## 6787                                            figure
## 6788                                            figure
## 6789                                            figure
## 6790                                             filet
## 6791                                              fill
## 6792                                              fill
## 6793                                           finally
## 6794                                           finally
## 6795                                           finally
## 6796                                              find
## 6797                                              find
## 6798                                              find
## 6799                                              find
## 6800                                              fine
## 6801                                              fine
## 6802                                            finish
## 6803                                             first
## 6804                                             first
## 6805                                             first
## 6806                                             first
## 6807                                             first
## 6808                                             first
## 6809                                             first
## 6810                                             first
## 6811                                             first
## 6812                                             first
## 6813                                             first
## 6814                                             first
## 6815                                             first
## 6816                                             first
## 6817                                             first
## 6818                                             flash
## 6819                                            flashy
## 6820                                            flashy
## 6821                                            flavor
## 6822                                            flavor
## 6823                                            flavor
## 6824                                            flavor
## 6825                                            flavor
## 6826                                            flavor
## 6827                                            flavor
## 6828                                            flavor
## 6829                                            flavor
## 6830                                            flavor
## 6831                                            flavor
## 6832                                            flavor
## 6833                                            flavor
## 6834                                            flavor
## 6835                                            flavor
## 6836                                            flavor
## 6837                                            flavor
## 6838                                         flavorful
## 6839                                         flavorful
## 6840                                        flavorless
## 6841                                        flavorless
## 6842                                        flavorless
## 6843                                            follow
## 6844                                              food
## 6845                                              food
## 6846                                              food
## 6847                                              food
## 6848                                              food
## 6849                                              food
## 6850                                              food
## 6851                                              food
## 6852                                              food
## 6853                                              food
## 6854                                              food
## 6855                                              food
## 6856                                              food
## 6857                                              food
## 6858                                              food
## 6859                                              food
## 6860                                              food
## 6861                                              food
## 6862                                              food
## 6863                                              food
## 6864                                              food
## 6865                                              food
## 6866                                              food
## 6867                                              food
## 6868                                              food
## 6869                                              food
## 6870                                              food
## 6871                                              foot
## 6872                                            forget
## 6873                                           forward
## 6874                                          fountain
## 6875                                           frankly
## 6876                                           freedom
## 6877                                            french
## 6878                                             fresh
## 6879                                             fresh
## 6880                                             fresh
## 6881                                             fresh
## 6882                                             fresh
## 6883                                             fresh
## 6884                                            friend
## 6885                                            friend
## 6886                                            friend
## 6887                                            friend
## 6888                                            friend
## 6889                                            friend
## 6890                                            friend
## 6891                                          friendly
## 6892                                          friendly
## 6893                                             front
## 6894                                             front
## 6895                                               fry
## 6896                                               fry
## 6897                                               fry
## 6898                                               fry
## 6899                                               fry
## 6900                                               fry
## 6901                                               fry
## 6902                                               fry
## 6903                                               fry
## 6904                                               fry
## 6905                                               fry
## 6906                                               fry
## 6907                                               fry
## 6908                                               fry
## 6909                                               fry
## 6910                                               fry
## 6911                                               fry
## 6912                                               fry
## 6913                                               fry
## 6914                                               fry
## 6915                                               fry
## 6916                                               fry
## 6917                                               fry
## 6918                                               fry
## 6919                                               fry
## 6920                                               fry
## 6921                                              full
## 6922                                              full
## 6923                                             fully
## 6924                                               fun
## 6925                                               fun
## 6926                                               fun
## 6927                                          generous
## 6928                                              geno
## 6929                                              geno
## 6930                                             genos
## 6931                                             genos
## 6932                                             genos
## 6933                                             genos
## 6934                                             genos
## 6935                                             genos
## 6936                                             genos
## 6937                                             genos
## 6938                                             genos
## 6939                                             genos
## 6940                                             genos
## 6941                                             genos
## 6942                                             genos
## 6943                                             genos
## 6944                                             genos
## 6945                                             genos
## 6946                                             genos
## 6947                                             genos
## 6948                                             genos
## 6949                                             genos
## 6950                                             genos
## 6951                                             genos
## 6952                                             genos
## 6953                                             genos
## 6954                                             genos
## 6955                                             genos
## 6956                                             genos
## 6957                                             genos
## 6958                                             genos
## 6959                                             genos
## 6960                                             genos
## 6961                                             genos
## 6962                                             genos
## 6963                                             genos
## 6964                                             genos
## 6965                                             genos
## 6966                                             genos
## 6967                                             genos
## 6968                                             genos
## 6969                                             genos
## 6970                                             genos
## 6971                                             genos
## 6972                                             genos
## 6973                                             genos
## 6974                                             genos
## 6975                                             genos
## 6976                                             genos
## 6977                                             genos
## 6978                                             genos
## 6979                                             genos
## 6980                                             genos
## 6981                                             genos
## 6982                                             genos
## 6983                                             genos
## 6984                                             genos
## 6985                                             genos
## 6986                                             genos
## 6987                                               get
## 6988                                               get
## 6989                                               get
## 6990                                               get
## 6991                                               get
## 6992                                               get
## 6993                                               get
## 6994                                               get
## 6995                                               get
## 6996                                               get
## 6997                                               get
## 6998                                               get
## 6999                                               get
## 7000                                               get
## 7001                                               get
## 7002                                               get
## 7003                                               get
## 7004                                               get
## 7005                                               get
## 7006                                               get
## 7007                                               get
## 7008                                               get
## 7009                                               get
## 7010                                               get
## 7011                                               get
## 7012                                               get
## 7013                                               get
## 7014                                               get
## 7015                                               get
## 7016                                               get
## 7017                                              gift
## 7018                                             ginos
## 7019                                             ginos
## 7020                                              give
## 7021                                              give
## 7022                                              give
## 7023                                              give
## 7024                                              give
## 7025                                              give
## 7026                                              give
## 7027                                              glad
## 7028                                             glitz
## 7029                                                go
## 7030                                                go
## 7031                                                go
## 7032                                                go
## 7033                                                go
## 7034                                                go
## 7035                                                go
## 7036                                                go
## 7037                                                go
## 7038                                                go
## 7039                                                go
## 7040                                                go
## 7041                                                go
## 7042                                                go
## 7043                                                go
## 7044                                                go
## 7045                                                go
## 7046                                                go
## 7047                                                go
## 7048                                                go
## 7049                                                go
## 7050                                                go
## 7051                                                go
## 7052                                                go
## 7053                                                go
## 7054                                                go
## 7055                                                go
## 7056                                                go
## 7057                                                go
## 7058                                                go
## 7059                                                go
## 7060                                                go
## 7061                                                go
## 7062                                                go
## 7063                                                go
## 7064                                                go
## 7065                                                go
## 7066                                                go
## 7067                                                go
## 7068                                               god
## 7069                                               god
## 7070                                             gonna
## 7071                                             gonna
## 7072                                              good
## 7073                                              good
## 7074                                              good
## 7075                                              good
## 7076                                              good
## 7077                                              good
## 7078                                              good
## 7079                                              good
## 7080                                              good
## 7081                                              good
## 7082                                              good
## 7083                                              good
## 7084                                              good
## 7085                                              good
## 7086                                              good
## 7087                                              good
## 7088                                              good
## 7089                                              good
## 7090                                              good
## 7091                                              good
## 7092                                              good
## 7093                                              good
## 7094                                              good
## 7095                                              good
## 7096                                              good
## 7097                                              good
## 7098                                              good
## 7099                                              good
## 7100                                              good
## 7101                                              good
## 7102                                              good
## 7103                                              good
## 7104                                              good
## 7105                                              good
## 7106                                              good
## 7107                                              good
## 7108                                              good
## 7109                                              good
## 7110                                              good
## 7111                                              good
## 7112                                              good
## 7113                                              good
## 7114                                              good
## 7115                                              good
## 7116                                              good
## 7117                                              good
## 7118                                              good
## 7119                                              good
## 7120                                              good
## 7121                                              good
## 7122                                              good
## 7123                                              good
## 7124                                              good
## 7125                                              good
## 7126                                              good
## 7127                                              good
## 7128                                              good
## 7129                                              good
## 7130                                              good
## 7131                                              good
## 7132                                              good
## 7133                                              good
## 7134                                             gotta
## 7135                                              grab
## 7136                                              grab
## 7137                                              grab
## 7138                                            grease
## 7139                                            greasy
## 7140                                            greasy
## 7141                                            greasy
## 7142                                            greasy
## 7143                                            greasy
## 7144                                            greasy
## 7145                                            greasy
## 7146                                             great
## 7147                                             great
## 7148                                             great
## 7149                                             great
## 7150                                             great
## 7151                                             great
## 7152                                             great
## 7153                                             great
## 7154                                             great
## 7155                                             great
## 7156                                             great
## 7157                                             great
## 7158                                             great
## 7159                                             great
## 7160                                             grill
## 7161                                             grill
## 7162                                           gristly
## 7163                                             gross
## 7164                                              grow
## 7165                                              grow
## 7166                                             guess
## 7167                                             guess
## 7168                                             guess
## 7169                                             guess
## 7170                                             guess
## 7171                                             guess
## 7172                                             guess
## 7173                                               guy
## 7174                                               guy
## 7175                                               guy
## 7176                                               guy
## 7177                                               guy
## 7178                                               guy
## 7179                                               guy
## 7180                                               guy
## 7181                                               guy
## 7182                                              half
## 7183                                              half
## 7184                                              hand
## 7185                                              hand
## 7186                                              hand
## 7187                                              hand
## 7188                                              hand
## 7189                                              hand
## 7190                                              hand
## 7191                                           handful
## 7192                                             happy
## 7193                                             happy
## 7194                                              hard
## 7195                                              hard
## 7196                                              hard
## 7197                                              hard
## 7198                                        hardearned
## 7199                                              hate
## 7200                                              hate
## 7201                                              hear
## 7202                                              hear
## 7203                                              hear
## 7204                                              hear
## 7205                                              hear
## 7206                                              hear
## 7207                                              hear
## 7208                                              hear
## 7209                                              help
## 7210                                              help
## 7211                                              help
## 7212                                           helpful
## 7213                                             heres
## 7214                                               hey
## 7215                                              high
## 7216                                              high
## 7217                                            highly
## 7218                                          historic
## 7219                                        historical
## 7220                                           history
## 7221                                               hit
## 7222                                            hoagie
## 7223                                              hold
## 7224                                              hold
## 7225                                              hold
## 7226                                              hold
## 7227                                              holy
## 7228                                              home
## 7229                                            honest
## 7230                                            honest
## 7231                                          honestly
## 7232                                          honestly
## 7233                                          honestly
## 7234                                          honestly
## 7235                                          honestly
## 7236                                          honestly
## 7237                                          horrible
## 7238                                          horrible
## 7239                                          horrible
## 7240                                               hot
## 7241                                               hot
## 7242                                               hot
## 7243                                               hot
## 7244                                               hot
## 7245                                               hot
## 7246                                               hot
## 7247                                               hot
## 7248                                               hot
## 7249                                              hour
## 7250                                              hour
## 7251                                              hour
## 7252                                              hour
## 7253                                           however
## 7254                                           however
## 7255                                           however
## 7256                                           however
## 7257                                           however
## 7258                                           however
## 7259                                              huge
## 7260                                              huge
## 7261                                            hungry
## 7262                                              hunt
## 7263                                           husband
## 7264                                              hype
## 7265                                              hype
## 7266                                              hype
## 7267                                              hype
## 7268                                              hype
## 7269                                              hype
## 7270                                              hype
## 7271                                              hype
## 7272                                              hype
## 7273                                              hype
## 7274                                              hype
## 7275                                              hype
## 7276                                            iconic
## 7277                                                id
## 7278                                                id
## 7279                                                id
## 7280                                                id
## 7281                                                id
## 7282                                                id
## 7283                                              idea
## 7284                                               ill
## 7285                                               ill
## 7286                                               ill
## 7287                                               ill
## 7288                                           illegal
## 7289                                                im
## 7290                                                im
## 7291                                                im
## 7292                                                im
## 7293                                                im
## 7294                                                im
## 7295                                                im
## 7296                                                im
## 7297                                                im
## 7298                                                im
## 7299                                                im
## 7300                                                im
## 7301                                                im
## 7302                                                im
## 7303                                                im
## 7304                                                im
## 7305                                                im
## 7306                                                im
## 7307                                                im
## 7308                                                im
## 7309                                                im
## 7310                                           imagine
## 7311                                         important
## 7312                                           impress
## 7313                                           impress
## 7314                                        incredibly
## 7315                                            inside
## 7316                                            inside
## 7317                                            inside
## 7318                                           instead
## 7319                                           instead
## 7320                                           instead
## 7321                                           instead
## 7322                                           instead
## 7323                                           instead
## 7324                                          interest
## 7325                                              isnt
## 7326                                              isnt
## 7327                                              isnt
## 7328                                              isnt
## 7329                                              item
## 7330                                               ive
## 7331                                               ive
## 7332                                               ive
## 7333                                               ive
## 7334                                               ive
## 7335                                               ive
## 7336                                               ive
## 7337                                            jersey
## 7338                                             jimmy
## 7339                                              jims
## 7340                                              jims
## 7341                                               job
## 7342                                               joe
## 7343                                             joint
## 7344                                             juicy
## 7345                                             juicy
## 7346                                             juicy
## 7347                                             juicy
## 7348                                              just
## 7349                                              just
## 7350                                              just
## 7351                                              just
## 7352                                              just
## 7353                                              just
## 7354                                              just
## 7355                                              just
## 7356                                              just
## 7357                                              just
## 7358                                              just
## 7359                                              just
## 7360                                              just
## 7361                                              just
## 7362                                              just
## 7363                                              just
## 7364                                              just
## 7365                                              just
## 7366                                              just
## 7367                                              just
## 7368                                              just
## 7369                                              just
## 7370                                              just
## 7371                                              just
## 7372                                              just
## 7373                                              just
## 7374                                              just
## 7375                                              just
## 7376                                              just
## 7377                                              just
## 7378                                              just
## 7379                                              just
## 7380                                              just
## 7381                                              just
## 7382                                              just
## 7383                                              just
## 7384                                              just
## 7385                                              just
## 7386                                              just
## 7387                                              keep
## 7388                                              keep
## 7389                                              keep
## 7390                                              keep
## 7391                                              keep
## 7392                                              keep
## 7393                                              keep
## 7394                                           ketchup
## 7395                                           ketchup
## 7396                                               kid
## 7397                                              kill
## 7398                                              kind
## 7399                                              kind
## 7400                                              kind
## 7401                                              kind
## 7402                                              kind
## 7403                                             kinda
## 7404                                              know
## 7405                                              know
## 7406                                              know
## 7407                                              know
## 7408                                              know
## 7409                                              know
## 7410                                              know
## 7411                                              know
## 7412                                              know
## 7413                                              know
## 7414                                              know
## 7415                                              know
## 7416                                              know
## 7417                                              know
## 7418                                              know
## 7419                                              know
## 7420                                              know
## 7421                                              know
## 7422                                              lack
## 7423                                              lack
## 7424                                              lack
## 7425                                              lady
## 7426                                          language
## 7427                                          language
## 7428                                             large
## 7429                                             large
## 7430                                              last
## 7431                                              last
## 7432                                              last
## 7433                                              late
## 7434                                              late
## 7435                                              late
## 7436                                              lead
## 7437                                             learn
## 7438                                             leave
## 7439                                             leave
## 7440                                             leave
## 7441                                             leave
## 7442                                         legendary
## 7443                                             legit
## 7444                                              less
## 7445                                              less
## 7446                                              less
## 7447                                               let
## 7448                                               let
## 7449                                              life
## 7450                                             light
## 7451                                             light
## 7452                                              like
## 7453                                              like
## 7454                                              like
## 7455                                              like
## 7456                                              like
## 7457                                              like
## 7458                                              like
## 7459                                              like
## 7460                                              like
## 7461                                              like
## 7462                                              like
## 7463                                              like
## 7464                                              like
## 7465                                              like
## 7466                                              like
## 7467                                              like
## 7468                                              like
## 7469                                              like
## 7470                                              like
## 7471                                              like
## 7472                                              like
## 7473                                              like
## 7474                                              like
## 7475                                              like
## 7476                                              like
## 7477                                              like
## 7478                                              like
## 7479                                              like
## 7480                                              like
## 7481                                              like
## 7482                                              like
## 7483                                              like
## 7484                                              line
## 7485                                              line
## 7486                                              line
## 7487                                              line
## 7488                                              line
## 7489                                              line
## 7490                                              line
## 7491                                              line
## 7492                                              line
## 7493                                              line
## 7494                                              line
## 7495                                              line
## 7496                                              line
## 7497                                              line
## 7498                                              line
## 7499                                              line
## 7500                                              line
## 7501                                              line
## 7502                                              line
## 7503                                              line
## 7504                                              line
## 7505                                              line
## 7506                                              line
## 7507                                              line
## 7508                                              list
## 7509                                              list
## 7510                                         literally
## 7511                                            little
## 7512                                            little
## 7513                                            little
## 7514                                            little
## 7515                                            little
## 7516                                            little
## 7517                                            little
## 7518                                            little
## 7519                                            little
## 7520                                            little
## 7521                                            little
## 7522                                            little
## 7523                                            little
## 7524                                            little
## 7525                                            little
## 7526                                            little
## 7527                                            little
## 7528                                              live
## 7529                                              live
## 7530                                              live
## 7531                                              load
## 7532                                              loaf
## 7533                                             local
## 7534                                             local
## 7535                                             local
## 7536                                             local
## 7537                                             local
## 7538                                             local
## 7539                                             local
## 7540                                             local
## 7541                                             local
## 7542                                          location
## 7543                                          location
## 7544                                          location
## 7545                                               lol
## 7546                                              long
## 7547                                              long
## 7548                                              long
## 7549                                              long
## 7550                                              long
## 7551                                              long
## 7552                                              long
## 7553                                              long
## 7554                                              long
## 7555                                              long
## 7556                                              long
## 7557                                              long
## 7558                                              long
## 7559                                              long
## 7560                                              long
## 7561                                              long
## 7562                                              long
## 7563                                              look
## 7564                                              look
## 7565                                              look
## 7566                                              look
## 7567                                              look
## 7568                                              look
## 7569                                              look
## 7570                                              look
## 7571                                              look
## 7572                                              look
## 7573                                              look
## 7574                                              look
## 7575                                              look
## 7576                                              look
## 7577                                              lose
## 7578                                               lot
## 7579                                               lot
## 7580                                               lot
## 7581                                               lot
## 7582                                               lot
## 7583                                               lot
## 7584                                               lot
## 7585                                               lot
## 7586                                               lot
## 7587                                              love
## 7588                                              love
## 7589                                              love
## 7590                                              love
## 7591                                              love
## 7592                                              love
## 7593                                               low
## 7594                                           luckily
## 7595                                           luckily
## 7596                                             lucky
## 7597                                             lukes
## 7598                                             lukes
## 7599                                             lukes
## 7600                                             lukes
## 7601                                             lukes
## 7602                                             lukes
## 7603                                             lunch
## 7604                                             lunch
## 7605                                              lyft
## 7606                                               mad
## 7607                                              main
## 7608                                              make
## 7609                                              make
## 7610                                              make
## 7611                                              make
## 7612                                              make
## 7613                                              make
## 7614                                              make
## 7615                                              make
## 7616                                              make
## 7617                                              make
## 7618                                              make
## 7619                                              make
## 7620                                              make
## 7621                                              make
## 7622                                               man
## 7623                                               man
## 7624                                        management
## 7625                                              many
## 7626                                              many
## 7627                                              many
## 7628                                              many
## 7629                                          marinara
## 7630                                            market
## 7631                                               max
## 7632                                               may
## 7633                                               may
## 7634                                               may
## 7635                                               may
## 7636                                               may
## 7637                                               may
## 7638                                               may
## 7639                                               may
## 7640                                             maybe
## 7641                                             maybe
## 7642                                             maybe
## 7643                                             maybe
## 7644                                             maybe
## 7645                                             maybe
## 7646                                             maybe
## 7647                                              mean
## 7648                                              mean
## 7649                                              mean
## 7650                                              mean
## 7651                                              mean
## 7652                                              mean
## 7653                                              mean
## 7654                                              mean
## 7655                                              meat
## 7656                                              meat
## 7657                                              meat
## 7658                                              meat
## 7659                                              meat
## 7660                                              meat
## 7661                                              meat
## 7662                                              meat
## 7663                                              meat
## 7664                                              meat
## 7665                                              meat
## 7666                                              meat
## 7667                                              meat
## 7668                                              meat
## 7669                                              meat
## 7670                                              meat
## 7671                                              meat
## 7672                                              meat
## 7673                                              meat
## 7674                                              meat
## 7675                                              meat
## 7676                                              meat
## 7677                                              meat
## 7678                                              meat
## 7679                                              meat
## 7680                                              meat
## 7681                                              meat
## 7682                                              meat
## 7683                                              meat
## 7684                                              meat
## 7685                                              meat
## 7686                                              meat
## 7687                                              meat
## 7688                                              meet
## 7689                                              meet
## 7690                                               meh
## 7691                                               meh
## 7692                                               meh
## 7693                                              melt
## 7694                                            member
## 7695                                          memorial
## 7696                                           mention
## 7697                                              menu
## 7698                                              menu
## 7699                                             messy
## 7700                                              mile
## 7701                                           million
## 7702                                              mind
## 7703                                              mind
## 7704                                           minimal
## 7705                                             minus
## 7706                                            minute
## 7707                                            minute
## 7708                                            minute
## 7709                                            minute
## 7710                                            minute
## 7711                                            minute
## 7712                                              miss
## 7713                                              miss
## 7714                                              miss
## 7715                                           mistake
## 7716                                               mix
## 7717                                               mix
## 7718                                             money
## 7719                                             money
## 7720                                             moral
## 7721                                            mostly
## 7722                                              move
## 7723                                              move
## 7724                                              move
## 7725                                              much
## 7726                                              much
## 7727                                              much
## 7728                                              much
## 7729                                              much
## 7730                                              much
## 7731                                              much
## 7732                                              much
## 7733                                              much
## 7734                                              much
## 7735                                              much
## 7736                                              much
## 7737                                              much
## 7738                                          multiple
## 7739                                          multiple
## 7740                                            museum
## 7741                                          mushroom
## 7742                                          mushroom
## 7743                                          mushroom
## 7744                                              must
## 7745                                              must
## 7746                                              must
## 7747                                              must
## 7748                                              must
## 7749                                              name
## 7750                                              name
## 7751                                            napkin
## 7752                                             nasty
## 7753                                             nasty
## 7754                                             nasty
## 7755                                            native
## 7756                                            native
## 7757                                            native
## 7758                                            native
## 7759                                              near
## 7760                                              near
## 7761                                            nearly
## 7762                                              need
## 7763                                              need
## 7764                                              need
## 7765                                          negative
## 7766                                      neighborhood
## 7767                                      neighborhood
## 7768                                           neither
## 7769                                              neon
## 7770                                             never
## 7771                                             never
## 7772                                             never
## 7773                                             never
## 7774                                             never
## 7775                                             never
## 7776                                             never
## 7777                                             never
## 7778                                             never
## 7779                                             never
## 7780                                             never
## 7781                                             never
## 7782                                               new
## 7783                                               new
## 7784                                               new
## 7785                                               new
## 7786                                               new
## 7787                                              nice
## 7788                                              nice
## 7789                                              nice
## 7790                                              nice
## 7791                                              nice
## 7792                                              nice
## 7793                                              nice
## 7794                                              nice
## 7795                                              nice
## 7796                                              nice
## 7797                                             night
## 7798                                             night
## 7799                                             night
## 7800                                             night
## 7801                                             night
## 7802                                               non
## 7803                                              note
## 7804                                              note
## 7805                                           nothing
## 7806                                           nothing
## 7807                                           nothing
## 7808                                            notice
## 7809                                               now
## 7810                                               now
## 7811                                               now
## 7812                                               now
## 7813                                               now
## 7814                                               now
## 7815                                               now
## 7816                                              nuff
## 7817                                                ny
## 7818                                               nyc
## 7819                                               nyc
## 7820                                         obnoxious
## 7821                                         obviously
## 7822                                             oddly
## 7823                                                oh
## 7824                                                oh
## 7825                                                oh
## 7826                                                oh
## 7827                                               oil
## 7828                                              okay
## 7829                                              okay
## 7830                                              okay
## 7831                                              okay
## 7832                                              okay
## 7833                                              okay
## 7834                                              okay
## 7835                                              okay
## 7836                                               old
## 7837                                               old
## 7838                                               old
## 7839                                               old
## 7840                                               one
## 7841                                               one
## 7842                                               one
## 7843                                               one
## 7844                                               one
## 7845                                               one
## 7846                                               one
## 7847                                               one
## 7848                                               one
## 7849                                               one
## 7850                                               one
## 7851                                               one
## 7852                                               one
## 7853                                               one
## 7854                                               one
## 7855                                               one
## 7856                                               one
## 7857                                               one
## 7858                                               one
## 7859                                             onion
## 7860                                             onion
## 7861                                             onion
## 7862                                             onion
## 7863                                             onion
## 7864                                             onion
## 7865                                             onion
## 7866                                             onion
## 7867                                             onion
## 7868                                             onion
## 7869                                             onion
## 7870                                             onion
## 7871                                             onion
## 7872                                             onion
## 7873                                             onion
## 7874                                             onion
## 7875                                             onion
## 7876                                             onion
## 7877                                             onion
## 7878                                             onion
## 7879                                             onion
## 7880                                             onion
## 7881                                              open
## 7882                                              open
## 7883                                           opinion
## 7884                                           opinion
## 7885                                       opportunity
## 7886                                            oppose
## 7887                                               opt
## 7888                                            option
## 7889                                            option
## 7890                                            option
## 7891                                            orange
## 7892                                             order
## 7893                                             order
## 7894                                             order
## 7895                                             order
## 7896                                             order
## 7897                                             order
## 7898                                             order
## 7899                                             order
## 7900                                             order
## 7901                                             order
## 7902                                             order
## 7903                                             order
## 7904                                             order
## 7905                                             order
## 7906                                             order
## 7907                                             order
## 7908                                             order
## 7909                                             order
## 7910                                             order
## 7911                                             order
## 7912                                          original
## 7913                                             other
## 7914                                         otherwise
## 7915                                           outdoor
## 7916                                           outside
## 7917                                           outside
## 7918                                           outside
## 7919                                           overall
## 7920                                           overall
## 7921                                           overall
## 7922                                           overall
## 7923                                            overly
## 7924                                        overpriced
## 7925                                        overpriced
## 7926                                        overpriced
## 7927                                          overrate
## 7928                                          overrate
## 7929                                          overrate
## 7930                                               owe
## 7931                                             owner
## 7932                                             owner
## 7933                                             owner
## 7934                                             paper
## 7935                                          parallel
## 7936                                              park
## 7937                                              park
## 7938                                              park
## 7939                                              park
## 7940                                              park
## 7941                                              park
## 7942                                              park
## 7943                                              park
## 7944                                              park
## 7945                                              park
## 7946                                              part
## 7947                                              part
## 7948                                         partially
## 7949                                        particular
## 7950                                              pass
## 7951                                              pass
## 7952                                              pass
## 7953                                              pass
## 7954                                              past
## 7955                                               pat
## 7956                                               pat
## 7957                                               pat
## 7958                                               pat
## 7959                                               pat
## 7960                                               pat
## 7961                                               pat
## 7962                                               pat
## 7963                                               pat
## 7964                                               pat
## 7965                                               pat
## 7966                                               pat
## 7967                                               pat
## 7968                                               pat
## 7969                                               pat
## 7970                                               pat
## 7971                                               pat
## 7972                                               pat
## 7973                                               pat
## 7974                                               pat
## 7975                                               pat
## 7976                                               pat
## 7977                                               pat
## 7978                                               pat
## 7979                                               pat
## 7980                                               pat
## 7981                                               pat
## 7982                                               pat
## 7983                                               pat
## 7984                                               pat
## 7985                                               pat
## 7986                                               pat
## 7987                                               pat
## 7988                                               pat
## 7989                                               pat
## 7990                                               pat
## 7991                                               pat
## 7992                                               pat
## 7993                                               pat
## 7994                                               pat
## 7995                                               pat
## 7996                                               pat
## 7997                                               pat
## 7998                                               pat
## 7999                                               pat
## 8000                                         patronize
## 8001                                               pay
## 8002                                               pay
## 8003                                               pay
## 8004                                               pay
## 8005                                               pay
## 8006                                               pay
## 8007                                               pay
## 8008                                               pay
## 8009                                            people
## 8010                                            people
## 8011                                            people
## 8012                                            people
## 8013                                            people
## 8014                                            people
## 8015                                            people
## 8016                                            people
## 8017                                            people
## 8018                                            people
## 8019                                            people
## 8020                                            people
## 8021                                            people
## 8022                                            people
## 8023                                            pepper
## 8024                                            pepper
## 8025                                            pepper
## 8026                                            pepper
## 8027                                            pepper
## 8028                                            pepper
## 8029                                            pepper
## 8030                                               per
## 8031                                           perfect
## 8032                                            person
## 8033                                          personal
## 8034                                      philadelphia
## 8035                                      philadelphia
## 8036                                      philadelphia
## 8037                                      philadelphia
## 8038                                      philadelphia
## 8039                                      philadelphia
## 8040                                      philadelphia
## 8041                                      philadelphia
## 8042                                      philadelphia
## 8043                                      philadelphia
## 8044                                      philadelphia
## 8045                                     philadelphian
## 8046                                            philly
## 8047                                            philly
## 8048                                            philly
## 8049                                            philly
## 8050                                            philly
## 8051                                            philly
## 8052                                            philly
## 8053                                            philly
## 8054                                            philly
## 8055                                            philly
## 8056                                            philly
## 8057                                            philly
## 8058                                            philly
## 8059                                            philly
## 8060                                            philly
## 8061                                            philly
## 8062                                            philly
## 8063                                            philly
## 8064                                            philly
## 8065                                            philly
## 8066                                            philly
## 8067                                            philly
## 8068                                            philly
## 8069                                            philly
## 8070                                            philly
## 8071                                            philly
## 8072                                            philly
## 8073                                            philly
## 8074                                            philly
## 8075                                            philly
## 8076                                            philly
## 8077                                            philly
## 8078                                            philly
## 8079                                            philly
## 8080                                            philly
## 8081                                            philly
## 8082                                            philly
## 8083                                            philly
## 8084                                            philly
## 8085                                           phillys
## 8086                                               phl
## 8087                                             photo
## 8088                                           picture
## 8089                                             piece
## 8090                                             piece
## 8091                                             piece
## 8092                                             piece
## 8093                                             piece
## 8094                                             pizza
## 8095                                             place
## 8096                                             place
## 8097                                             place
## 8098                                             place
## 8099                                             place
## 8100                                             place
## 8101                                             place
## 8102                                             place
## 8103                                             place
## 8104                                             place
## 8105                                             place
## 8106                                             place
## 8107                                             place
## 8108                                             place
## 8109                                             place
## 8110                                             place
## 8111                                             place
## 8112                                             place
## 8113                                             place
## 8114                                             place
## 8115                                             place
## 8116                                             place
## 8117                                             place
## 8118                                             place
## 8119                                             place
## 8120                                             place
## 8121                                             place
## 8122                                             place
## 8123                                             place
## 8124                                             place
## 8125                                             place
## 8126                                             place
## 8127                                             place
## 8128                                             place
## 8129                                             plain
## 8130                                             plain
## 8131                                              plan
## 8132                                          pleasant
## 8133                                            please
## 8134                                            please
## 8135                                            please
## 8136                                            please
## 8137                                            please
## 8138                                            plenty
## 8139                                              plus
## 8140                                              plus
## 8141                                              plus
## 8142                                              plus
## 8143                                              plus
## 8144                                                pm
## 8145                                             point
## 8146                                             point
## 8147                                            police
## 8148                                           politic
## 8149                                         political
## 8150                                              poor
## 8151                                               pop
## 8152                                           popular
## 8153                                              pork
## 8154                                          portland
## 8155                                              post
## 8156                                            prefer
## 8157                                            prefer
## 8158                                            prefer
## 8159                                           prepare
## 8160                                           prepare
## 8161                                            pretty
## 8162                                            pretty
## 8163                                            pretty
## 8164                                            pretty
## 8165                                            pretty
## 8166                                            pretty
## 8167                                            pretty
## 8168                                          previous
## 8169                                          previous
## 8170                                             price
## 8171                                             price
## 8172                                             price
## 8173                                             price
## 8174                                             price
## 8175                                             price
## 8176                                             price
## 8177                                             price
## 8178                                             price
## 8179                                             price
## 8180                                            pricey
## 8181                                             prime
## 8182                                          probably
## 8183                                          probably
## 8184                                          probably
## 8185                                          probably
## 8186                                           problem
## 8187                                           product
## 8188                                           product
## 8189                                       prominently
## 8190                                            proper
## 8191                                            proper
## 8192                                             proud
## 8193                                              prov
## 8194                                           provide
## 8195                                         provolone
## 8196                                         provolone
## 8197                                         provolone
## 8198                                         provolone
## 8199                                         provolone
## 8200                                         provolone
## 8201                                         provolone
## 8202                                           provwit
## 8203                                              pull
## 8204                                          purchase
## 8205                                               put
## 8206                                               put
## 8207                                               put
## 8208                                               put
## 8209                                               put
## 8210                                               put
## 8211                                               put
## 8212                                               put
## 8213                                               put
## 8214                                           quality
## 8215                                           quality
## 8216                                           quality
## 8217                                          quantity
## 8218                                           quickly
## 8219                                             quite
## 8220                                            racist
## 8221                                            racist
## 8222                                            racist
## 8223                                             raise
## 8224                                              rate
## 8225                                              rate
## 8226                                            rather
## 8227                                            rather
## 8228                                              read
## 8229                                              read
## 8230                                              read
## 8231                                              read
## 8232                                              read
## 8233                                             ready
## 8234                                              real
## 8235                                              real
## 8236                                              real
## 8237                                              real
## 8238                                              real
## 8239                                            really
## 8240                                            really
## 8241                                            really
## 8242                                            really
## 8243                                            really
## 8244                                            really
## 8245                                            really
## 8246                                            really
## 8247                                            really
## 8248                                            really
## 8249                                            really
## 8250                                            really
## 8251                                            really
## 8252                                            really
## 8253                                            really
## 8254                                            really
## 8255                                            really
## 8256                                            really
## 8257                                            really
## 8258                                            really
## 8259                                            really
## 8260                                            really
## 8261                                            reason
## 8262                                            reason
## 8263                                            reason
## 8264                                            reason
## 8265                                            reason
## 8266                                           receive
## 8267                                            recent
## 8268                                          recently
## 8269                                         recommend
## 8270                                         recommend
## 8271                                         recommend
## 8272                                         recommend
## 8273                                         recommend
## 8274                                               red
## 8275                                            redeem
## 8276                                             reign
## 8277                                          relative
## 8278                                          remember
## 8279                                          remember
## 8280                                              rest
## 8281                                        restaurant
## 8282                                        restaurant
## 8283                                        restaurant
## 8284                                        restaurant
## 8285                                            return
## 8286                                            review
## 8287                                            review
## 8288                                            review
## 8289                                            review
## 8290                                            review
## 8291                                            review
## 8292                                            review
## 8293                                            review
## 8294                                            review
## 8295                                            review
## 8296                                            review
## 8297                                            review
## 8298                                            review
## 8299                                        ridiculous
## 8300                                        ridiculous
## 8301                                             right
## 8302                                             right
## 8303                                             right
## 8304                                             right
## 8305                                             right
## 8306                                             right
## 8307                                             right
## 8308                                             right
## 8309                                             right
## 8310                                             right
## 8311                                               rip
## 8312                                               rip
## 8313                                             rocky
## 8314                                              roll
## 8315                                              roll
## 8316                                              roll
## 8317                                              roll
## 8318                                              roll
## 8319                                              roll
## 8320                                              roll
## 8321                                           rubbery
## 8322                                              rude
## 8323                                              rude
## 8324                                              rude
## 8325                                              rude
## 8326                                              rude
## 8327                                              rude
## 8328                                              rude
## 8329                                              rude
## 8330                                              rude
## 8331                                              rude
## 8332                                              rude
## 8333                                              rude
## 8334                                               run
## 8335                                               run
## 8336                                               run
## 8337                                              rush
## 8338                                               sad
## 8339                                          sandwich
## 8340                                          sandwich
## 8341                                          sandwich
## 8342                                          sandwich
## 8343                                          sandwich
## 8344                                          sandwich
## 8345                                          sandwich
## 8346                                          sandwich
## 8347                                          sandwich
## 8348                                          sandwich
## 8349                                          sandwich
## 8350                                          sandwich
## 8351                                          sandwich
## 8352                                          sandwich
## 8353                                          sandwich
## 8354                                          sandwich
## 8355                                          sandwich
## 8356                                          sandwich
## 8357                                          sandwich
## 8358                                          sandwich
## 8359                                          sandwich
## 8360                                          sandwich
## 8361                                          sandwich
## 8362                                          sandwich
## 8363                                          sandwich
## 8364                                          sandwich
## 8365                                          sandwich
## 8366                                          sandwich
## 8367                                          sandwich
## 8368                                          sandwich
## 8369                                          sandwich
## 8370                                          sandwich
## 8371                                          sandwich
## 8372                                          sandwich
## 8373                                          sandwich
## 8374                                          sandwich
## 8375                                          sandwich
## 8376                                          sandwich
## 8377                                          sandwich
## 8378                                          sandwich
## 8379                                             sarah
## 8380                                          saturday
## 8381                                             sauce
## 8382                                             sauce
## 8383                                              save
## 8384                                              save
## 8385                                               say
## 8386                                               say
## 8387                                               say
## 8388                                               say
## 8389                                               say
## 8390                                               say
## 8391                                               say
## 8392                                               say
## 8393                                               say
## 8394                                               say
## 8395                                               say
## 8396                                               say
## 8397                                               say
## 8398                                               say
## 8399                                               say
## 8400                                               say
## 8401                                               say
## 8402                                               say
## 8403                                               say
## 8404                                               say
## 8405                                               say
## 8406                                               say
## 8407                                               say
## 8408                                               say
## 8409                                               say
## 8410                                               say
## 8411                                               say
## 8412                                            school
## 8413                                            season
## 8414                                            season
## 8415                                              seat
## 8416                                              seat
## 8417                                              seat
## 8418                                              seat
## 8419                                              seat
## 8420                                               see
## 8421                                               see
## 8422                                               see
## 8423                                               see
## 8424                                               see
## 8425                                               see
## 8426                                               see
## 8427                                               see
## 8428                                               see
## 8429                                              seem
## 8430                                              seem
## 8431                                              seem
## 8432                                              seem
## 8433                                              seem
## 8434                                         seriously
## 8435                                         seriously
## 8436                                         seriously
## 8437                                         seriously
## 8438                                             serve
## 8439                                             serve
## 8440                                             serve
## 8441                                             serve
## 8442                                             serve
## 8443                                           service
## 8444                                           service
## 8445                                           service
## 8446                                           service
## 8447                                           service
## 8448                                           service
## 8449                                           service
## 8450                                           service
## 8451                                           service
## 8452                                           service
## 8453                                               set
## 8454                                           several
## 8455                                             share
## 8456                                             shiny
## 8457                                             short
## 8458                                             short
## 8459                                              show
## 8460                                              side
## 8461                                              side
## 8462                                              side
## 8463                                              side
## 8464                                              side
## 8465                                             sight
## 8466                                              sign
## 8467                                              sign
## 8468                                              sign
## 8469                                              sign
## 8470                                              sign
## 8471                                              sign
## 8472                                              sign
## 8473                                              sign
## 8474                                              sign
## 8475                                              sign
## 8476                                           similar
## 8477                                           similar
## 8478                                            simple
## 8479                                            simply
## 8480                                             since
## 8481                                             since
## 8482                                             since
## 8483                                             since
## 8484                                             since
## 8485                                             since
## 8486                                               sit
## 8487                                               sit
## 8488                                               sit
## 8489                                               sit
## 8490                                              size
## 8491                                            skimpy
## 8492                                              slab
## 8493                                              slap
## 8494                                             slice
## 8495                                             slice
## 8496                                             slice
## 8497                                             slice
## 8498                                             slice
## 8499                                             slice
## 8500                                             slice
## 8501                                             slice
## 8502                                             slice
## 8503                                          slightly
## 8504                                          slightly
## 8505                                          slightly
## 8506                                          slightly
## 8507                                             small
## 8508                                             small
## 8509                                             small
## 8510                                             small
## 8511                                             smell
## 8512                                            smelly
## 8513                                              soak
## 8514                                              soda
## 8515                                              soft
## 8516                                              soft
## 8517                                             soggy
## 8518                                             soggy
## 8519                                             soggy
## 8520                                             soggy
## 8521                                             soggy
## 8522                                             soggy
## 8523                                             solid
## 8524                                             solid
## 8525                                             solid
## 8526                                           someone
## 8527                                           someone
## 8528                                           someone
## 8529                                         something
## 8530                                         something
## 8531                                         something
## 8532                                         something
## 8533                                         something
## 8534                                         something
## 8535                                         something
## 8536                                         something
## 8537                                         something
## 8538                                         something
## 8539                                         something
## 8540                                              soon
## 8541                                             sorry
## 8542                                             sorry
## 8543                                             sorry
## 8544                                          southern
## 8545                                             speak
## 8546                                             speak
## 8547                                             speak
## 8548                                             speak
## 8549                                             speak
## 8550                                             speak
## 8551                                           special
## 8552                                           special
## 8553                                           special
## 8554                                           special
## 8555                                             spicy
## 8556                                             spicy
## 8557                                             split
## 8558                                             split
## 8559                                             split
## 8560                                             sport
## 8561                                              spot
## 8562                                              spot
## 8563                                              spot
## 8564                                              spot
## 8565                                              spot
## 8566                                              spot
## 8567                                              spot
## 8568                                              spot
## 8569                                              spot
## 8570                                              spot
## 8571                                            spread
## 8572                                                st
## 8573                                                st
## 8574                                             staff
## 8575                                             staff
## 8576                                             staff
## 8577                                             staff
## 8578                                             staff
## 8579                                             staff
## 8580                                             staff
## 8581                                             staff
## 8582                                             stale
## 8583                                             stand
## 8584                                             stand
## 8585                                             stand
## 8586                                             stand
## 8587                                             stand
## 8588                                          standard
## 8589                                            staple
## 8590                                              star
## 8591                                              star
## 8592                                              star
## 8593                                              star
## 8594                                              star
## 8595                                              star
## 8596                                              star
## 8597                                              star
## 8598                                              star
## 8599                                              star
## 8600                                              star
## 8601                                              star
## 8602                                              star
## 8603                                             start
## 8604                                             state
## 8605                                             state
## 8606                                              stay
## 8607                                             steak
## 8608                                             steak
## 8609                                             steak
## 8610                                             steak
## 8611                                             steak
## 8612                                             steak
## 8613                                             steak
## 8614                                             steak
## 8615                                             steak
## 8616                                             steak
## 8617                                             steak
## 8618                                             steak
## 8619                                             steak
## 8620                                             steak
## 8621                                             steak
## 8622                                             steak
## 8623                                             steak
## 8624                                             steak
## 8625                                             steak
## 8626                                             steak
## 8627                                             steak
## 8628                                             steak
## 8629                                             steak
## 8630                                             steak
## 8631                                             steak
## 8632                                             steak
## 8633                                             steak
## 8634                                             steak
## 8635                                             steak
## 8636                                             steak
## 8637                                             steak
## 8638                                             steak
## 8639                                             steak
## 8640                                             steak
## 8641                                             steak
## 8642                                             steak
## 8643                                             steak
## 8644                                             steak
## 8645                                             steak
## 8646                                             steak
## 8647                                             steak
## 8648                                             steak
## 8649                                             steak
## 8650                                             steak
## 8651                                             steak
## 8652                                             steak
## 8653                                             steak
## 8654                                             steak
## 8655                                             steak
## 8656                                             steak
## 8657                                             steak
## 8658                                             steak
## 8659                                             steak
## 8660                                             steak
## 8661                                             steak
## 8662                                             steak
## 8663                                             steak
## 8664                                             steak
## 8665                                             steak
## 8666                                             steak
## 8667                                             steak
## 8668                                             steak
## 8669                                             steak
## 8670                                             steak
## 8671                                             steak
## 8672                                             steak
## 8673                                             steak
## 8674                                             steak
## 8675                                             steak
## 8676                                             steak
## 8677                                             steak
## 8678                                             steak
## 8679                                             steak
## 8680                                             steak
## 8681                                             steak
## 8682                                              step
## 8683                                             stick
## 8684                                             stick
## 8685                                           sticker
## 8686                                             still
## 8687                                             still
## 8688                                             still
## 8689                                             still
## 8690                                             still
## 8691                                             still
## 8692                                             still
## 8693                                             still
## 8694                                             still
## 8695                                             still
## 8696                                             still
## 8697                                             still
## 8698                                             still
## 8699                                             still
## 8700                                             still
## 8701                                           stomach
## 8702                                           stomach
## 8703                                             stone
## 8704                                              stop
## 8705                                              stop
## 8706                                              stop
## 8707                                              stop
## 8708                                              stop
## 8709                                              stop
## 8710                                              stop
## 8711                                              stop
## 8712                                              stop
## 8713                                              stop
## 8714                                             store
## 8715                                             story
## 8716                                          straight
## 8717                                            street
## 8718                                            street
## 8719                                            street
## 8720                                            street
## 8721                                            street
## 8722                                            street
## 8723                                            street
## 8724                                            street
## 8725                                            street
## 8726                                            street
## 8727                                            street
## 8728                                            street
## 8729                                            street
## 8730                                            street
## 8731                                            street
## 8732                                            street
## 8733                                            street
## 8734                                            street
## 8735                                            street
## 8736                                            street
## 8737                                            street
## 8738                                            street
## 8739                                            street
## 8740                                             strip
## 8741                                             stuff
## 8742                                             style
## 8743                                             style
## 8744                                               sub
## 8745                                               sub
## 8746                                            subpar
## 8747                                            subpar
## 8748                                            subway
## 8749                                              suck
## 8750                                           suggest
## 8751                                            summer
## 8752                                            sunday
## 8753                                             super
## 8754                                             super
## 8755                                             super
## 8756                                           support
## 8757                                           support
## 8758                                           support
## 8759                                              sure
## 8760                                              sure
## 8761                                              sure
## 8762                                              sure
## 8763                                              sure
## 8764                                              sure
## 8765                                              sure
## 8766                                              sure
## 8767                                              sure
## 8768                                              sure
## 8769                                              sure
## 8770                                          surprise
## 8771                                      surprisingly
## 8772                                             table
## 8773                                             table
## 8774                                               tad
## 8775                                              take
## 8776                                              take
## 8777                                              take
## 8778                                              take
## 8779                                              take
## 8780                                              take
## 8781                                              take
## 8782                                              take
## 8783                                              take
## 8784                                              take
## 8785                                              take
## 8786                                              talk
## 8787                                              talk
## 8788                                             taste
## 8789                                             taste
## 8790                                             taste
## 8791                                             taste
## 8792                                             taste
## 8793                                             taste
## 8794                                             taste
## 8795                                             taste
## 8796                                             taste
## 8797                                             taste
## 8798                                         tasteless
## 8799                                             tasty
## 8800                                             tasty
## 8801                                             tasty
## 8802                                               tea
## 8803                                              tell
## 8804                                              tell
## 8805                                              tell
## 8806                                              tell
## 8807                                              tell
## 8808                                              tell
## 8809                                              tell
## 8810                                              tell
## 8811                                              tell
## 8812                                              tell
## 8813                                              tell
## 8814                                               ten
## 8815                                            tender
## 8816                                            tender
## 8817                                              term
## 8818                                          terrible
## 8819                                          terrible
## 8820                                          terrible
## 8821                                          terrible
## 8822                                              test
## 8823                                              test
## 8824                                              test
## 8825                                               tha
## 8826                                             thank
## 8827                                             thats
## 8828                                             thats
## 8829                                             thats
## 8830                                             thats
## 8831                                             thats
## 8832                                             thats
## 8833                                             thats
## 8834                                            theres
## 8835                                            theres
## 8836                                            theres
## 8837                                            theres
## 8838                                            theres
## 8839                                            theres
## 8840                                            theres
## 8841                                            theres
## 8842                                            theyre
## 8843                                            theyre
## 8844                                            theyre
## 8845                                            theyre
## 8846                                             thick
## 8847                                              thin
## 8848                                              thin
## 8849                                              thin
## 8850                                             thing
## 8851                                             thing
## 8852                                             thing
## 8853                                             thing
## 8854                                             thing
## 8855                                             thing
## 8856                                             thing
## 8857                                             thing
## 8858                                             thing
## 8859                                             thing
## 8860                                             thing
## 8861                                             thing
## 8862                                             thing
## 8863                                             think
## 8864                                             think
## 8865                                             think
## 8866                                             think
## 8867                                             think
## 8868                                             think
## 8869                                             think
## 8870                                             think
## 8871                                             think
## 8872                                             think
## 8873                                             think
## 8874                                             think
## 8875                                             think
## 8876                                             think
## 8877                                            though
## 8878                                            though
## 8879                                            though
## 8880                                            though
## 8881                                            though
## 8882                                            though
## 8883                                            though
## 8884                                          thousand
## 8885                                             three
## 8886                                             three
## 8887                                             three
## 8888                                             three
## 8889                                             three
## 8890                                             throw
## 8891                                              time
## 8892                                              time
## 8893                                              time
## 8894                                              time
## 8895                                              time
## 8896                                              time
## 8897                                              time
## 8898                                              time
## 8899                                              time
## 8900                                              time
## 8901                                              time
## 8902                                              time
## 8903                                              time
## 8904                                              time
## 8905                                              tiny
## 8906                                               tip
## 8907                                               tip
## 8908                                             today
## 8909                                             today
## 8910                                          together
## 8911                                               ton
## 8912                                               ton
## 8913                                               top
## 8914                                               top
## 8915                                               top
## 8916                                               top
## 8917                                             total
## 8918                                             total
## 8919                                           totally
## 8920                                             tough
## 8921                                             tough
## 8922                                             tough
## 8923                                             tough
## 8924                                             tough
## 8925                                             tough
## 8926                                              tour
## 8927                                           tourist
## 8928                                           tourist
## 8929                                           tourist
## 8930                                           tourist
## 8931                                           tourist
## 8932                                           tourist
## 8933                                           tourist
## 8934                                           tourist
## 8935                                           tourist
## 8936                                           tourist
## 8937                                           tourist
## 8938                                           towards
## 8939                                              town
## 8940                                              town
## 8941                                              town
## 8942                                              town
## 8943                                              town
## 8944                                           towners
## 8945                                         tradition
## 8946                                       traditional
## 8947                                       traditional
## 8948                                              trap
## 8949                                              trap
## 8950                                              trap
## 8951                                              trap
## 8952                                              trap
## 8953                                              trap
## 8954                                              trap
## 8955                                              trap
## 8956                                              trap
## 8957                                              trap
## 8958                                              trap
## 8959                                              trap
## 8960                                            travel
## 8961                                            travel
## 8962                                              trip
## 8963                                              trip
## 8964                                              trip
## 8965                                              trip
## 8966                                              trip
## 8967                                              trip
## 8968                                              trip
## 8969                                              trip
## 8970                                              trip
## 8971                                             truly
## 8972                                               try
## 8973                                               try
## 8974                                               try
## 8975                                               try
## 8976                                               try
## 8977                                               try
## 8978                                               try
## 8979                                               try
## 8980                                               try
## 8981                                               try
## 8982                                               try
## 8983                                               try
## 8984                                               try
## 8985                                               try
## 8986                                               try
## 8987                                               try
## 8988                                               try
## 8989                                               try
## 8990                                               try
## 8991                                               try
## 8992                                               try
## 8993                                               try
## 8994                                               try
## 8995                                               try
## 8996                                              turf
## 8997                                             twice
## 8998                                               two
## 8999                                               two
## 9000                                               two
## 9001                                               two
## 9002                                               two
## 9003                                               two
## 9004                                              type
## 9005                                                um
## 9006                                       undercooked
## 9007                                        understand
## 9008                                        understand
## 9009                                        understand
## 9010                                        understand
## 9011                                            unless
## 9012                                          unmelted
## 9013                                              upon
## 9014                                                us
## 9015                                                us
## 9016                                                us
## 9017                                                us
## 9018                                                us
## 9019                                               use
## 9020                                               use
## 9021                                               use
## 9022                                               use
## 9023                                               use
## 9024                                               use
## 9025                                               use
## 9026                                               use
## 9027                                               use
## 9028                                               use
## 9029                                             utter
## 9030                                                 v
## 9031                                          vacation
## 9032                                           variety
## 9033                                             vento
## 9034                                           verdict
## 9035                                              vibe
## 9036                                             visit
## 9037                                             visit
## 9038                                             visit
## 9039                                             visit
## 9040                                             visit
## 9041                                             visit
## 9042                                             visit
## 9043                                             visit
## 9044                                              vote
## 9045                                                 w
## 9046                                              wait
## 9047                                              wait
## 9048                                              wait
## 9049                                              wait
## 9050                                              wait
## 9051                                              wait
## 9052                                              wait
## 9053                                              walk
## 9054                                              walk
## 9055                                              walk
## 9056                                              walk
## 9057                                             wanna
## 9058                                              want
## 9059                                              want
## 9060                                              want
## 9061                                              want
## 9062                                              want
## 9063                                              want
## 9064                                              want
## 9065                                              want
## 9066                                              want
## 9067                                              warm
## 9068                                              wash
## 9069                                             wasnt
## 9070                                             wasnt
## 9071                                             wasnt
## 9072                                             wasnt
## 9073                                             wasnt
## 9074                                             wasnt
## 9075                                             wasnt
## 9076                                             wasnt
## 9077                                             wasnt
## 9078                                             wasnt
## 9079                                             watch
## 9080                                             watch
## 9081                                             watch
## 9082                                             water
## 9083                                               way
## 9084                                               way
## 9085                                               way
## 9086                                               way
## 9087                                               way
## 9088                                               way
## 9089                                               way
## 9090                                               way
## 9091                                               way
## 9092                                               way
## 9093                                               way
## 9094                                               way
## 9095                                               way
## 9096                                               way
## 9097                                               way
## 9098                                           weather
## 9099                                               wed
## 9100                                           weekend
## 9101                                           weekend
## 9102                                            werent
## 9103                                            werent
## 9104                                              west
## 9105                                          whatever
## 9106                                             whats
## 9107                                           whereas
## 9108                                             white
## 9109                                              whiz
## 9110                                              whiz
## 9111                                              whiz
## 9112                                              whiz
## 9113                                              whiz
## 9114                                              whiz
## 9115                                              whiz
## 9116                                              whiz
## 9117                                              whiz
## 9118                                              whiz
## 9119                                              whiz
## 9120                                              whiz
## 9121                                              whiz
## 9122                                              whiz
## 9123                                              whiz
## 9124                                              whiz
## 9125                                              whiz
## 9126                                              whiz
## 9127                                              whiz
## 9128                                             whole
## 9129                                             whole
## 9130                                             whole
## 9131                                             whole
## 9132                                              wife
## 9133                                              wife
## 9134                                              wife
## 9135                                              wife
## 9136                                              will
## 9137                                              will
## 9138                                              will
## 9139                                              will
## 9140                                              will
## 9141                                              will
## 9142                                              will
## 9143                                              will
## 9144                                              will
## 9145                                              will
## 9146                                               win
## 9147                                              wind
## 9148                                            window
## 9149                                            window
## 9150                                            window
## 9151                                            window
## 9152                                            window
## 9153                                            window
## 9154                                            window
## 9155                                            window
## 9156                                            window
## 9157                                            window
## 9158                                            winter
## 9159                                              wish
## 9160                                              wish
## 9161                                               wit
## 9162                                               wit
## 9163                                               wit
## 9164                                               wit
## 9165                                               wit
## 9166                                               wit
## 9167                                               wit
## 9168                                           without
## 9169                                               wiz
## 9170                                               wiz
## 9171                                               wiz
## 9172                                               wiz
## 9173                                               wiz
## 9174                                               wiz
## 9175                                               wiz
## 9176                                               wiz
## 9177                                               wiz
## 9178                                               wiz
## 9179                                               wiz
## 9180                                               wiz
## 9181                                             woman
## 9182                                            wonder
## 9183                                              wont
## 9184                                              wont
## 9185                                              wont
## 9186                                              word
## 9187                                              work
## 9188                                              work
## 9189                                              work
## 9190                                              work
## 9191                                              work
## 9192                                             world
## 9193                                             worth
## 9194                                             worth
## 9195                                             worth
## 9196                                             worth
## 9197                                             worth
## 9198                                             worth
## 9199                                             worth
## 9200                                             worth
## 9201                                           wouldnt
## 9202                                           wouldnt
## 9203                                           wouldnt
## 9204                                           wouldnt
## 9205                                           wouldnt
## 9206                                           wouldnt
## 9207                                           wouldnt
## 9208                                           wouldve
## 9209                                               wow
## 9210                                              wrap
## 9211                                             write
## 9212                                             wrong
## 9213                                             wrong
## 9214                                             wrong
## 9215                                             wrong
## 9216                                              year
## 9217                                              year
## 9218                                              year
## 9219                                              year
## 9220                                              year
## 9221                                              year
## 9222                                              year
## 9223                                              year
## 9224                                              yell
## 9225                                              yelp
## 9226                                              yelp
## 9227                                               yes
## 9228                                               yes
## 9229                                               yes
## 9230                                               yes
## 9231                                               yes
## 9232                                               yet
## 9233                                             youll
## 9234                                             youll
## 9235                                             youll
## 9236                                             youre
## 9237                                             youre
## 9238                                             youre
## 9239                                             youre
## 9240                                             youre
## 9241                                             youve
## 9242                                               yum
## 9243                                                 2
## 9244                                                 2
## 9245                                                 2
## 9246                                                 2
## 9247                                                 2
## 9248                                                 2
## 9249                                                 2
## 9250                                                 2
## 9251                                                 3
## 9252                                                 3
## 9253                                                 3
## 9254                                              able
## 9255                                              able
## 9256                                              able
## 9257                                              able
## 9258                                              able
## 9259                                              able
## 9260                                              able
## 9261                                          absolute
## 9262                                        absolutely
## 9263                                        absolutely
## 9264                                        absolutely
## 9265                                        absolutely
## 9266                                        absolutely
## 9267                                        absolutely
## 9268                                        absolutely
## 9269                                        absolutely
## 9270                                        absolutely
## 9271                                            absorb
## 9272                                            accent
## 9273                                            accent
## 9274                                            accept
## 9275                                        accomplish
## 9276                                            across
## 9277                                            across
## 9278                                            across
## 9279                                            across
## 9280                                            across
## 9281                                            across
## 9282                                            across
## 9283                                            actual
## 9284                                          actually
## 9285                                          actually
## 9286                                          actually
## 9287                                          actually
## 9288                                          actually
## 9289                                          actually
## 9290                                          actually
## 9291                                          actually
## 9292                                          actually
## 9293                                          actually
## 9294                                          actually
## 9295                                          actually
## 9296                                          actually
## 9297                                          actually
## 9298                                          actually
## 9299                                          actually
## 9300                                          actually
## 9301                                          actually
## 9302                                          actually
## 9303                                          actually
## 9304                                               add
## 9305                                               add
## 9306                                               add
## 9307                                               add
## 9308                                               add
## 9309                                               add
## 9310                                               add
## 9311                                               add
## 9312                                               add
## 9313                                               add
## 9314                                        additional
## 9315                                         adjective
## 9316                                            advice
## 9317                                            advice
## 9318                                           african
## 9319                                         afternoon
## 9320                                               ago
## 9321                                               ago
## 9322                                               ago
## 9323                                               ago
## 9324                                               ago
## 9325                                               ago
## 9326                                               ago
## 9327                                               ago
## 9328                                             agree
## 9329                                             agree
## 9330                                             agree
## 9331                                             ahead
## 9332                                              aint
## 9333                                              aint
## 9334                                           airline
## 9335                                           airport
## 9336                                           airport
## 9337                                           airport
## 9338                                           alabama
## 9339                                          allergic
## 9340                                            almost
## 9341                                            almost
## 9342                                            almost
## 9343                                            almost
## 9344                                            almost
## 9345                                            almost
## 9346                                            almost
## 9347                                            almost
## 9348                                             alone
## 9349                                             along
## 9350                                             along
## 9351                                              alot
## 9352                                              alot
## 9353                                           already
## 9354                                           already
## 9355                                           already
## 9356                                           already
## 9357                                           alright
## 9358                                           alright
## 9359                                           alright
## 9360                                               als
## 9361                                              also
## 9362                                              also
## 9363                                              also
## 9364                                              also
## 9365                                              also
## 9366                                              also
## 9367                                              also
## 9368                                              also
## 9369                                              also
## 9370                                              also
## 9371                                              also
## 9372                                              also
## 9373                                              also
## 9374                                              also
## 9375                                              also
## 9376                                              also
## 9377                                              also
## 9378                                              also
## 9379                                              also
## 9380                                              also
## 9381                                              also
## 9382                                              also
## 9383                                              also
## 9384                                              also
## 9385                                              also
## 9386                                              also
## 9387                                              also
## 9388                                              also
## 9389                                              also
## 9390                                              also
## 9391                                              also
## 9392                                              also
## 9393                                              also
## 9394                                              also
## 9395                                              also
## 9396                                              also
## 9397                                              also
## 9398                                              also
## 9399                                              also
## 9400                                              also
## 9401                                              also
## 9402                                          although
## 9403                                          although
## 9404                                          although
## 9405                                          although
## 9406                                          although
## 9407                                          although
## 9408                                          although
## 9409                                          although
## 9410                                          although
## 9411                                            always
## 9412                                            always
## 9413                                            always
## 9414                                            always
## 9415                                            always
## 9416                                            always
## 9417                                            always
## 9418                                            always
## 9419                                            always
## 9420                                            always
## 9421                                            always
## 9422                                            always
## 9423                                            always
## 9424                                            always
## 9425                                            always
## 9426                                            always
## 9427                                            always
## 9428                                            always
## 9429                                            always
## 9430                                             amaze
## 9431                                             amaze
## 9432                                             amaze
## 9433                                             amaze
## 9434                                             amaze
## 9435                                             amaze
## 9436                                             amaze
## 9437                                             amaze
## 9438                                             amaze
## 9439                                             amaze
## 9440                                             amaze
## 9441                                             amaze
## 9442                                             amaze
## 9443                                             amaze
## 9444                                         amazingly
## 9445                                           america
## 9446                                           america
## 9447                                           america
## 9448                                           america
## 9449                                           america
## 9450                                           america
## 9451                                          american
## 9452                                          american
## 9453                                          american
## 9454                                          american
## 9455                                          american
## 9456                                          american
## 9457                                          american
## 9458                                          american
## 9459                                          american
## 9460                                 americanprovolone
## 9461                                             among
## 9462                                            amount
## 9463                                             ample
## 9464                                             angry
## 9465                                             annoy
## 9466                                           another
## 9467                                           another
## 9468                                           another
## 9469                                           another
## 9470                                           another
## 9471                                           another
## 9472                                           another
## 9473                                           another
## 9474                                           another
## 9475                                           another
## 9476                                           another
## 9477                                           another
## 9478                                           another
## 9479                                           another
## 9480                                           another
## 9481                                           another
## 9482                                            answer
## 9483                                            answer
## 9484                                      anticipation
## 9485                                     antiimmigrant
## 9486                                            anyone
## 9487                                            anyone
## 9488                                            anyone
## 9489                                            anyone
## 9490                                          anything
## 9491                                          anything
## 9492                                          anything
## 9493                                          anything
## 9494                                          anything
## 9495                                            anyway
## 9496                                            anyway
## 9497                                            anyway
## 9498                                            anyway
## 9499                                            anyway
## 9500                                            anyway
## 9501                                            anyway
## 9502                                           anyways
## 9503                                          anywhere
## 9504                                          anywhere
## 9505                                        apparently
## 9506                                            appeal
## 9507                                            appeal
## 9508                                            appear
## 9509                                        appetizing
## 9510                                             apple
## 9511                                          approach
## 9512                                              arch
## 9513                                              area
## 9514                                              area
## 9515                                              area
## 9516                                              area
## 9517                                              area
## 9518                                              area
## 9519                                              area
## 9520                                              area
## 9521                                              area
## 9522                                              area
## 9523                                              area
## 9524                                              area
## 9525                                              area
## 9526                                              area
## 9527                                             arent
## 9528                                             arent
## 9529                                           arizona
## 9530                                               arm
## 9531                                            around
## 9532                                            around
## 9533                                            around
## 9534                                            around
## 9535                                            around
## 9536                                            around
## 9537                                            around
## 9538                                            around
## 9539                                            around
## 9540                                            around
## 9541                                            around
## 9542                                            around
## 9543                                            around
## 9544                                            around
## 9545                                            around
## 9546                                            around
## 9547                                            around
## 9548                                            around
## 9549                                            arrive
## 9550                                            arrive
## 9551                                            arrive
## 9552                                            arrive
## 9553                                            arrive
## 9554                                            arrive
## 9555                                            arrive
## 9556                                          arrogant
## 9557                                           ashamed
## 9558                                           ashamed
## 9559                                           ashamed
## 9560                                             aside
## 9561                                             aside
## 9562                                               ask
## 9563                                               ask
## 9564                                               ask
## 9565                                               ask
## 9566                                               ask
## 9567                                               ask
## 9568                                               ask
## 9569                                               ask
## 9570                                               ask
## 9571                                               ask
## 9572                                               ask
## 9573                                               ask
## 9574                                               ask
## 9575                                               ask
## 9576                                               ask
## 9577                                               ask
## 9578                                               ask
## 9579                                               ask
## 9580                                               ask
## 9581                                            aspect
## 9582                                               ass
## 9583                                               ass
## 9584                                               atm
## 9585                                               atm
## 9586                                        atmosphere
## 9587                                        atmosphere
## 9588                                              atms
## 9589                                              atms
## 9590                                           attempt
## 9591                                         attention
## 9592                                          attitude
## 9593                                          attitude
## 9594                                          attitude
## 9595                                          attitude
## 9596                                          attitude
## 9597                                          attitude
## 9598                                          attitude
## 9599                                          attitude
## 9600                                          attitude
## 9601                                        attraction
## 9602                                        attraction
## 9603                                        attraction
## 9604                                        attraction
## 9605                                        attractive
## 9606                                         attribute
## 9607                                         authentic
## 9608                                         authentic
## 9609                                         autograph
## 9610                                           average
## 9611                                           average
## 9612                                           average
## 9613                                           average
## 9614                                           average
## 9615                                           average
## 9616                                           average
## 9617                                             avoid
## 9618                                             avoid
## 9619                                              away
## 9620                                              away
## 9621                                              away
## 9622                                              away
## 9623                                              away
## 9624                                              away
## 9625                                              away
## 9626                                              away
## 9627                                              away
## 9628                                              away
## 9629                                              away
## 9630                                              away
## 9631                                              away
## 9632                                              away
## 9633                                              away
## 9634                                              away
## 9635                                              away
## 9636                                              away
## 9637                                              away
## 9638                                              away
## 9639                                           awesome
## 9640                                           awesome
## 9641                                           awesome
## 9642                                           awesome
## 9643                                             awful
## 9644                                             awful
## 9645                                             awful
## 9646                                             awful
## 9647                                           awkward
## 9648                                                 b
## 9649                                                 b
## 9650                                                 b
## 9651                                          bachelor
## 9652                                              back
## 9653                                              back
## 9654                                              back
## 9655                                              back
## 9656                                              back
## 9657                                              back
## 9658                                              back
## 9659                                              back
## 9660                                              back
## 9661                                              back
## 9662                                              back
## 9663                                              back
## 9664                                              back
## 9665                                              back
## 9666                                              back
## 9667                                              back
## 9668                                              back
## 9669                                              back
## 9670                                              back
## 9671                                              back
## 9672                                              back
## 9673                                              back
## 9674                                              back
## 9675                                              back
## 9676                                              back
## 9677                                              back
## 9678                                              back
## 9679                                              back
## 9680                                              back
## 9681                                              back
## 9682                                              back
## 9683                                              back
## 9684                                              back
## 9685                                              back
## 9686                                              back
## 9687                                              back
## 9688                                              back
## 9689                                              back
## 9690                                              back
## 9691                                              back
## 9692                                              back
## 9693                                              back
## 9694                                              back
## 9695                                               bad
## 9696                                               bad
## 9697                                               bad
## 9698                                               bad
## 9699                                               bad
## 9700                                               bad
## 9701                                               bad
## 9702                                               bad
## 9703                                               bad
## 9704                                               bad
## 9705                                               bad
## 9706                                               bad
## 9707                                               bad
## 9708                                               bad
## 9709                                               bad
## 9710                                               bad
## 9711                                               bad
## 9712                                               bad
## 9713                                               bad
## 9714                                               bad
## 9715                                               bad
## 9716                                               bad
## 9717                                               bad
## 9718                                               bad
## 9719                                               bad
## 9720                                               bad
## 9721                                               bad
## 9722                                               bad
## 9723                                               bad
## 9724                                             badge
## 9725                                               bag
## 9726                                              bala
## 9727                                           balance
## 9728                                           balance
## 9729                                           balance
## 9730                                               bar
## 9731                                               bar
## 9732                                            barely
## 9733                                            barely
## 9734                                            barely
## 9735                                            barely
## 9736                                            barely
## 9737                                            barely
## 9738                                              base
## 9739                                              base
## 9740                                              base
## 9741                                          baseball
## 9742                                              bash
## 9743                                             basic
## 9744                                         basically
## 9745                                         basically
## 9746                                         basically
## 9747                                         basically
## 9748                                         basically
## 9749                                        basketball
## 9750                                          bathroom
## 9751                                          bathroom
## 9752                                          bathroom
## 9753                                          bathroom
## 9754                                            battle
## 9755                                                bc
## 9756                                                bc
## 9757                                                bc
## 9758                                              bear
## 9759                                              beat
## 9760                                              beat
## 9761                                              beat
## 9762                                            become
## 9763                                            become
## 9764                                              beef
## 9765                                              beef
## 9766                                              beef
## 9767                                              beef
## 9768                                              beef
## 9769                                              beef
## 9770                                              beef
## 9771                                              beef
## 9772                                              beef
## 9773                                              beef
## 9774                                              beef
## 9775                                             beefy
## 9776                                              beer
## 9777                                              beer
## 9778                                              beer
## 9779                                             begin
## 9780                                             begin
## 9781                                             begin
## 9782                                            behind
## 9783                                            behind
## 9784                                            behind
## 9785                                           believe
## 9786                                           believe
## 9787                                           believe
## 9788                                           believe
## 9789                                           believe
## 9790                                           believe
## 9791                                           believe
## 9792                                           believe
## 9793                                              bell
## 9794                                               ben
## 9795                                           besides
## 9796                                               bet
## 9797                                            beware
## 9798                                            beware
## 9799                                            beyond
## 9800                                            beyond
## 9801                                                bf
## 9802                                                bf
## 9803                                               big
## 9804                                               big
## 9805                                               big
## 9806                                               big
## 9807                                               big
## 9808                                               big
## 9809                                               big
## 9810                                               big
## 9811                                               big
## 9812                                               big
## 9813                                               big
## 9814                                               big
## 9815                                               big
## 9816                                               big
## 9817                                               big
## 9818                                               big
## 9819                                               big
## 9820                                              bike
## 9821                                              bing
## 9822                                        birthplace
## 9823                                               bit
## 9824                                              bite
## 9825                                              bite
## 9826                                              bite
## 9827                                              bite
## 9828                                              bite
## 9829                                              bite
## 9830                                              bite
## 9831                                              bite
## 9832                                              bite
## 9833                                              bite
## 9834                                              bite
## 9835                                              bite
## 9836                                              bite
## 9837                                              bite
## 9838                                              bite
## 9839                                              bite
## 9840                                              bite
## 9841                                              bite
## 9842                                              bite
## 9843                                              bite
## 9844                                              bite
## 9845                                              bite
## 9846                                              bite
## 9847                                              bite
## 9848                                              bite
## 9849                                              bite
## 9850                                              bite
## 9851                                              bite
## 9852                                              bite
## 9853                                              bite
## 9854                                              bite
## 9855                                              bite
## 9856                                              bite
## 9857                                              bite
## 9858                                              bite
## 9859                                              bite
## 9860                                              bite
## 9861                                              bite
## 9862                                              blah
## 9863                                             bland
## 9864                                             bland
## 9865                                             bland
## 9866                                             bland
## 9867                                             bland
## 9868                                             bland
## 9869                                             bland
## 9870                                             bland
## 9871                                             bland
## 9872                                             bland
## 9873                                             bland
## 9874                                             bland
## 9875                                             bland
## 9876                                             bland
## 9877                                             bland
## 9878                                             bland
## 9879                                             bland
## 9880                                           blatant
## 9881                                             blend
## 9882                                             blend
## 9883                                             blind
## 9884                                             blink
## 9885                                             block
## 9886                                             block
## 9887                                             block
## 9888                                             block
## 9889                                              blow
## 9890                                              blow
## 9891                                              blow
## 9892                                               bon
## 9893                                              book
## 9894                                        borderline
## 9895                                              bore
## 9896                                            bother
## 9897                                            bother
## 9898                                            bother
## 9899                                            bother
## 9900                                            bottom
## 9901                                              bowl
## 9902                                               box
## 9903                                               boy
## 9904                                               boy
## 9905                                               boy
## 9906                                         boyfriend
## 9907                                         boyfriend
## 9908                                         boyfriend
## 9909                                         boyfriend
## 9910                                         boyfriend
## 9911                                              boyz
## 9912                                              brag
## 9913                                             bread
## 9914                                             bread
## 9915                                             bread
## 9916                                             bread
## 9917                                             bread
## 9918                                             bread
## 9919                                             bread
## 9920                                             bread
## 9921                                             bread
## 9922                                             bread
## 9923                                             bread
## 9924                                             bread
## 9925                                             bread
## 9926                                             bread
## 9927                                             bread
## 9928                                             bread
## 9929                                             bread
## 9930                                             bread
## 9931                                             bread
## 9932                                             bread
## 9933                                             bread
## 9934                                             bread
## 9935                                             bread
## 9936                                             bread
## 9937                                             bread
## 9938                                             bread
## 9939                                             bread
## 9940                                             bread
## 9941                                             bread
## 9942                                             bread
## 9943                                             bread
## 9944                                             bread
## 9945                                             bread
## 9946                                             bread
## 9947                                             bread
## 9948                                             bread
## 9949                                             bread
## 9950                                             bread
## 9951                                             bread
## 9952                                             bread
## 9953                                             bread
## 9954                                             break
## 9955                                             break
## 9956                                             break
## 9957                                         breakfast
## 9958                                         breakfast
## 9959                                             brief
## 9960                                            bright
## 9961                                            bright
## 9962                                             bring
## 9963                                             bring
## 9964                                             bring
## 9965                                             bring
## 9966                                             broad
## 9967                                           brother
## 9968                                           brother
## 9969                                            brunch
## 9970                                              buck
## 9971                                              buck
## 9972                                              buck
## 9973                                              buck
## 9974                                             buddy
## 9975                                             buddy
## 9976                                             buddy
## 9977                                             build
## 9978                                             build
## 9979                                             build
## 9980                                             build
## 9981                                             build
## 9982                                               bun
## 9983                                               bun
## 9984                                               bun
## 9985                                               bun
## 9986                                               bun
## 9987                                               bun
## 9988                                               bun
## 9989                                               bun
## 9990                                               bun
## 9991                                               bun
## 9992                                               bun
## 9993                                             bunch
## 9994                                             bunch
## 9995                                              burn
## 9996                                             burst
## 9997                                               bus
## 9998                                          business
## 9999                                          business
## 10000                                         business
## 10001                                         business
## 10002                                         business
## 10003                                         business
## 10004                                         business
## 10005                                         business
## 10006                                         business
## 10007                                         business
## 10008                                             busy
## 10009                                             busy
## 10010                                              buy
## 10011                                              buy
## 10012                                              buy
## 10013                                              buy
## 10014                                              buy
## 10015                                              buy
## 10016                                              buy
## 10017                                            cable
## 10018                                       california
## 10019                                       california
## 10020                                             call
## 10021                                             call
## 10022                                             call
## 10023                                             call
## 10024                                             call
## 10025                                             call
## 10026                                             call
## 10027                                             call
## 10028                                              can
## 10029                                              can
## 10030                                              can
## 10031                                              can
## 10032                                              can
## 10033                                              can
## 10034                                              can
## 10035                                              can
## 10036                                              can
## 10037                                              can
## 10038                                              can
## 10039                                              can
## 10040                                              can
## 10041                                              can
## 10042                                              can
## 10043                                              can
## 10044                                              can
## 10045                                              can
## 10046                                              can
## 10047                                              can
## 10048                                              can
## 10049                                              can
## 10050                                              can
## 10051                                              can
## 10052                                              can
## 10053                                              can
## 10054                                              can
## 10055                                              can
## 10056                                              can
## 10057                                              can
## 10058                                              can
## 10059                                              can
## 10060                                              can
## 10061                                              can
## 10062                                              can
## 10063                                              can
## 10064                                              can
## 10065                                          cannoli
## 10066                                             cant
## 10067                                             cant
## 10068                                             cant
## 10069                                             cant
## 10070                                             cant
## 10071                                             cant
## 10072                                              car
## 10073                                              car
## 10074                                              car
## 10075                                              car
## 10076                                              car
## 10077                                              car
## 10078                                              car
## 10079                                              car
## 10080                                      caramelized
## 10081                                             card
## 10082                                             care
## 10083                                             care
## 10084                                          careful
## 10085                                          careful
## 10086                                            carry
## 10087                                             case
## 10088                                             case
## 10089                                             case
## 10090                                             cash
## 10091                                             cash
## 10092                                             cash
## 10093                                             cash
## 10094                                             cash
## 10095                                             cash
## 10096                                             cash
## 10097                                             cash
## 10098                                             cash
## 10099                                             cash
## 10100                                             cash
## 10101                                             cash
## 10102                                             cash
## 10103                                             cash
## 10104                                             cash
## 10105                                             cash
## 10106                                             cash
## 10107                                             cash
## 10108                                             cash
## 10109                                             cash
## 10110                                             cash
## 10111                                             cash
## 10112                                          cashier
## 10113                                          cashier
## 10114                                          cashier
## 10115                                            catch
## 10116                                            catch
## 10117                                            catch
## 10118                                            catch
## 10119                                        caucasian
## 10120                                            cause
## 10121                                            cause
## 10122                                            cause
## 10123                                            cause
## 10124                                            cause
## 10125                                          caution
## 10126                                             ceil
## 10127                                        celebrity
## 10128                                        celebrity
## 10129                                             cell
## 10130                                             cent
## 10131                                        certainly
## 10132                                            chain
## 10133                                            chain
## 10134                                        challenge
## 10135                                        challenge
## 10136                                        challenge
## 10137                                        challenge
## 10138                                           change
## 10139                                           change
## 10140                                           change
## 10141                                           change
## 10142                                           change
## 10143                                           change
## 10144                                           change
## 10145                                           change
## 10146                                          channel
## 10147                                          channel
## 10148                                          channel
## 10149                                           charge
## 10150                                           charge
## 10151                                           charge
## 10152                                           charge
## 10153                                            cheap
## 10154                                            cheap
## 10155                                            cheap
## 10156                                            cheap
## 10157                                            cheap
## 10158                                            cheap
## 10159                                            cheap
## 10160                                            cheap
## 10161                                            cheap
## 10162                                           chease
## 10163                                            check
## 10164                                            check
## 10165                                            check
## 10166                                            check
## 10167                                           cheese
## 10168                                           cheese
## 10169                                           cheese
## 10170                                           cheese
## 10171                                           cheese
## 10172                                           cheese
## 10173                                           cheese
## 10174                                           cheese
## 10175                                           cheese
## 10176                                           cheese
## 10177                                           cheese
## 10178                                           cheese
## 10179                                           cheese
## 10180                                           cheese
## 10181                                           cheese
## 10182                                           cheese
## 10183                                           cheese
## 10184                                           cheese
## 10185                                           cheese
## 10186                                           cheese
## 10187                                           cheese
## 10188                                           cheese
## 10189                                           cheese
## 10190                                           cheese
## 10191                                           cheese
## 10192                                           cheese
## 10193                                           cheese
## 10194                                           cheese
## 10195                                           cheese
## 10196                                           cheese
## 10197                                           cheese
## 10198                                           cheese
## 10199                                           cheese
## 10200                                           cheese
## 10201                                           cheese
## 10202                                           cheese
## 10203                                           cheese
## 10204                                           cheese
## 10205                                           cheese
## 10206                                           cheese
## 10207                                           cheese
## 10208                                           cheese
## 10209                                           cheese
## 10210                                           cheese
## 10211                                           cheese
## 10212                                           cheese
## 10213                                           cheese
## 10214                                           cheese
## 10215                                           cheese
## 10216                                           cheese
## 10217                                           cheese
## 10218                                           cheese
## 10219                                           cheese
## 10220                                           cheese
## 10221                                           cheese
## 10222                                           cheese
## 10223                                           cheese
## 10224                                           cheese
## 10225                                           cheese
## 10226                                           cheese
## 10227                                           cheese
## 10228                                           cheese
## 10229                                           cheese
## 10230                                           cheese
## 10231                                           cheese
## 10232                                           cheese
## 10233                                           cheese
## 10234                                           cheese
## 10235                                           cheese
## 10236                                           cheese
## 10237                                      cheesesteak
## 10238                                      cheesesteak
## 10239                                      cheesesteak
## 10240                                      cheesesteak
## 10241                                      cheesesteak
## 10242                                      cheesesteak
## 10243                                      cheesesteak
## 10244                                      cheesesteak
## 10245                                      cheesesteak
## 10246                                      cheesesteak
## 10247                                      cheesesteak
## 10248                                      cheesesteak
## 10249                                      cheesesteak
## 10250                                      cheesesteak
## 10251                                      cheesesteak
## 10252                                      cheesesteak
## 10253                                      cheesesteak
## 10254                                      cheesesteak
## 10255                                      cheesesteak
## 10256                                      cheesesteak
## 10257                                      cheesesteak
## 10258                                      cheesesteak
## 10259                                      cheesesteak
## 10260                                      cheesesteak
## 10261                                      cheesesteak
## 10262                                      cheesesteak
## 10263                                      cheesesteak
## 10264                                      cheesesteak
## 10265                                      cheesesteak
## 10266                                      cheesesteak
## 10267                                      cheesesteak
## 10268                                      cheesesteak
## 10269                                      cheesesteak
## 10270                                      cheesesteak
## 10271                                      cheesesteak
## 10272                                      cheesesteak
## 10273                                      cheesesteak
## 10274                                      cheesesteak
## 10275                                      cheesesteak
## 10276                                      cheesesteak
## 10277                                      cheesesteak
## 10278                                      cheesesteak
## 10279                                      cheesesteak
## 10280                                      cheesesteak
## 10281                                      cheesesteak
## 10282                                      cheesesteak
## 10283                                      cheesesteak
## 10284                                      cheesesteak
## 10285                                      cheesesteak
## 10286                                      cheesesteak
## 10287                                      cheesesteak
## 10288                                      cheesesteak
## 10289                                      cheesesteak
## 10290                                      cheesesteak
## 10291                                      cheesesteak
## 10292                                      cheesesteak
## 10293                                      cheesesteak
## 10294                                      cheesesteak
## 10295                                      cheesesteak
## 10296                                      cheesesteak
## 10297                                      cheesesteak
## 10298                                      cheesesteak
## 10299                                      cheesesteak
## 10300                                      cheesesteak
## 10301                                      cheesesteak
## 10302                                      cheesesteak
## 10303                                      cheesesteak
## 10304                                      cheesesteak
## 10305                                      cheesesteak
## 10306                                      cheesesteak
## 10307                                      cheesesteak
## 10308                                      cheesesteak
## 10309                                      cheesesteak
## 10310                                      cheesesteak
## 10311                                      cheesesteak
## 10312                                      cheesesteak
## 10313                                      cheesesteak
## 10314                                      cheesesteak
## 10315                                      cheesesteak
## 10316                                      cheesesteak
## 10317                                      cheesesteak
## 10318                                      cheesesteak
## 10319                                      cheesesteak
## 10320                                      cheesesteak
## 10321                                      cheesesteak
## 10322                                      cheesesteak
## 10323                                      cheesesteak
## 10324                                      cheesesteak
## 10325                                      cheesesteak
## 10326                                      cheesesteak
## 10327                                      cheesesteak
## 10328                                      cheesesteak
## 10329                                      cheesesteak
## 10330                                      cheesesteak
## 10331                                      cheesesteak
## 10332                                      cheesesteak
## 10333                                      cheesesteak
## 10334                                      cheesesteak
## 10335                                      cheesesteak
## 10336                                      cheesesteak
## 10337                                     cheesesteaks
## 10338                                     cheesesteaks
## 10339                                     cheesesteaks
## 10340                                     cheesesteaks
## 10341                                     cheesesteaks
## 10342                                     cheesesteaks
## 10343                                     cheesesteaks
## 10344                                     cheesesteaks
## 10345                                     cheesesteaks
## 10346                                     cheesesteaks
## 10347                                     cheesesteaks
## 10348                                     cheesesteaks
## 10349                                     cheesesteaks
## 10350                                     cheesesteaks
## 10351                                     cheesesteaks
## 10352                                     cheesesteaks
## 10353                                     cheesesteaks
## 10354                                     cheesesteaks
## 10355                                     cheesesteaks
## 10356                                     cheesesteaks
## 10357                                     cheesesteaks
## 10358                                     cheesesteaks
## 10359                                     cheesesteaks
## 10360                                     cheesesteaks
## 10361                                     cheesesteaks
## 10362                                     cheesesteaks
## 10363                                     cheesesteaks
## 10364                                     cheesesteaks
## 10365                                     cheesesteaks
## 10366                                     cheesesteaks
## 10367                                     cheesesteaks
## 10368                                     cheesesteaks
## 10369                                     cheesesteaks
## 10370                                     cheesesteaks
## 10371                                     cheesesteaks
## 10372                                     cheesesteaks
## 10373                                     cheesesteaks
## 10374                                     cheesesteaks
## 10375                                     cheesesteaks
## 10376                                     cheesesteaks
## 10377                                     cheesesteaks
## 10378                                     cheesesteaks
## 10379                                     cheesesteaks
## 10380                                     cheesesteaks
## 10381                                     cheesesteaks
## 10382                                     cheesesteaks
## 10383                                     cheesesteaks
## 10384                                     cheesesteaks
## 10385                                     cheesesteaks
## 10386                                     cheesesteaks
## 10387                                     cheesesteaks
## 10388                                     cheesesteaks
## 10389                                     cheesesteaks
## 10390                                     cheesesteaks
## 10391                                     cheesesteaks
## 10392                                     cheesesteaks
## 10393                                     cheesesteaks
## 10394                                     cheesesteaks
## 10395                                     cheesesteaks
## 10396                                     cheesesteaks
## 10397                                     cheesesteaks
## 10398                                     cheesesteaks
## 10399                                     cheesesteaks
## 10400                                     cheesesteaks
## 10401                                     cheesesteaks
## 10402                                     cheesesteaks
## 10403                                     cheesesteaks
## 10404                                     cheesesteaks
## 10405                                       cheesewhiz
## 10406                                       cheesewhiz
## 10407                                        cheesteak
## 10408                                           cheesy
## 10409                                           cheesy
## 10410                                           cherry
## 10411                                           cherry
## 10412                                      chesesteaks
## 10413                                             chew
## 10414                                             chew
## 10415                                             chew
## 10416                                             chew
## 10417                                             chew
## 10418                                            chewy
## 10419                                            chewy
## 10420                                            chewy
## 10421                                            chewy
## 10422                                            chewy
## 10423                                            chewy
## 10424                                            chewy
## 10425                                            chewy
## 10426                                            chewy
## 10427                                            chewy
## 10428                                            chewy
## 10429                                          chicken
## 10430                                           chilly
## 10431                                           choice
## 10432                                           choice
## 10433                                           choice
## 10434                                           choice
## 10435                                           choice
## 10436                                           choose
## 10437                                           choose
## 10438                                           choose
## 10439                                             chop
## 10440                                             chop
## 10441                                             chop
## 10442                                             chop
## 10443                                             chop
## 10444                                             chop
## 10445                                             chop
## 10446                                             chop
## 10447                                             chop
## 10448                                             chop
## 10449                                             chop
## 10450                                             chop
## 10451                                             chop
## 10452                                        christmas
## 10453                                            chunk
## 10454                                            chunk
## 10455                                            churn
## 10456                                           circle
## 10457                                             city
## 10458                                             city
## 10459                                             city
## 10460                                             city
## 10461                                             city
## 10462                                             city
## 10463                                             city
## 10464                                             city
## 10465                                             city
## 10466                                             city
## 10467                                             city
## 10468                                             city
## 10469                                             city
## 10470                                             city
## 10471                                             city
## 10472                                             city
## 10473                                             city
## 10474                                             city
## 10475                                            civil
## 10476                                            claim
## 10477                                            class
## 10478                                          classic
## 10479                                          classic
## 10480                                          classic
## 10481                                          classic
## 10482                                          classic
## 10483                                            clean
## 10484                                            clean
## 10485                                            clean
## 10486                                            clean
## 10487                                      cleanliness
## 10488                                            clear
## 10489                                            click
## 10490                                            close
## 10491                                            close
## 10492                                            close
## 10493                                            close
## 10494                                            close
## 10495                                            close
## 10496                                            close
## 10497                                            close
## 10498                                            close
## 10499                                            close
## 10500                                            close
## 10501                                            close
## 10502                                            close
## 10503                                            cloud
## 10504                                               co
## 10505                                            coast
## 10506                                           coffee
## 10507                                             coin
## 10508                                             coke
## 10509                                             cold
## 10510                                             cold
## 10511                                             cold
## 10512                                             cold
## 10513                                             cold
## 10514                                             cold
## 10515                                             cold
## 10516                                             cold
## 10517                                             cold
## 10518                                          collect
## 10519                                       collection
## 10520                                            color
## 10521                                      combination
## 10522                                             come
## 10523                                             come
## 10524                                             come
## 10525                                             come
## 10526                                             come
## 10527                                             come
## 10528                                             come
## 10529                                             come
## 10530                                             come
## 10531                                             come
## 10532                                             come
## 10533                                             come
## 10534                                             come
## 10535                                             come
## 10536                                             come
## 10537                                             come
## 10538                                             come
## 10539                                             come
## 10540                                             come
## 10541                                             come
## 10542                                             come
## 10543                                             come
## 10544                                             come
## 10545                                             come
## 10546                                             come
## 10547                                             come
## 10548                                             come
## 10549                                             come
## 10550                                             come
## 10551                                             come
## 10552                                             come
## 10553                                             come
## 10554                                             come
## 10555                                             come
## 10556                                             come
## 10557                                             come
## 10558                                             come
## 10559                                             come
## 10560                                             come
## 10561                                             come
## 10562                                             come
## 10563                                             come
## 10564                                             come
## 10565                                             come
## 10566                                             come
## 10567                                             come
## 10568                                             come
## 10569                                             come
## 10570                                             come
## 10571                                             come
## 10572                                          comfort
## 10573                                          command
## 10574                                          comment
## 10575                                          compare
## 10576                                          compare
## 10577                                          compare
## 10578                                          compare
## 10579                                          compare
## 10580                                          compare
## 10581                                          compare
## 10582                                          compare
## 10583                                          compare
## 10584                                          compare
## 10585                                          compare
## 10586                                       comparison
## 10587                                       comparison
## 10588                                       comparison
## 10589                                       comparison
## 10590                                           compel
## 10591                                       compensate
## 10592                                          compete
## 10593                                      competition
## 10594                                      competition
## 10595                                      competition
## 10596                                      competition
## 10597                                       competitor
## 10598                                       competitor
## 10599                                         complain
## 10600                                        complaint
## 10601                                        complaint
## 10602                                         complete
## 10603                                         complete
## 10604                                       completely
## 10605                                       completely
## 10606                                       completely
## 10607                                       completely
## 10608                                       completely
## 10609                                       completely
## 10610                                       completely
## 10611                                       compliment
## 10612                                       compliment
## 10613                                              con
## 10614                                              con
## 10615                                              con
## 10616                                              con
## 10617                                        condiment
## 10618                                        condiment
## 10619                                        condiment
## 10620                                          conduct
## 10621                                      confederate
## 10622                                       conference
## 10623                                      confidently
## 10624                                          confuse
## 10625                                          confuse
## 10626                                         consider
## 10627                                         consider
## 10628                                         consider
## 10629                                         consider
## 10630                                      consistency
## 10631                                       constipate
## 10632                                       convenient
## 10633                                       convention
## 10634                                             cook
## 10635                                             cook
## 10636                                             cook
## 10637                                             cook
## 10638                                             cook
## 10639                                             cook
## 10640                                             cook
## 10641                                             cook
## 10642                                             cook
## 10643                                             cook
## 10644                                             cook
## 10645                                             cook
## 10646                                             cook
## 10647                                             cool
## 10648                                             cool
## 10649                                          copious
## 10650                                             copy
## 10651                                           corner
## 10652                                           corner
## 10653                                           corner
## 10654                                           corner
## 10655                                        correctly
## 10656                                           cosmis
## 10657                                             cost
## 10658                                             cost
## 10659                                             cost
## 10660                                             cost
## 10661                                             cost
## 10662                                             cost
## 10663                                          couldnt
## 10664                                          couldnt
## 10665                                          couldnt
## 10666                                          couldnt
## 10667                                          couldnt
## 10668                                          couldnt
## 10669                                          couldnt
## 10670                                          couldnt
## 10671                                          couldve
## 10672                                          couldve
## 10673                                          couldve
## 10674                                          counter
## 10675                                          counter
## 10676                                          counter
## 10677                                          counter
## 10678                                      counterpart
## 10679                                          country
## 10680                                          country
## 10681                                          country
## 10682                                          country
## 10683                                          country
## 10684                                          country
## 10685                                           couple
## 10686                                           couple
## 10687                                           couple
## 10688                                           couple
## 10689                                           couple
## 10690                                           couple
## 10691                                           couple
## 10692                                           couple
## 10693                                           couple
## 10694                                           course
## 10695                                           course
## 10696                                           course
## 10697                                           course
## 10698                                           course
## 10699                                            cover
## 10700                                            cover
## 10701                                            crack
## 10702                                            cramp
## 10703                                             crap
## 10704                                             crap
## 10705                                           crappy
## 10706                                            crave
## 10707                                            crave
## 10708                                            crazy
## 10709                                            crazy
## 10710                                            crazy
## 10711                                           creamy
## 10712                                      creditdebit
## 10713                                           crispy
## 10714                                           crispy
## 10715                                            cross
## 10716                                            cross
## 10717                                        crossroad
## 10718                                      crossstreet
## 10719                                            crowd
## 10720                                            crowd
## 10721                                            crowd
## 10722                                            crowd
## 10723                                          cruller
## 10724                                          crunchy
## 10725                                         culinary
## 10726                                            curly
## 10727                                         customer
## 10728                                         customer
## 10729                                         customer
## 10730                                         customer
## 10731                                         customer
## 10732                                         customer
## 10733                                         customer
## 10734                                         customer
## 10735                                         customer
## 10736                                         customer
## 10737                                              cut
## 10738                                              cut
## 10739                                              cut
## 10740                                              cut
## 10741                                              cut
## 10742                                              cut
## 10743                                              cut
## 10744                                              cut
## 10745                                              cut
## 10746                                              cut
## 10747                                              cut
## 10748                                              cut
## 10749                                              cut
## 10750                                              cut
## 10751                                            cycle
## 10752                                              dad
## 10753                                            daddy
## 10754                                     dalessandros
## 10755                                     dalessandros
## 10756                                     dalessandros
## 10757                                     dalessandros
## 10758                                     dalessandros
## 10759                                           dammit
## 10760                                             damn
## 10761                                             damn
## 10762                                             damn
## 10763                                             dare
## 10764                                             date
## 10765                                              day
## 10766                                              day
## 10767                                              day
## 10768                                              day
## 10769                                              day
## 10770                                              day
## 10771                                              day
## 10772                                              day
## 10773                                              day
## 10774                                              day
## 10775                                              day
## 10776                                              day
## 10777                                              day
## 10778                                              day
## 10779                                              day
## 10780                                              day
## 10781                                              day
## 10782                                              day
## 10783                                              day
## 10784                                              day
## 10785                                              day
## 10786                                              day
## 10787                                              day
## 10788                                              day
## 10789                                              day
## 10790                                              day
## 10791                                               dc
## 10792                                               dc
## 10793                                               dc
## 10794                                               de
## 10795                                             deal
## 10796                                             deal
## 10797                                             deal
## 10798                                             deal
## 10799                                             deal
## 10800                                             deal
## 10801                                             deal
## 10802                                             deal
## 10803                                             deal
## 10804                                           debate
## 10805                                           debate
## 10806                                           debate
## 10807                                           debate
## 10808                                            debit
## 10809                                      debitcredit
## 10810                                           decade
## 10811                                           decent
## 10812                                           decent
## 10813                                           decent
## 10814                                           decent
## 10815                                           decent
## 10816                                           decent
## 10817                                           decent
## 10818                                           decide
## 10819                                           decide
## 10820                                           decide
## 10821                                           decide
## 10822                                           decide
## 10823                                           decide
## 10824                                           decide
## 10825                                           decide
## 10826                                           decide
## 10827                                           decide
## 10828                                           decide
## 10829                                           decide
## 10830                                         decision
## 10831                                      declaration
## 10832                                            decor
## 10833                                            decor
## 10834                                            decor
## 10835                                         decorate
## 10836                                         definite
## 10837                                       definitely
## 10838                                       definitely
## 10839                                       definitely
## 10840                                       definitely
## 10841                                       definitely
## 10842                                       definitely
## 10843                                       definitely
## 10844                                       definitely
## 10845                                       definitely
## 10846                                       definitely
## 10847                                       definitely
## 10848                                       definitely
## 10849                                       definitely
## 10850                                       definitely
## 10851                                       definitely
## 10852                                       definitely
## 10853                                       definitely
## 10854                                       definitely
## 10855                                       definitely
## 10856                                       definitely
## 10857                                       definitely
## 10858                                       definitely
## 10859                                       definitely
## 10860                                       definitely
## 10861                                       definition
## 10862                                     delassandros
## 10863                                        delicious
## 10864                                        delicious
## 10865                                        delicious
## 10866                                        delicious
## 10867                                        delicious
## 10868                                        delicious
## 10869                                        delicious
## 10870                                        delicious
## 10871                                        delicious
## 10872                                        delicious
## 10873                                        delicious
## 10874                                        delicious
## 10875                                        delicious
## 10876                                        delicious
## 10877                                        delicious
## 10878                                          deliver
## 10879                                           demand
## 10880                                            dense
## 10881                                           depend
## 10882                                         describe
## 10883                                      description
## 10884                                          deserve
## 10885                                          deserve
## 10886                                           desire
## 10887                                      destination
## 10888                                           detail
## 10889                                        determine
## 10890                                        determine
## 10891                                        determine
## 10892                                             dice
## 10893                                             dice
## 10894                                            didnt
## 10895                                            didnt
## 10896                                            didnt
## 10897                                            didnt
## 10898                                            didnt
## 10899                                            didnt
## 10900                                            didnt
## 10901                                            didnt
## 10902                                            didnt
## 10903                                            didnt
## 10904                                            didnt
## 10905                                            didnt
## 10906                                            didnt
## 10907                                            didnt
## 10908                                            didnt
## 10909                                            didnt
## 10910                                            didnt
## 10911                                            didnt
## 10912                                              die
## 10913                                       difference
## 10914                                       difference
## 10915                                       difference
## 10916                                       difference
## 10917                                       difference
## 10918                                       difference
## 10919                                       difference
## 10920                                        different
## 10921                                        different
## 10922                                        different
## 10923                                        different
## 10924                                        different
## 10925                                        different
## 10926                                        different
## 10927                                        different
## 10928                                        different
## 10929                                        different
## 10930                                        different
## 10931                                        different
## 10932                                        different
## 10933                                        digestive
## 10934                                            dimly
## 10935                                             dine
## 10936                                             dine
## 10937                                           dinner
## 10938                                           dinner
## 10939                                           dinner
## 10940                                           dinner
## 10941                                           direct
## 10942                                           direct
## 10943                                        direction
## 10944                                            dirty
## 10945                                            dirty
## 10946                                       disappoint
## 10947                                       disappoint
## 10948                                       disappoint
## 10949                                       disappoint
## 10950                                       disappoint
## 10951                                       disappoint
## 10952                                       disappoint
## 10953                                       disappoint
## 10954                                       disappoint
## 10955                                       disappoint
## 10956                                       disappoint
## 10957                                       disappoint
## 10958                                       disappoint
## 10959                                       disappoint
## 10960                                       disappoint
## 10961                                       disappoint
## 10962                                       disappoint
## 10963                                       disappoint
## 10964                                       disappoint
## 10965                                       disappoint
## 10966                                       disappoint
## 10967                                       disappoint
## 10968                                       disappoint
## 10969                                       disappoint
## 10970                                   disappointment
## 10971                                   disappointment
## 10972                                   disappointment
## 10973                                   disappointment
## 10974                                         discover
## 10975                                     discriminate
## 10976                                          disgust
## 10977                                          disgust
## 10978                                          disgust
## 10979                                          disgust
## 10980                                          disgust
## 10981                                          disgust
## 10982                                          disgust
## 10983                                          diverse
## 10984                                           divide
## 10985                                               do
## 10986                                               do
## 10987                                               do
## 10988                                               do
## 10989                                               do
## 10990                                               do
## 10991                                               do
## 10992                                               do
## 10993                                               do
## 10994                                               do
## 10995                                               do
## 10996                                               do
## 10997                                               do
## 10998                                               do
## 10999                                               do
## 11000                                               do
## 11001                                               do
## 11002                                               do
## 11003                                               do
## 11004                                               do
## 11005                                               do
## 11006                                               do
## 11007                                               do
## 11008                                               do
## 11009                                               do
## 11010                                               do
## 11011                                            dodge
## 11012                                           doesnt
## 11013                                           doesnt
## 11014                                           doesnt
## 11015                                           doesnt
## 11016                                           doesnt
## 11017                                           doesnt
## 11018                                           doesnt
## 11019                                           doesnt
## 11020                                           doesnt
## 11021                                           doesnt
## 11022                                           doesnt
## 11023                                              dog
## 11024                                              dog
## 11025                                              dog
## 11026                                           dollar
## 11027                                           dollar
## 11028                                           dollar
## 11029                                           dollar
## 11030                                           dollar
## 11031                                           dollar
## 11032                                           dollar
## 11033                                             door
## 11034                                           double
## 11035                                           double
## 11036                                            doubt
## 11037                                            douse
## 11038                                            douse
## 11039                                        downright
## 11040                                        downright
## 11041                                         downtown
## 11042                                         downtown
## 11043                                            dozen
## 11044                                             draw
## 11045                                             draw
## 11046                                            drink
## 11047                                            drink
## 11048                                            drink
## 11049                                            drink
## 11050                                            drink
## 11051                                            drink
## 11052                                            drink
## 11053                                            drink
## 11054                                            drink
## 11055                                            drink
## 11056                                            drink
## 11057                                            drink
## 11058                                            drink
## 11059                                            drink
## 11060                                            drink
## 11061                                            drink
## 11062                                            drink
## 11063                                            drink
## 11064                                            drink
## 11065                                            drink
## 11066                                            drink
## 11067                                             drip
## 11068                                             drip
## 11069                                           drippy
## 11070                                            drive
## 11071                                            drive
## 11072                                            drive
## 11073                                            drive
## 11074                                            drive
## 11075                                            drive
## 11076                                            drive
## 11077                                            drive
## 11078                                            drive
## 11079                                            drive
## 11080                                            drive
## 11081                                            drive
## 11082                                            drive
## 11083                                            drive
## 11084                                           driver
## 11085                                              dry
## 11086                                              dry
## 11087                                              dry
## 11088                                              dry
## 11089                                              dry
## 11090                                              dry
## 11091                                              dry
## 11092                                              dry
## 11093                                              dry
## 11094                                              dry
## 11095                                              dry
## 11096                                              dry
## 11097                                              dry
## 11098                                              dry
## 11099                                              dry
## 11100                                              dry
## 11101                                              dry
## 11102                                              dry
## 11103                                              dry
## 11104                                              dry
## 11105                                              dry
## 11106                                              dry
## 11107                                              dry
## 11108                                              dry
## 11109                                              dry
## 11110                                              dry
## 11111                                              dry
## 11112                                              dry
## 11113                                              dry
## 11114                                              due
## 11115                                             duel
## 11116                                            duper
## 11117                                            early
## 11118                                            early
## 11119                                            early
## 11120                                             earn
## 11121                                           easily
## 11122                                             east
## 11123                                           easter
## 11124                                          eastern
## 11125                                             easy
## 11126                                             easy
## 11127                                             easy
## 11128                                              eat
## 11129                                              eat
## 11130                                              eat
## 11131                                              eat
## 11132                                              eat
## 11133                                              eat
## 11134                                              eat
## 11135                                              eat
## 11136                                              eat
## 11137                                              eat
## 11138                                              eat
## 11139                                              eat
## 11140                                              eat
## 11141                                              eat
## 11142                                              eat
## 11143                                              eat
## 11144                                              eat
## 11145                                              eat
## 11146                                              eat
## 11147                                              eat
## 11148                                              eat
## 11149                                              eat
## 11150                                              eat
## 11151                                              eat
## 11152                                              eat
## 11153                                              eat
## 11154                                              eat
## 11155                                              eat
## 11156                                              eat
## 11157                                              eat
## 11158                                              eat
## 11159                                              eat
## 11160                                              eat
## 11161                                              eat
## 11162                                              eat
## 11163                                              eat
## 11164                                              eat
## 11165                                              eat
## 11166                                              eat
## 11167                                              eat
## 11168                                              eat
## 11169                                              eat
## 11170                                              eat
## 11171                                              eat
## 11172                                              eat
## 11173                                              eat
## 11174                                              eat
## 11175                                              eat
## 11176                                              eat
## 11177                                              eat
## 11178                                              eat
## 11179                                              eat
## 11180                                              eat
## 11181                                              eat
## 11182                                              eat
## 11183                                              eat
## 11184                                              eat
## 11185                                              eat
## 11186                                              eat
## 11187                                              eat
## 11188                                              eat
## 11189                                              eat
## 11190                                              eat
## 11191                                              eat
## 11192                                            eater
## 11193                                             edge
## 11194                                        efficient
## 11195                                           effort
## 11196                                           effort
## 11197                                               eh
## 11198                                               eh
## 11199                                            eight
## 11200                                           either
## 11201                                           either
## 11202                                           either
## 11203                                           either
## 11204                                           either
## 11205                                           either
## 11206                                           either
## 11207                                           either
## 11208                                           either
## 11209                                           either
## 11210                                           either
## 11211                                           either
## 11212                                           either
## 11213                                           either
## 11214                                           either
## 11215                                         electric
## 11216                                             else
## 11217                                             else
## 11218                                             else
## 11219                                             else
## 11220                                             else
## 11221                                             else
## 11222                                             else
## 11223                                             else
## 11224                                        elsewhere
## 11225                                        elsewhere
## 11226                                        elsewhere
## 11227                                               em
## 11228                                         employee
## 11229                                         employee
## 11230                                         employee
## 11231                                         employee
## 11232                                         employee
## 11233                                         employee
## 11234                                         employee
## 11235                                         employee
## 11236                                            empty
## 11237                                               en
## 11238                                              end
## 11239                                              end
## 11240                                              end
## 11241                                              end
## 11242                                              end
## 11243                                              end
## 11244                                              end
## 11245                                              end
## 11246                                              end
## 11247                                              end
## 11248                                          english
## 11249                                          english
## 11250                                          english
## 11251                                          english
## 11252                                          english
## 11253                                          english
## 11254                                          english
## 11255                                          english
## 11256                                          english
## 11257                                          english
## 11258                                          english
## 11259                                          english
## 11260                                          english
## 11261                                          english
## 11262                                          english
## 11263                                          english
## 11264                                          english
## 11265                                          english
## 11266                                          english
## 11267                                          english
## 11268                                          english
## 11269                                          english
## 11270                                          english
## 11271                                          english
## 11272                                          english
## 11273                                          english
## 11274                                          english
## 11275                                      englishonly
## 11276                                          enhance
## 11277                                            enjoy
## 11278                                            enjoy
## 11279                                            enjoy
## 11280                                            enjoy
## 11281                                            enjoy
## 11282                                            enjoy
## 11283                                            enjoy
## 11284                                            enjoy
## 11285                                            enjoy
## 11286                                        enjoyable
## 11287                                           enough
## 11288                                           enough
## 11289                                           enough
## 11290                                           enough
## 11291                                           enough
## 11292                                           enough
## 11293                                           enough
## 11294                                           enough
## 11295                                           enough
## 11296                                           enough
## 11297                                           enough
## 11298                                           enough
## 11299                                           enough
## 11300                                           enough
## 11301                                           entire
## 11302                                           entire
## 11303                                           entire
## 11304                                           entire
## 11305                                          entitle
## 11306                                             epic
## 11307                                          equally
## 11308                                          equally
## 11309                                       especially
## 11310                                       especially
## 11311                                       especially
## 11312                                    establishment
## 11313                                    establishment
## 11314                                    establishment
## 11315                                    establishment
## 11316                                    establishment
## 11317                                    establishment
## 11318                                    establishment
## 11319                                    establishment
## 11320                                    establishment
## 11321                                              etc
## 11322                                             even
## 11323                                             even
## 11324                                             even
## 11325                                             even
## 11326                                             even
## 11327                                             even
## 11328                                             even
## 11329                                             even
## 11330                                             even
## 11331                                             even
## 11332                                             even
## 11333                                             even
## 11334                                             even
## 11335                                             even
## 11336                                             even
## 11337                                             even
## 11338                                             even
## 11339                                             even
## 11340                                             even
## 11341                                             even
## 11342                                             even
## 11343                                             even
## 11344                                             even
## 11345                                             even
## 11346                                             even
## 11347                                             even
## 11348                                             even
## 11349                                             even
## 11350                                             even
## 11351                                             even
## 11352                                             even
## 11353                                             even
## 11354                                             even
## 11355                                       eventually
## 11356                                             ever
## 11357                                             ever
## 11358                                             ever
## 11359                                             ever
## 11360                                             ever
## 11361                                             ever
## 11362                                             ever
## 11363                                             ever
## 11364                                             ever
## 11365                                             ever
## 11366                                             ever
## 11367                                             ever
## 11368                                             ever
## 11369                                             ever
## 11370                                             ever
## 11371                                             ever
## 11372                                             ever
## 11373                                             ever
## 11374                                             ever
## 11375                                             ever
## 11376                                             ever
## 11377                                             ever
## 11378                                             ever
## 11379                                             ever
## 11380                                             ever
## 11381                                             ever
## 11382                                             ever
## 11383                                             ever
## 11384                                            every
## 11385                                            every
## 11386                                            every
## 11387                                            every
## 11388                                            every
## 11389                                            every
## 11390                                            every
## 11391                                        everybody
## 11392                                         everyone
## 11393                                         everyone
## 11394                                         everyone
## 11395                                         everyone
## 11396                                         everyone
## 11397                                         everyone
## 11398                                         everyone
## 11399                                         everyone
## 11400                                         everyone
## 11401                                         everyone
## 11402                                       everything
## 11403                                       everything
## 11404                                       everything
## 11405                                       everything
## 11406                                       everything
## 11407                                       everything
## 11408                                       everything
## 11409                                       everything
## 11410                                       everything
## 11411                                            exact
## 11412                                            exact
## 11413                                            exact
## 11414                                            exact
## 11415                                          exactly
## 11416                                          exactly
## 11417                                          example
## 11418                                        excellent
## 11419                                        excellent
## 11420                                        excellent
## 11421                                           except
## 11422                                           excite
## 11423                                           excite
## 11424                                           excite
## 11425                                           excite
## 11426                                           excuse
## 11427                                           excuse
## 11428                                           excuse
## 11429                                           expect
## 11430                                           expect
## 11431                                           expect
## 11432                                           expect
## 11433                                           expect
## 11434                                           expect
## 11435                                           expect
## 11436                                           expect
## 11437                                           expect
## 11438                                           expect
## 11439                                           expect
## 11440                                           expect
## 11441                                           expect
## 11442                                           expect
## 11443                                           expect
## 11444                                           expect
## 11445                                           expect
## 11446                                      expectation
## 11447                                      expectation
## 11448                                        expensive
## 11449                                        expensive
## 11450                                        expensive
## 11451                                        expensive
## 11452                                        expensive
## 11453                                        expensive
## 11454                                       experience
## 11455                                       experience
## 11456                                       experience
## 11457                                       experience
## 11458                                       experience
## 11459                                       experience
## 11460                                       experience
## 11461                                       experience
## 11462                                       experience
## 11463                                       experience
## 11464                                       experience
## 11465                                       experience
## 11466                                       experience
## 11467                                       experience
## 11468                                       experience
## 11469                                       experience
## 11470                                       experience
## 11471                                       experience
## 11472                                       experience
## 11473                                       experience
## 11474                                       experience
## 11475                                       experience
## 11476                                       experience
## 11477                                       experience
## 11478                                       experience
## 11479                                       experience
## 11480                                       experience
## 11481                                       experience
## 11482                                       experience
## 11483                                       experience
## 11484                                       experience
## 11485                                           expert
## 11486                                            extra
## 11487                                            extra
## 11488                                            extra
## 11489                                          extreme
## 11490                                        extremely
## 11491                                        extremely
## 11492                                        extremely
## 11493                                        extremely
## 11494                                        extremely
## 11495                                              eye
## 11496                                              eye
## 11497                                              eye
## 11498                                              eye
## 11499                                              eye
## 11500                                              eye
## 11501                                               ez
## 11502                                             face
## 11503                                             face
## 11504                                             fact
## 11505                                             fact
## 11506                                             fact
## 11507                                             fact
## 11508                                             fact
## 11509                                             fact
## 11510                                             fact
## 11511                                             fact
## 11512                                             fact
## 11513                                             fact
## 11514                                           factor
## 11515                                             fail
## 11516                                             fail
## 11517                                             fair
## 11518                                             fair
## 11519                                             fair
## 11520                                           fairly
## 11521                                           fairly
## 11522                                           fairly
## 11523                                             fall
## 11524                                             fall
## 11525                                             fall
## 11526                                             fame
## 11527                                           family
## 11528                                           family
## 11529                                           family
## 11530                                           family
## 11531                                           family
## 11532                                           family
## 11533                                           famous
## 11534                                           famous
## 11535                                           famous
## 11536                                           famous
## 11537                                           famous
## 11538                                           famous
## 11539                                           famous
## 11540                                              fan
## 11541                                              fan
## 11542                                              fan
## 11543                                              fan
## 11544                                              fan
## 11545                                              fan
## 11546                                              fan
## 11547                                              fan
## 11548                                              fan
## 11549                                              fan
## 11550                                        fantastic
## 11551                                              far
## 11552                                              far
## 11553                                              far
## 11554                                              far
## 11555                                              far
## 11556                                              far
## 11557                                              far
## 11558                                              far
## 11559                                              far
## 11560                                              far
## 11561                                              far
## 11562                                              far
## 11563                                             fare
## 11564                                             fast
## 11565                                             fast
## 11566                                             fast
## 11567                                             fast
## 11568                                             fast
## 11569                                             fast
## 11570                                             fast
## 11571                                             fast
## 11572                                             fast
## 11573                                             fast
## 11574                                             fast
## 11575                                             fast
## 11576                                             fast
## 11577                                             fast
## 11578                                             fast
## 11579                                             fast
## 11580                                              fat
## 11581                                              fat
## 11582                                            fatty
## 11583                                            fatty
## 11584                                            fault
## 11585                                              fav
## 11586                                            favor
## 11587                                            favor
## 11588                                            favor
## 11589                                            favor
## 11590                                            favor
## 11591                                         favorite
## 11592                                         favorite
## 11593                                         favorite
## 11594                                         favorite
## 11595                                         favorite
## 11596                                         favorite
## 11597                                         favorite
## 11598                                         favorite
## 11599                                         favorite
## 11600                                         favorite
## 11601                                         favorite
## 11602                                              fee
## 11603                                             feel
## 11604                                             feel
## 11605                                             feel
## 11606                                             feel
## 11607                                             feel
## 11608                                             feel
## 11609                                             feel
## 11610                                             feel
## 11611                                             feel
## 11612                                             feel
## 11613                                             feud
## 11614                                            field
## 11615                                            field
## 11616                                          fifteen
## 11617                                           figure
## 11618                                           figure
## 11619                                           figure
## 11620                                           figure
## 11621                                           figure
## 11622                                           figure
## 11623                                           figure
## 11624                                           figure
## 11625                                           figure
## 11626                                             fill
## 11627                                             fill
## 11628                                             fill
## 11629                                             fill
## 11630                                             fill
## 11631                                             fill
## 11632                                            final
## 11633                                            final
## 11634                                            final
## 11635                                          finally
## 11636                                          finally
## 11637                                          finally
## 11638                                          finally
## 11639                                        financial
## 11640                                             find
## 11641                                             find
## 11642                                             find
## 11643                                             find
## 11644                                             find
## 11645                                             find
## 11646                                             find
## 11647                                             find
## 11648                                             find
## 11649                                             find
## 11650                                             find
## 11651                                             find
## 11652                                             find
## 11653                                             find
## 11654                                             find
## 11655                                             find
## 11656                                             find
## 11657                                             find
## 11658                                             find
## 11659                                             find
## 11660                                             find
## 11661                                             fine
## 11662                                             fine
## 11663                                             fine
## 11664                                             fine
## 11665                                             fine
## 11666                                           finely
## 11667                                           finger
## 11668                                           finish
## 11669                                           finish
## 11670                                           finish
## 11671                                             fire
## 11672                                      firefighter
## 11673                                      firefighter
## 11674                                             firm
## 11675                                            first
## 11676                                            first
## 11677                                            first
## 11678                                            first
## 11679                                            first
## 11680                                            first
## 11681                                            first
## 11682                                            first
## 11683                                            first
## 11684                                            first
## 11685                                            first
## 11686                                            first
## 11687                                            first
## 11688                                            first
## 11689                                            first
## 11690                                            first
## 11691                                            first
## 11692                                            first
## 11693                                            first
## 11694                                       fishermans
## 11695                                             five
## 11696                                              fix
## 11697                                              fix
## 11698                                           flashy
## 11699                                           flashy
## 11700                                             flat
## 11701                                             flat
## 11702                                           flavor
## 11703                                           flavor
## 11704                                           flavor
## 11705                                           flavor
## 11706                                           flavor
## 11707                                           flavor
## 11708                                           flavor
## 11709                                           flavor
## 11710                                           flavor
## 11711                                           flavor
## 11712                                           flavor
## 11713                                           flavor
## 11714                                           flavor
## 11715                                           flavor
## 11716                                           flavor
## 11717                                           flavor
## 11718                                           flavor
## 11719                                           flavor
## 11720                                           flavor
## 11721                                           flavor
## 11722                                           flavor
## 11723                                           flavor
## 11724                                           flavor
## 11725                                           flavor
## 11726                                           flavor
## 11727                                           flavor
## 11728                                           flavor
## 11729                                           flavor
## 11730                                           flavor
## 11731                                           flavor
## 11732                                           flavor
## 11733                                           flavor
## 11734                                        flavorful
## 11735                                        flavorful
## 11736                                        flavorful
## 11737                                        flavorful
## 11738                                        flavorful
## 11739                                        flavorful
## 11740                                       flavorless
## 11741                                       flavorless
## 11742                                       flavorless
## 11743                                             flip
## 11744                                           fluffy
## 11745                                              fly
## 11746                                             folk
## 11747                                             folk
## 11748                                             folk
## 11749                                             folk
## 11750                                             folk
## 11751                                           follow
## 11752                                             food
## 11753                                             food
## 11754                                             food
## 11755                                             food
## 11756                                             food
## 11757                                             food
## 11758                                             food
## 11759                                             food
## 11760                                             food
## 11761                                             food
## 11762                                             food
## 11763                                             food
## 11764                                             food
## 11765                                             food
## 11766                                             food
## 11767                                             food
## 11768                                             food
## 11769                                             food
## 11770                                             food
## 11771                                             food
## 11772                                             food
## 11773                                             food
## 11774                                             food
## 11775                                             food
## 11776                                             food
## 11777                                             food
## 11778                                             food
## 11779                                             food
## 11780                                             food
## 11781                                             food
## 11782                                             food
## 11783                                             food
## 11784                                             food
## 11785                                             food
## 11786                                             food
## 11787                                             food
## 11788                                             food
## 11789                                             food
## 11790                                             food
## 11791                                             food
## 11792                                             food
## 11793                                             food
## 11794                                             food
## 11795                                             food
## 11796                                             foot
## 11797                                             foot
## 11798                                            force
## 11799                                        foreigner
## 11800                                          forever
## 11801                                          forever
## 11802                                           forget
## 11803                                           forget
## 11804                                           forget
## 11805                                           forget
## 11806                                           forget
## 11807                                           forget
## 11808                                         formerly
## 11809                                          forward
## 11810                                          forward
## 11811                                          forward
## 11812                                          founder
## 11813                                             four
## 11814                                             four
## 11815                                             four
## 11816                                             four
## 11817                                          frankly
## 11818                                            freak
## 11819                                             free
## 11820                                             free
## 11821                                             free
## 11822                                             free
## 11823                                           freeze
## 11824                                           freeze
## 11825                                           freeze
## 11826                                           freeze
## 11827                                           french
## 11828                                            fresh
## 11829                                            fresh
## 11830                                            fresh
## 11831                                            fresh
## 11832                                            fresh
## 11833                                            fresh
## 11834                                            fresh
## 11835                                            fresh
## 11836                                            fresh
## 11837                                            fresh
## 11838                                            fresh
## 11839                                            fresh
## 11840                                           fridge
## 11841                                           friend
## 11842                                           friend
## 11843                                           friend
## 11844                                           friend
## 11845                                           friend
## 11846                                           friend
## 11847                                           friend
## 11848                                           friend
## 11849                                           friend
## 11850                                           friend
## 11851                                           friend
## 11852                                           friend
## 11853                                           friend
## 11854                                           friend
## 11855                                           friend
## 11856                                           friend
## 11857                                           friend
## 11858                                         friendly
## 11859                                         friendly
## 11860                                         friendly
## 11861                                         friendly
## 11862                                         friendly
## 11863                                         friendly
## 11864                                         friendly
## 11865                                         friendly
## 11866                                         friendly
## 11867                                         friendly
## 11868                                            front
## 11869                                            front
## 11870                                            front
## 11871                                            front
## 11872                                            front
## 11873                                            front
## 11874                                            front
## 11875                                            front
## 11876                                              fry
## 11877                                              fry
## 11878                                              fry
## 11879                                              fry
## 11880                                              fry
## 11881                                              fry
## 11882                                              fry
## 11883                                              fry
## 11884                                              fry
## 11885                                              fry
## 11886                                              fry
## 11887                                              fry
## 11888                                              fry
## 11889                                              fry
## 11890                                              fry
## 11891                                              fry
## 11892                                              fry
## 11893                                              fry
## 11894                                              fry
## 11895                                              fry
## 11896                                              fry
## 11897                                              fry
## 11898                                              fry
## 11899                                              fry
## 11900                                              fry
## 11901                                              fry
## 11902                                              fry
## 11903                                              fry
## 11904                                              fry
## 11905                                              fry
## 11906                                              fry
## 11907                                              fry
## 11908                                              fry
## 11909                                              fry
## 11910                                              fry
## 11911                                              fry
## 11912                                              fry
## 11913                                              fry
## 11914                                              fry
## 11915                                              fry
## 11916                                              fry
## 11917                                              fry
## 11918                                              fry
## 11919                                              fry
## 11920                                              fry
## 11921                                              fry
## 11922                                              fry
## 11923                                              fry
## 11924                                              fry
## 11925                                              fry
## 11926                                              fry
## 11927                                              fry
## 11928                                              fry
## 11929                                              fry
## 11930                                              fry
## 11931                                              fry
## 11932                                               ft
## 11933                                             fuck
## 11934                                             full
## 11935                                             full
## 11936                                             full
## 11937                                             full
## 11938                                             full
## 11939                                             full
## 11940                                              fun
## 11941                                              fun
## 11942                                              fun
## 11943                                              fun
## 11944                                              fun
## 11945                                              fun
## 11946                                              fun
## 11947                                              fun
## 11948                                              fun
## 11949                                              fun
## 11950                                            funny
## 11951                                             gain
## 11952                                             game
## 11953                                             game
## 11954                                          garbage
## 11955                                            gaudy
## 11956                                            gaudy
## 11957                                          general
## 11958                                         generous
## 11959                                         generous
## 11960                                         generous
## 11961                                             geno
## 11962                                             geno
## 11963                                             geno
## 11964                                             geno
## 11965                                             geno
## 11966                                             geno
## 11967                                            genos
## 11968                                            genos
## 11969                                            genos
## 11970                                            genos
## 11971                                            genos
## 11972                                            genos
## 11973                                            genos
## 11974                                            genos
## 11975                                            genos
## 11976                                            genos
## 11977                                            genos
## 11978                                            genos
## 11979                                            genos
## 11980                                            genos
## 11981                                            genos
## 11982                                            genos
## 11983                                            genos
## 11984                                            genos
## 11985                                            genos
## 11986                                            genos
## 11987                                            genos
## 11988                                            genos
## 11989                                            genos
## 11990                                            genos
## 11991                                            genos
## 11992                                            genos
## 11993                                            genos
## 11994                                            genos
## 11995                                            genos
## 11996                                            genos
## 11997                                            genos
## 11998                                            genos
## 11999                                            genos
## 12000                                            genos
## 12001                                            genos
## 12002                                            genos
## 12003                                            genos
## 12004                                            genos
## 12005                                            genos
## 12006                                            genos
## 12007                                            genos
## 12008                                            genos
## 12009                                            genos
## 12010                                            genos
## 12011                                            genos
## 12012                                            genos
## 12013                                            genos
## 12014                                            genos
## 12015                                            genos
## 12016                                            genos
## 12017                                            genos
## 12018                                            genos
## 12019                                            genos
## 12020                                            genos
## 12021                                            genos
## 12022                                            genos
## 12023                                            genos
## 12024                                            genos
## 12025                                            genos
## 12026                                            genos
## 12027                                            genos
## 12028                                            genos
## 12029                                            genos
## 12030                                            genos
## 12031                                            genos
## 12032                                            genos
## 12033                                            genos
## 12034                                            genos
## 12035                                            genos
## 12036                                            genos
## 12037                                            genos
## 12038                                            genos
## 12039                                            genos
## 12040                                            genos
## 12041                                            genos
## 12042                                            genos
## 12043                                            genos
## 12044                                            genos
## 12045                                            genos
## 12046                                            genos
## 12047                                            genos
## 12048                                            genos
## 12049                                            genos
## 12050                                            genos
## 12051                                            genos
## 12052                                            genos
## 12053                                            genos
## 12054                                            genos
## 12055                                            genos
## 12056                                            genos
## 12057                                            genos
## 12058                                            genos
## 12059                                            genos
## 12060                                            genos
## 12061                                            genos
## 12062                                            genos
## 12063                                            genos
## 12064                                            genos
## 12065                                            genos
## 12066                                            genos
## 12067                                            genos
## 12068                                            genos
## 12069                                            genos
## 12070                                            genos
## 12071                                            genos
## 12072                                            genos
## 12073                                            genos
## 12074                                            genos
## 12075                                            genos
## 12076                                            genos
## 12077                                            genos
## 12078                                            genos
## 12079                                            genos
## 12080                                            genos
## 12081                                            genos
## 12082                                            genos
## 12083                                            genos
## 12084                                            genos
## 12085                                            genos
## 12086                                            genos
## 12087                                            genos
## 12088                                            genos
## 12089                                            genos
## 12090                                            genos
## 12091                                            genos
## 12092                                            genos
## 12093                                            genos
## 12094                                            genos
## 12095                                            genos
## 12096                                            genos
## 12097                                        genospats
## 12098                                        gentleman
## 12099                                        genuinely
## 12100                                           george
## 12101                                              get
## 12102                                              get
## 12103                                              get
## 12104                                              get
## 12105                                              get
## 12106                                              get
## 12107                                              get
## 12108                                              get
## 12109                                              get
## 12110                                              get
## 12111                                              get
## 12112                                              get
## 12113                                              get
## 12114                                              get
## 12115                                              get
## 12116                                              get
## 12117                                              get
## 12118                                              get
## 12119                                              get
## 12120                                              get
## 12121                                              get
## 12122                                              get
## 12123                                              get
## 12124                                              get
## 12125                                              get
## 12126                                              get
## 12127                                              get
## 12128                                              get
## 12129                                              get
## 12130                                              get
## 12131                                              get
## 12132                                              get
## 12133                                              get
## 12134                                              get
## 12135                                              get
## 12136                                              get
## 12137                                              get
## 12138                                              get
## 12139                                              get
## 12140                                              get
## 12141                                              get
## 12142                                              get
## 12143                                              get
## 12144                                              get
## 12145                                              get
## 12146                                              get
## 12147                                              get
## 12148                                              get
## 12149                                              get
## 12150                                              get
## 12151                                              get
## 12152                                              get
## 12153                                              get
## 12154                                              get
## 12155                                              get
## 12156                                              get
## 12157                                              get
## 12158                                              get
## 12159                                              get
## 12160                                              get
## 12161                                              get
## 12162                                              get
## 12163                                              get
## 12164                                              get
## 12165                                              get
## 12166                                              get
## 12167                                              get
## 12168                                              get
## 12169                                              get
## 12170                                              get
## 12171                                              get
## 12172                                              get
## 12173                                              get
## 12174                                              get
## 12175                                              get
## 12176                                              get
## 12177                                              get
## 12178                                              get
## 12179                                              get
## 12180                                              get
## 12181                                              get
## 12182                                              get
## 12183                                              get
## 12184                                              get
## 12185                                              get
## 12186                                              get
## 12187                                              get
## 12188                                              get
## 12189                                              get
## 12190                                              get
## 12191                                              get
## 12192                                              get
## 12193                                              get
## 12194                                              get
## 12195                                              get
## 12196                                              get
## 12197                                               gf
## 12198                                           ginger
## 12199                                            ginos
## 12200                                            ginos
## 12201                                            ginos
## 12202                                            ginos
## 12203                                            ginos
## 12204                                            ginos
## 12205                                            ginos
## 12206                                             girl
## 12207                                             girl
## 12208                                       girlfriend
## 12209                                       girlfriend
## 12210                                       girlfriend
## 12211                                             give
## 12212                                             give
## 12213                                             give
## 12214                                             give
## 12215                                             give
## 12216                                             give
## 12217                                             give
## 12218                                             give
## 12219                                             give
## 12220                                             give
## 12221                                             give
## 12222                                             give
## 12223                                             give
## 12224                                             give
## 12225                                             give
## 12226                                             give
## 12227                                             give
## 12228                                             give
## 12229                                             give
## 12230                                             give
## 12231                                             give
## 12232                                             give
## 12233                                             give
## 12234                                             give
## 12235                                             give
## 12236                                             give
## 12237                                             give
## 12238                                             give
## 12239                                             give
## 12240                                             give
## 12241                                             give
## 12242                                             give
## 12243                                             give
## 12244                                             give
## 12245                                             glad
## 12246                                             glad
## 12247                                             glad
## 12248                                             glad
## 12249                                             glad
## 12250                                           glance
## 12251                                            glass
## 12252                                          glorify
## 12253                                          glorify
## 12254                                            glove
## 12255                                               go
## 12256                                               go
## 12257                                               go
## 12258                                               go
## 12259                                               go
## 12260                                               go
## 12261                                               go
## 12262                                               go
## 12263                                               go
## 12264                                               go
## 12265                                               go
## 12266                                               go
## 12267                                               go
## 12268                                               go
## 12269                                               go
## 12270                                               go
## 12271                                               go
## 12272                                               go
## 12273                                               go
## 12274                                               go
## 12275                                               go
## 12276                                               go
## 12277                                               go
## 12278                                               go
## 12279                                               go
## 12280                                               go
## 12281                                               go
## 12282                                               go
## 12283                                               go
## 12284                                               go
## 12285                                               go
## 12286                                               go
## 12287                                               go
## 12288                                               go
## 12289                                               go
## 12290                                               go
## 12291                                               go
## 12292                                               go
## 12293                                               go
## 12294                                               go
## 12295                                               go
## 12296                                               go
## 12297                                               go
## 12298                                               go
## 12299                                               go
## 12300                                               go
## 12301                                               go
## 12302                                               go
## 12303                                               go
## 12304                                               go
## 12305                                               go
## 12306                                               go
## 12307                                               go
## 12308                                               go
## 12309                                               go
## 12310                                               go
## 12311                                               go
## 12312                                               go
## 12313                                               go
## 12314                                               go
## 12315                                               go
## 12316                                               go
## 12317                                               go
## 12318                                               go
## 12319                                               go
## 12320                                               go
## 12321                                               go
## 12322                                               go
## 12323                                               go
## 12324                                               go
## 12325                                               go
## 12326                                               go
## 12327                                               go
## 12328                                               go
## 12329                                               go
## 12330                                               go
## 12331                                               go
## 12332                                               go
## 12333                                               go
## 12334                                               go
## 12335                                               go
## 12336                                               go
## 12337                                               go
## 12338                                               go
## 12339                                               go
## 12340                                               go
## 12341                                              god
## 12342                                             gold
## 12343                                            gonna
## 12344                                            gonna
## 12345                                            gonna
## 12346                                             good
## 12347                                             good
## 12348                                             good
## 12349                                             good
## 12350                                             good
## 12351                                             good
## 12352                                             good
## 12353                                             good
## 12354                                             good
## 12355                                             good
## 12356                                             good
## 12357                                             good
## 12358                                             good
## 12359                                             good
## 12360                                             good
## 12361                                             good
## 12362                                             good
## 12363                                             good
## 12364                                             good
## 12365                                             good
## 12366                                             good
## 12367                                             good
## 12368                                             good
## 12369                                             good
## 12370                                             good
## 12371                                             good
## 12372                                             good
## 12373                                             good
## 12374                                             good
## 12375                                             good
## 12376                                             good
## 12377                                             good
## 12378                                             good
## 12379                                             good
## 12380                                             good
## 12381                                             good
## 12382                                             good
## 12383                                             good
## 12384                                             good
## 12385                                             good
## 12386                                             good
## 12387                                             good
## 12388                                             good
## 12389                                             good
## 12390                                             good
## 12391                                             good
## 12392                                             good
## 12393                                             good
## 12394                                             good
## 12395                                             good
## 12396                                             good
## 12397                                             good
## 12398                                             good
## 12399                                             good
## 12400                                             good
## 12401                                             good
## 12402                                             good
## 12403                                             good
## 12404                                             good
## 12405                                             good
## 12406                                             good
## 12407                                             good
## 12408                                             good
## 12409                                             good
## 12410                                             good
## 12411                                             good
## 12412                                             good
## 12413                                             good
## 12414                                             good
## 12415                                             good
## 12416                                             good
## 12417                                             good
## 12418                                             good
## 12419                                             good
## 12420                                             good
## 12421                                             good
## 12422                                             good
## 12423                                             good
## 12424                                             good
## 12425                                             good
## 12426                                             good
## 12427                                             good
## 12428                                             good
## 12429                                             good
## 12430                                             good
## 12431                                             good
## 12432                                             good
## 12433                                             good
## 12434                                             good
## 12435                                             good
## 12436                                             good
## 12437                                             good
## 12438                                             good
## 12439                                             good
## 12440                                             good
## 12441                                             good
## 12442                                             good
## 12443                                             good
## 12444                                             good
## 12445                                             good
## 12446                                             good
## 12447                                             good
## 12448                                             good
## 12449                                             good
## 12450                                             good
## 12451                                             good
## 12452                                             good
## 12453                                             good
## 12454                                             good
## 12455                                             good
## 12456                                             good
## 12457                                             good
## 12458                                             good
## 12459                                             good
## 12460                                             good
## 12461                                             good
## 12462                                             good
## 12463                                             good
## 12464                                             good
## 12465                                            gooey
## 12466                                            gooey
## 12467                                          googled
## 12468                                             goto
## 12469                                            gotta
## 12470                                            gotta
## 12471                                            gotta
## 12472                                            gotta
## 12473                                            gotta
## 12474                                             grab
## 12475                                             grab
## 12476                                             grab
## 12477                                             grab
## 12478                                             grad
## 12479                                           grease
## 12480                                           grease
## 12481                                           grease
## 12482                                           grease
## 12483                                           greasy
## 12484                                           greasy
## 12485                                           greasy
## 12486                                           greasy
## 12487                                           greasy
## 12488                                           greasy
## 12489                                           greasy
## 12490                                           greasy
## 12491                                           greasy
## 12492                                           greasy
## 12493                                           greasy
## 12494                                           greasy
## 12495                                           greasy
## 12496                                           greasy
## 12497                               greasygrizzlyscary
## 12498                                            great
## 12499                                            great
## 12500                                            great
## 12501                                            great
## 12502                                            great
## 12503                                            great
## 12504                                            great
## 12505                                            great
## 12506                                            great
## 12507                                            great
## 12508                                            great
## 12509                                            great
## 12510                                            great
## 12511                                            great
## 12512                                            great
## 12513                                            great
## 12514                                            great
## 12515                                            great
## 12516                                            great
## 12517                                            great
## 12518                                            great
## 12519                                            great
## 12520                                            great
## 12521                                            great
## 12522                                            great
## 12523                                            great
## 12524                                            great
## 12525                                            great
## 12526                                            great
## 12527                                            great
## 12528                                            great
## 12529                                            great
## 12530                                          greatly
## 12531                                            grill
## 12532                                            grill
## 12533                                            grill
## 12534                                            grill
## 12535                                            grill
## 12536                                            grill
## 12537                                            grill
## 12538                                            grill
## 12539                                            grill
## 12540                                            grill
## 12541                                            grill
## 12542                                            gross
## 12543                                            gross
## 12544                                            gross
## 12545                                            gross
## 12546                                            gross
## 12547                                            gross
## 12548                                            group
## 12549                                            group
## 12550                                            group
## 12551                                            group
## 12552                                             grow
## 12553                                             grow
## 12554                                             grow
## 12555                                            gruff
## 12556                                        guarantee
## 12557                                            guess
## 12558                                            guess
## 12559                                            guess
## 12560                                            guess
## 12561                                            guess
## 12562                                            guess
## 12563                                            guess
## 12564                                            guest
## 12565                                            gummy
## 12566                                              guy
## 12567                                              guy
## 12568                                              guy
## 12569                                              guy
## 12570                                              guy
## 12571                                              guy
## 12572                                              guy
## 12573                                              guy
## 12574                                              guy
## 12575                                              guy
## 12576                                              guy
## 12577                                            hadnt
## 12578                                             hair
## 12579                                             hair
## 12580                                             half
## 12581                                             half
## 12582                                             half
## 12583                                             half
## 12584                                             half
## 12585                                             half
## 12586                                             half
## 12587                                             hall
## 12588                                             hall
## 12589                                             hand
## 12590                                             hand
## 12591                                             hand
## 12592                                             hand
## 12593                                             hand
## 12594                                             hand
## 12595                                             hand
## 12596                                             hand
## 12597                                           handle
## 12598                                           happen
## 12599                                           happen
## 12600                                           happen
## 12601                                           happen
## 12602                                           happen
## 12603                                            happy
## 12604                                            happy
## 12605                                             hard
## 12606                                             hard
## 12607                                             hard
## 12608                                             hard
## 12609                                             hard
## 12610                                             hard
## 12611                                             hard
## 12612                                             hard
## 12613                                             hard
## 12614                                             hard
## 12615                                             hard
## 12616                                             hard
## 12617                                             hard
## 12618                                           hardly
## 12619                                           hardly
## 12620                                            hasnt
## 12621                                             hate
## 12622                                             hate
## 12623                                             hate
## 12624                                             hate
## 12625                                             hate
## 12626                                             hate
## 12627                                             hate
## 12628                                           havent
## 12629                                           havent
## 12630                                           havent
## 12631                                           havent
## 12632                                             head
## 12633                                             head
## 12634                                             head
## 12635                                             head
## 12636                                       headtohead
## 12637                                          healthy
## 12638                                             hear
## 12639                                             hear
## 12640                                             hear
## 12641                                             hear
## 12642                                             hear
## 12643                                             hear
## 12644                                             hear
## 12645                                            heart
## 12646                                            heart
## 12647                                            heavy
## 12648                                            heavy
## 12649                                             heck
## 12650                                             hell
## 12651                                             hell
## 12652                                             hell
## 12653                                             hell
## 12654                                             help
## 12655                                             help
## 12656                                             help
## 12657                                             help
## 12658                                             help
## 12659                                          helpful
## 12660                                            herei
## 12661                                            heres
## 12662                                            heres
## 12663                                            heres
## 12664                                            heres
## 12665                                            heres
## 12666                                              hes
## 12667                                              hes
## 12668                                              hey
## 12669                                              hey
## 12670                                              hey
## 12671                                              hey
## 12672                                              hey
## 12673                                              hey
## 12674                                             high
## 12675                                             high
## 12676                                             high
## 12677                                        highlight
## 12678                                           highly
## 12679                                           highly
## 12680                                           highly
## 12681                                             hint
## 12682                                         hispanic
## 12683                                          history
## 12684                                          history
## 12685                                          history
## 12686                                          history
## 12687                                          history
## 12688                                          history
## 12689                                              hit
## 12690                                              hit
## 12691                                              hmm
## 12692                                           hoagie
## 12693                                             hold
## 12694                                             hold
## 12695                                             hold
## 12696                                             home
## 12697                                             home
## 12698                                             home
## 12699                                             home
## 12700                                             home
## 12701                                             home
## 12702                                             home
## 12703                                             home
## 12704                                             home
## 12705                                             home
## 12706                                             home
## 12707                                             home
## 12708                                             home
## 12709                                             home
## 12710                                           honest
## 12711                                           honest
## 12712                                           honest
## 12713                                         honestly
## 12714                                         honestly
## 12715                                         honestly
## 12716                                         honestly
## 12717                                         honestly
## 12718                                            honor
## 12719                                             hope
## 12720                                             hope
## 12721                                             hope
## 12722                                             hope
## 12723                                             hope
## 12724                                         horrible
## 12725                                         horrible
## 12726                                         horrible
## 12727                                         horrible
## 12728                                         horrible
## 12729                                         horrible
## 12730                                         horrible
## 12731                                         horrible
## 12732                                         horrible
## 12733                                            horse
## 12734                                              hot
## 12735                                              hot
## 12736                                              hot
## 12737                                              hot
## 12738                                              hot
## 12739                                              hot
## 12740                                              hot
## 12741                                              hot
## 12742                                              hot
## 12743                                              hot
## 12744                                              hot
## 12745                                              hot
## 12746                                              hot
## 12747                                            hotel
## 12748                                            hotel
## 12749                                             hour
## 12750                                             hour
## 12751                                             hour
## 12752                                             hour
## 12753                                             hour
## 12754                                             hour
## 12755                                             hour
## 12756                                             hour
## 12757                                             hour
## 12758                                             hour
## 12759                                             hour
## 12760                                            house
## 12761                                          however
## 12762                                          however
## 12763                                          however
## 12764                                          however
## 12765                                          however
## 12766                                          however
## 12767                                          however
## 12768                                          however
## 12769                                          however
## 12770                                          however
## 12771                                          however
## 12772                                          however
## 12773                                          however
## 12774                                          however
## 12775                                          however
## 12776                                          however
## 12777                                          however
## 12778                                          however
## 12779                                          however
## 12780                                          however
## 12781                                            hubby
## 12782                                            hubby
## 12783                                             huge
## 12784                                             huge
## 12785                                             huge
## 12786                                             huge
## 12787                                            human
## 12788                                          hundred
## 12789                                           hungry
## 12790                                           hungry
## 12791                                           hungry
## 12792                                           hungry
## 12793                                           hungry
## 12794                                           hungry
## 12795                                             hurt
## 12796                                          husband
## 12797                                          husband
## 12798                                          husband
## 12799                                          husband
## 12800                                          husband
## 12801                                          husband
## 12802                                          husband
## 12803                                          husband
## 12804                                             hype
## 12805                                             hype
## 12806                                             hype
## 12807                                             hype
## 12808                                             hype
## 12809                                             hype
## 12810                                             hype
## 12811                                             hype
## 12812                                             hype
## 12813                                             hype
## 12814                                             hype
## 12815                                             hype
## 12816                                             hype
## 12817                                             hype
## 12818                                             hype
## 12819                                             hype
## 12820                                             hype
## 12821                                             hype
## 12822                                             hype
## 12823                                             hype
## 12824                                             hype
## 12825                                              ice
## 12826                                           iconic
## 12827                                           iconic
## 12828                                           iconic
## 12829                                               id
## 12830                                               id
## 12831                                               id
## 12832                                               id
## 12833                                               id
## 12834                                               id
## 12835                                               id
## 12836                                               id
## 12837                                               id
## 12838                                               id
## 12839                                               id
## 12840                                             idea
## 12841                                             idea
## 12842                                             idea
## 12843                                             idea
## 12844                                             idea
## 12845                                            idiot
## 12846                                             idol
## 12847                                         ignorant
## 12848                                         ignorant
## 12849                                         ignorant
## 12850                                           ignore
## 12851                                              ill
## 12852                                              ill
## 12853                                              ill
## 12854                                              ill
## 12855                                              ill
## 12856                                              ill
## 12857                                              ill
## 12858                                              ill
## 12859                                              ill
## 12860                                              ill
## 12861                                              ill
## 12862                                          illegal
## 12863                                        illegally
## 12864                                               im
## 12865                                               im
## 12866                                               im
## 12867                                               im
## 12868                                               im
## 12869                                               im
## 12870                                               im
## 12871                                               im
## 12872                                               im
## 12873                                               im
## 12874                                               im
## 12875                                               im
## 12876                                               im
## 12877                                               im
## 12878                                               im
## 12879                                               im
## 12880                                               im
## 12881                                               im
## 12882                                               im
## 12883                                               im
## 12884                                               im
## 12885                                               im
## 12886                                               im
## 12887                                               im
## 12888                                               im
## 12889                                               im
## 12890                                               im
## 12891                                               im
## 12892                                               im
## 12893                                               im
## 12894                                               im
## 12895                                               im
## 12896                                               im
## 12897                                               im
## 12898                                               im
## 12899                                               im
## 12900                                               im
## 12901                                            image
## 12902                                      immediately
## 12903                                      immediately
## 12904                                        immigrant
## 12905                                        immigrant
## 12906                                        important
## 12907                                          impress
## 12908                                          impress
## 12909                                          impress
## 12910                                          impress
## 12911                                          impress
## 12912                                          impress
## 12913                                          impress
## 12914                                          impress
## 12915                                          impress
## 12916                                          impress
## 12917                                       impression
## 12918                                       impressive
## 12919                                        impromptu
## 12920                                          improve
## 12921                                          improve
## 12922                                          improve
## 12923                                             inch
## 12924                                          include
## 12925                                          include
## 12926                                          include
## 12927                                       incredibly
## 12928                                       incredibly
## 12929                                       incredibly
## 12930                                           indoor
## 12931                                           indoor
## 12932                                         infamous
## 12933                                         inferior
## 12934                                       infinitely
## 12935                                       ingredient
## 12936                                       ingredient
## 12937                                       ingredient
## 12938                                       ingredient
## 12939                                         insanely
## 12940                                           inside
## 12941                                           inside
## 12942                                           inside
## 12943                                           inside
## 12944                                           inside
## 12945                                           inside
## 12946                                           insist
## 12947                                          instead
## 12948                                          instead
## 12949                                          instead
## 12950                                          instead
## 12951                                          instead
## 12952                                          instead
## 12953                                          instead
## 12954                                          instead
## 12955                                          instead
## 12956                                          instead
## 12957                                          instead
## 12958                                      institution
## 12959                                     insufficient
## 12960                                           insult
## 12961                                           intact
## 12962                                     intersection
## 12963                                     intersection
## 12964                                           invent
## 12965                                           invent
## 12966                                           invent
## 12967                                           invite
## 12968                                     ishkabibbles
## 12969                                             isnt
## 12970                                             isnt
## 12971                                             isnt
## 12972                                             isnt
## 12973                                             isnt
## 12974                                             isnt
## 12975                                             isnt
## 12976                                             isnt
## 12977                                            issue
## 12978                                            issue
## 12979                                          italian
## 12980                                          italian
## 12981                                          italian
## 12982                                          italian
## 12983                                          italian
## 12984                                             item
## 12985                                             item
## 12986                                             itll
## 12987                                              ive
## 12988                                              ive
## 12989                                              ive
## 12990                                              ive
## 12991                                              ive
## 12992                                              ive
## 12993                                              ive
## 12994                                              ive
## 12995                                              ive
## 12996                                              ive
## 12997                                              ive
## 12998                                              ive
## 12999                                              ive
## 13000                                              ive
## 13001                                              ive
## 13002                                              ive
## 13003                                              ive
## 13004                                              jed
## 13005                                            jerky
## 13006                                           jerrys
## 13007                                           jersey
## 13008                                           jersey
## 13009                                           jersey
## 13010                                            jimmy
## 13011                                             jims
## 13012                                             jims
## 13013                                             jims
## 13014                                             jims
## 13015                                             jims
## 13016                                             jims
## 13017                                             jims
## 13018                                             jims
## 13019                                             jims
## 13020                                             jims
## 13021                                             jims
## 13022                                             jims
## 13023                                             jims
## 13024                                              job
## 13025                                              job
## 13026                                              job
## 13027                                              joe
## 13028                                              joe
## 13029                                            joint
## 13030                                            joint
## 13031                                            joint
## 13032                                            joint
## 13033                                            joint
## 13034                                            joint
## 13035                                            joint
## 13036                                            joint
## 13037                                            joint
## 13038                                             joke
## 13039                                          journey
## 13040                                            judge
## 13041                                            judge
## 13042                                            juicy
## 13043                                            juicy
## 13044                                            juicy
## 13045                                            juicy
## 13046                                            juicy
## 13047                                            juicy
## 13048                                            juicy
## 13049                                            juicy
## 13050                                            juicy
## 13051                                             july
## 13052                                             just
## 13053                                             just
## 13054                                             just
## 13055                                             just
## 13056                                             just
## 13057                                             just
## 13058                                             just
## 13059                                             just
## 13060                                             just
## 13061                                             just
## 13062                                             just
## 13063                                             just
## 13064                                             just
## 13065                                             just
## 13066                                             just
## 13067                                             just
## 13068                                             just
## 13069                                             just
## 13070                                             just
## 13071                                             just
## 13072                                             just
## 13073                                             just
## 13074                                             just
## 13075                                             just
## 13076                                             just
## 13077                                             just
## 13078                                             just
## 13079                                             just
## 13080                                             just
## 13081                                             just
## 13082                                             just
## 13083                                             just
## 13084                                             just
## 13085                                             just
## 13086                                             just
## 13087                                             just
## 13088                                             just
## 13089                                             just
## 13090                                             just
## 13091                                             just
## 13092                                             just
## 13093                                             just
## 13094                                             just
## 13095                                             just
## 13096                                             just
## 13097                                             just
## 13098                                             just
## 13099                                             just
## 13100                                             just
## 13101                                             just
## 13102                                             just
## 13103                                             just
## 13104                                             just
## 13105                                             just
## 13106                                             just
## 13107                                             just
## 13108                                             just
## 13109                                             just
## 13110                                             just
## 13111                                             just
## 13112                                             just
## 13113                                             just
## 13114                                             just
## 13115                                             just
## 13116                                             just
## 13117                                             just
## 13118                                             just
## 13119                                             just
## 13120                                             just
## 13121                                             just
## 13122                                             just
## 13123                                             just
## 13124                                             just
## 13125                                             just
## 13126                                             just
## 13127                                             just
## 13128                                             keep
## 13129                                             keep
## 13130                                             keep
## 13131                                             keep
## 13132                                             keep
## 13133                                             keep
## 13134                                             keep
## 13135                                             keep
## 13136                                          ketchup
## 13137                                          ketchup
## 13138                                          ketchup
## 13139                                          ketchup
## 13140                                          ketchup
## 13141                                          ketchup
## 13142                                              key
## 13143                                             kick
## 13144                                              kid
## 13145                                              kid
## 13146                                              kid
## 13147                                              kid
## 13148                                             kill
## 13149                                             kind
## 13150                                             kind
## 13151                                             kind
## 13152                                             kind
## 13153                                             kind
## 13154                                             kind
## 13155                                             kind
## 13156                                             kind
## 13157                                             kind
## 13158                                            kinda
## 13159                                            kinda
## 13160                                            kinda
## 13161                                            kinda
## 13162                                            kinda
## 13163                                           kindly
## 13164                                             king
## 13165                                             king
## 13166                                             king
## 13167                                             king
## 13168                                             king
## 13169                                             king
## 13170                                             king
## 13171                                          kitchen
## 13172                                          kitchen
## 13173                                          kitchen
## 13174                                            knife
## 13175                                             know
## 13176                                             know
## 13177                                             know
## 13178                                             know
## 13179                                             know
## 13180                                             know
## 13181                                             know
## 13182                                             know
## 13183                                             know
## 13184                                             know
## 13185                                             know
## 13186                                             know
## 13187                                             know
## 13188                                             know
## 13189                                             know
## 13190                                             know
## 13191                                             know
## 13192                                             know
## 13193                                             know
## 13194                                             know
## 13195                                             know
## 13196                                             know
## 13197                                             know
## 13198                                             know
## 13199                                             know
## 13200                                             know
## 13201                                             know
## 13202                                             know
## 13203                                             know
## 13204                                             know
## 13205                                            kraft
## 13206                                            kraft
## 13207                                             lack
## 13208                                             lack
## 13209                                             lack
## 13210                                             lack
## 13211                                             lack
## 13212                                             lack
## 13213                                             lack
## 13214                                             lack
## 13215                                             lack
## 13216                                             lack
## 13217                                             lack
## 13218                                             lack
## 13219                                             lady
## 13220                                             lady
## 13221                                             lady
## 13222                                             lame
## 13223                                             land
## 13224                                             land
## 13225                                         landmark
## 13226                                         landmark
## 13227                                         language
## 13228                                         language
## 13229                                            large
## 13230                                            large
## 13231                                            large
## 13232                                            large
## 13233                                            large
## 13234                                            large
## 13235                                            large
## 13236                                            large
## 13237                                            large
## 13238                                            large
## 13239                                             last
## 13240                                             last
## 13241                                             last
## 13242                                             last
## 13243                                             last
## 13244                                             last
## 13245                                             last
## 13246                                             last
## 13247                                             last
## 13248                                             last
## 13249                                             last
## 13250                                             late
## 13251                                             late
## 13252                                             late
## 13253                                             late
## 13254                                             late
## 13255                                             late
## 13256                                             late
## 13257                                             late
## 13258                                             late
## 13259                                             late
## 13260                                             late
## 13261                                           latino
## 13262                                             lead
## 13263                                             lead
## 13264                                             lead
## 13265                                             leak
## 13266                                            learn
## 13267                                            learn
## 13268                                            learn
## 13269                                            leave
## 13270                                            leave
## 13271                                            leave
## 13272                                            leave
## 13273                                            leave
## 13274                                            leave
## 13275                                            leave
## 13276                                            leave
## 13277                                            leave
## 13278                                            leave
## 13279                                            leave
## 13280                                            leave
## 13281                                            leave
## 13282                                            leave
## 13283                                            legal
## 13284                                        legendary
## 13285                                        legendary
## 13286                                        legendary
## 13287                                            legit
## 13288                                             less
## 13289                                             less
## 13290                                             less
## 13291                                             less
## 13292                                             less
## 13293                                             less
## 13294                                             less
## 13295                                             less
## 13296                                             less
## 13297                                             less
## 13298                                             less
## 13299                                             less
## 13300                                             less
## 13301                                             less
## 13302                                             less
## 13303                                             less
## 13304                                             less
## 13305                                             less
## 13306                                           lesser
## 13307                                              let
## 13308                                              let
## 13309                                              let
## 13310                                              let
## 13311                                              let
## 13312                                              let
## 13313                                              let
## 13314                                              let
## 13315                                             lick
## 13316                                              lie
## 13317                                             life
## 13318                                             life
## 13319                                             life
## 13320                                             life
## 13321                                             life
## 13322                                             life
## 13323                                             life
## 13324                                             life
## 13325                                             life
## 13326                                             life
## 13327                                            light
## 13328                                            light
## 13329                                            light
## 13330                                            light
## 13331                                            light
## 13332                                            light
## 13333                                            light
## 13334                                            light
## 13335                                            light
## 13336                                            light
## 13337                                            light
## 13338                                            light
## 13339                                            light
## 13340                                            light
## 13341                                            light
## 13342                                            light
## 13343                                        lightning
## 13344                                             like
## 13345                                             like
## 13346                                             like
## 13347                                             like
## 13348                                             like
## 13349                                             like
## 13350                                             like
## 13351                                             like
## 13352                                             like
## 13353                                             like
## 13354                                             like
## 13355                                             like
## 13356                                             like
## 13357                                             like
## 13358                                             like
## 13359                                             like
## 13360                                             like
## 13361                                             like
## 13362                                             like
## 13363                                             like
## 13364                                             like
## 13365                                             like
## 13366                                             like
## 13367                                             like
## 13368                                             like
## 13369                                             like
## 13370                                             like
## 13371                                             like
## 13372                                             like
## 13373                                             like
## 13374                                             like
## 13375                                             like
## 13376                                             like
## 13377                                             like
## 13378                                             like
## 13379                                             like
## 13380                                             like
## 13381                                             like
## 13382                                             like
## 13383                                             like
## 13384                                             like
## 13385                                             like
## 13386                                             like
## 13387                                             like
## 13388                                             like
## 13389                                             like
## 13390                                             like
## 13391                                             like
## 13392                                             like
## 13393                                             like
## 13394                                             like
## 13395                                             like
## 13396                                             like
## 13397                                             like
## 13398                                             like
## 13399                                             like
## 13400                                             like
## 13401                                             like
## 13402                                             like
## 13403                                             like
## 13404                                             like
## 13405                                             like
## 13406                                             like
## 13407                                             like
## 13408                                             like
## 13409                                             like
## 13410                                             like
## 13411                                             like
## 13412                                             like
## 13413                                             like
## 13414                                           likely
## 13415                                           likely
## 13416                                            limit
## 13417                                            limit
## 13418                                            limit
## 13419                                            limit
## 13420                                          lincoln
## 13421                                             line
## 13422                                             line
## 13423                                             line
## 13424                                             line
## 13425                                             line
## 13426                                             line
## 13427                                             line
## 13428                                             line
## 13429                                             line
## 13430                                             line
## 13431                                             line
## 13432                                             line
## 13433                                             line
## 13434                                             line
## 13435                                             line
## 13436                                             line
## 13437                                             line
## 13438                                             line
## 13439                                             line
## 13440                                             line
## 13441                                             line
## 13442                                             line
## 13443                                             line
## 13444                                             line
## 13445                                             line
## 13446                                             line
## 13447                                             line
## 13448                                             line
## 13449                                             line
## 13450                                             line
## 13451                                             line
## 13452                                             line
## 13453                                             line
## 13454                                             line
## 13455                                             line
## 13456                                             line
## 13457                                             line
## 13458                                             line
## 13459                                             line
## 13460                                             line
## 13461                                             line
## 13462                                             line
## 13463                                             line
## 13464                                             line
## 13465                                             line
## 13466                                             line
## 13467                                             line
## 13468                                             line
## 13469                                             line
## 13470                                             line
## 13471                                             line
## 13472                                             line
## 13473                                             line
## 13474                                             line
## 13475                                             line
## 13476                                             line
## 13477                                             line
## 13478                                             line
## 13479                                             line
## 13480                                             line
## 13481                                            lingo
## 13482                                            lingo
## 13483                                           liquid
## 13484                                             list
## 13485                                             list
## 13486                                             list
## 13487                                             list
## 13488                                           listen
## 13489                                           listen
## 13490                                           listen
## 13491                                           listen
## 13492                                        literally
## 13493                                        literally
## 13494                                        literally
## 13495                                        literally
## 13496                                        literally
## 13497                                        literally
## 13498                                        literally
## 13499                                        literally
## 13500                                           little
## 13501                                           little
## 13502                                           little
## 13503                                           little
## 13504                                           little
## 13505                                           little
## 13506                                           little
## 13507                                           little
## 13508                                           little
## 13509                                           little
## 13510                                           little
## 13511                                           little
## 13512                                           little
## 13513                                           little
## 13514                                           little
## 13515                                           little
## 13516                                           little
## 13517                                           little
## 13518                                           little
## 13519                                           little
## 13520                                           little
## 13521                                           little
## 13522                                           little
## 13523                                           little
## 13524                                           little
## 13525                                           little
## 13526                                           little
## 13527                                           little
## 13528                                           little
## 13529                                           little
## 13530                                           little
## 13531                                           little
## 13532                                           little
## 13533                                           little
## 13534                                           little
## 13535                                           little
## 13536                                           little
## 13537                                           little
## 13538                                           little
## 13539                                             live
## 13540                                             live
## 13541                                             live
## 13542                                             live
## 13543                                             live
## 13544                                             live
## 13545                                             live
## 13546                                             live
## 13547                                               lo
## 13548                                            local
## 13549                                            local
## 13550                                            local
## 13551                                            local
## 13552                                            local
## 13553                                            local
## 13554                                            local
## 13555                                            local
## 13556                                            local
## 13557                                            local
## 13558                                            local
## 13559                                            local
## 13560                                            local
## 13561                                            local
## 13562                                            local
## 13563                                            local
## 13564                                           locate
## 13565                                           locate
## 13566                                           locate
## 13567                                           locate
## 13568                                         location
## 13569                                         location
## 13570                                         location
## 13571                                         location
## 13572                                         location
## 13573                                              lol
## 13574                                              lol
## 13575                                              lol
## 13576                                              lol
## 13577                                             long
## 13578                                             long
## 13579                                             long
## 13580                                             long
## 13581                                             long
## 13582                                             long
## 13583                                             long
## 13584                                             long
## 13585                                             long
## 13586                                             long
## 13587                                             long
## 13588                                             long
## 13589                                             long
## 13590                                             long
## 13591                                             long
## 13592                                             long
## 13593                                             long
## 13594                                             long
## 13595                                             long
## 13596                                             long
## 13597                                             long
## 13598                                             look
## 13599                                             look
## 13600                                             look
## 13601                                             look
## 13602                                             look
## 13603                                             look
## 13604                                             look
## 13605                                             look
## 13606                                             look
## 13607                                             look
## 13608                                             look
## 13609                                             look
## 13610                                             look
## 13611                                             look
## 13612                                             look
## 13613                                             look
## 13614                                             look
## 13615                                             look
## 13616                                             look
## 13617                                             look
## 13618                                             look
## 13619                                           looong
## 13620                                             lose
## 13621                                             lose
## 13622                                             lose
## 13623                                              lot
## 13624                                              lot
## 13625                                              lot
## 13626                                              lot
## 13627                                              lot
## 13628                                              lot
## 13629                                              lot
## 13630                                              lot
## 13631                                              lot
## 13632                                              lot
## 13633                                              lot
## 13634                                              lot
## 13635                                              lot
## 13636                                              lot
## 13637                                             love
## 13638                                             love
## 13639                                             love
## 13640                                             love
## 13641                                             love
## 13642                                             love
## 13643                                             love
## 13644                                             love
## 13645                                             love
## 13646                                             love
## 13647                                             love
## 13648                                             love
## 13649                                             love
## 13650                                             love
## 13651                                             love
## 13652                                             love
## 13653                                             love
## 13654                                             love
## 13655                                             love
## 13656                                             love
## 13657                                              low
## 13658                                              low
## 13659                                              low
## 13660                                              low
## 13661                                            loyal
## 13662                                          luckily
## 13663                                            lucky
## 13664                                            lucky
## 13665                                             luke
## 13666                                            lukes
## 13667                                            lukes
## 13668                                            lukes
## 13669                                            lukes
## 13670                                            lukes
## 13671                                            lukes
## 13672                                            lukes
## 13673                                            lukes
## 13674                                            lukes
## 13675                                            lunch
## 13676                                            lunch
## 13677                                            lunch
## 13678                                            macys
## 13679                                             main
## 13680                                            major
## 13681                                            major
## 13682                                         majority
## 13683                                             make
## 13684                                             make
## 13685                                             make
## 13686                                             make
## 13687                                             make
## 13688                                             make
## 13689                                             make
## 13690                                             make
## 13691                                             make
## 13692                                             make
## 13693                                             make
## 13694                                             make
## 13695                                             make
## 13696                                             make
## 13697                                             make
## 13698                                             make
## 13699                                             make
## 13700                                             make
## 13701                                             make
## 13702                                             make
## 13703                                             make
## 13704                                             make
## 13705                                             make
## 13706                                             make
## 13707                                             make
## 13708                                             make
## 13709                                             make
## 13710                                             make
## 13711                                             make
## 13712                                             make
## 13713                                             make
## 13714                                             make
## 13715                                             make
## 13716                                             make
## 13717                                             make
## 13718                                             make
## 13719                                             make
## 13720                                             make
## 13721                                             make
## 13722                                             make
## 13723                                             make
## 13724                                             make
## 13725                                             make
## 13726                                             make
## 13727                                             make
## 13728                                             make
## 13729                                             make
## 13730                                             make
## 13731                                             make
## 13732                                             make
## 13733                                             make
## 13734                                             make
## 13735                                             make
## 13736                                             make
## 13737                                             make
## 13738                                             make
## 13739                                            maker
## 13740                                             mall
## 13741                                              man
## 13742                                              man
## 13743                                              man
## 13744                                              man
## 13745                                              man
## 13746                                              man
## 13747                                           manage
## 13748                                       management
## 13749                                             many
## 13750                                             many
## 13751                                             many
## 13752                                             many
## 13753                                             many
## 13754                                             many
## 13755                                             many
## 13756                                             many
## 13757                                             many
## 13758                                             many
## 13759                                             many
## 13760                                             many
## 13761                                           margin
## 13762                                       marginally
## 13763                                         marinate
## 13764                                             mark
## 13765                                           market
## 13766                                           market
## 13767                                           market
## 13768                                           market
## 13769                                             mass
## 13770                                           matter
## 13771                                           matter
## 13772                                           matter
## 13773                                           matter
## 13774                                              max
## 13775                                              max
## 13776                                              may
## 13777                                              may
## 13778                                              may
## 13779                                              may
## 13780                                              may
## 13781                                              may
## 13782                                              may
## 13783                                              may
## 13784                                              may
## 13785                                              may
## 13786                                              may
## 13787                                              may
## 13788                                              may
## 13789                                              may
## 13790                                              may
## 13791                                              may
## 13792                                              may
## 13793                                              may
## 13794                                            maybe
## 13795                                            maybe
## 13796                                            maybe
## 13797                                            maybe
## 13798                                            maybe
## 13799                                            maybe
## 13800                                        mcdonalds
## 13801                                        mcdonalds
## 13802                                        mcdonalds
## 13803                                             meal
## 13804                                             meal
## 13805                                             meal
## 13806                                             meal
## 13807                                             mean
## 13808                                             mean
## 13809                                             mean
## 13810                                             mean
## 13811                                             mean
## 13812                                             mean
## 13813                                             mean
## 13814                                             mean
## 13815                                             mean
## 13816                                             mean
## 13817                                             meat
## 13818                                             meat
## 13819                                             meat
## 13820                                             meat
## 13821                                             meat
## 13822                                             meat
## 13823                                             meat
## 13824                                             meat
## 13825                                             meat
## 13826                                             meat
## 13827                                             meat
## 13828                                             meat
## 13829                                             meat
## 13830                                             meat
## 13831                                             meat
## 13832                                             meat
## 13833                                             meat
## 13834                                             meat
## 13835                                             meat
## 13836                                             meat
## 13837                                             meat
## 13838                                             meat
## 13839                                             meat
## 13840                                             meat
## 13841                                             meat
## 13842                                             meat
## 13843                                             meat
## 13844                                             meat
## 13845                                             meat
## 13846                                             meat
## 13847                                             meat
## 13848                                             meat
## 13849                                             meat
## 13850                                             meat
## 13851                                             meat
## 13852                                             meat
## 13853                                             meat
## 13854                                             meat
## 13855                                             meat
## 13856                                             meat
## 13857                                             meat
## 13858                                             meat
## 13859                                             meat
## 13860                                             meat
## 13861                                             meat
## 13862                                             meat
## 13863                                             meat
## 13864                                             meat
## 13865                                             meat
## 13866                                             meat
## 13867                                             meat
## 13868                                             meat
## 13869                                             meat
## 13870                                             meat
## 13871                                             meat
## 13872                                             meat
## 13873                                             meat
## 13874                                             meat
## 13875                                             meat
## 13876                                         meatball
## 13877                                         mediocre
## 13878                                         mediocre
## 13879                                         mediocre
## 13880                                         mediocre
## 13881                                         mediocre
## 13882                                             meet
## 13883                                             meet
## 13884                                             meet
## 13885                                             meet
## 13886                                              meh
## 13887                                              meh
## 13888                                              meh
## 13889                                              meh
## 13890                                             melt
## 13891                                             melt
## 13892                                             melt
## 13893                                             melt
## 13894                                             melt
## 13895                                             melt
## 13896                                             melt
## 13897                                             melt
## 13898                                          mention
## 13899                                          mention
## 13900                                          mention
## 13901                                          mention
## 13902                                          mention
## 13903                                          mention
## 13904                                             menu
## 13905                                             menu
## 13906                                             menu
## 13907                                             menu
## 13908                                             menu
## 13909                                            merch
## 13910                                           merica
## 13911                                             mess
## 13912                                             mess
## 13913                                             mess
## 13914                                             mess
## 13915                                             mess
## 13916                                            messy
## 13917                                            messy
## 13918                                            messy
## 13919                                            metal
## 13920                                          mexican
## 13921                                          mexican
## 13922                                              mid
## 13923                                              mid
## 13924                                           middle
## 13925                                           middle
## 13926                                           middle
## 13927                                           middle
## 13928                                           middle
## 13929                                             mike
## 13930                                             mile
## 13931                                             mile
## 13932                                         military
## 13933                                         military
## 13934                                              min
## 13935                                              min
## 13936                                             mind
## 13937                                             mind
## 13938                                             mind
## 13939                                             mind
## 13940                                             mind
## 13941                                             mind
## 13942                                             mind
## 13943                                             mind
## 13944                                             mind
## 13945                                             mind
## 13946                                             mine
## 13947                                             mine
## 13948                                             mine
## 13949                                             mine
## 13950                                             mine
## 13951                                           minute
## 13952                                           minute
## 13953                                           minute
## 13954                                           minute
## 13955                                           minute
## 13956                                           minute
## 13957                                           minute
## 13958                                           minute
## 13959                                           minute
## 13960                                           minute
## 13961                                           minute
## 13962                                           minute
## 13963                                           minute
## 13964                                        miserable
## 13965                                        miserable
## 13966                                             miss
## 13967                                             miss
## 13968                                             miss
## 13969                                          mission
## 13970                                          mistake
## 13971                                          mistake
## 13972                                              mix
## 13973                                              mix
## 13974                                          mixture
## 13975                                           modern
## 13976                                            moist
## 13977                                            money
## 13978                                            money
## 13979                                            money
## 13980                                            money
## 13981                                            money
## 13982                                            money
## 13983                                            money
## 13984                                            money
## 13985                                            money
## 13986                                            money
## 13987                                            money
## 13988                                            money
## 13989                                            money
## 13990                                            money
## 13991                                            money
## 13992                                          monster
## 13993                                            month
## 13994                                            month
## 13995                                          morning
## 13996                                          morning
## 13997                                           mostly
## 13998                                             moth
## 13999                                           motion
## 14000                                            mouth
## 14001                                            mouth
## 14002                                             move
## 14003                                             move
## 14004                                             move
## 14005                                             move
## 14006                                             much
## 14007                                             much
## 14008                                             much
## 14009                                             much
## 14010                                             much
## 14011                                             much
## 14012                                             much
## 14013                                             much
## 14014                                             much
## 14015                                             much
## 14016                                             much
## 14017                                             much
## 14018                                             much
## 14019                                             much
## 14020                                             much
## 14021                                             much
## 14022                                             much
## 14023                                             much
## 14024                                             much
## 14025                                             much
## 14026                                             much
## 14027                                             much
## 14028                                             much
## 14029                                             much
## 14030                                             much
## 14031                                             much
## 14032                                             much
## 14033                                             much
## 14034                                             much
## 14035                                             much
## 14036                                             much
## 14037                                         multiple
## 14038                                           museum
## 14039                                         mushroom
## 14040                                         mushroom
## 14041                                         mushroom
## 14042                                         mushroom
## 14043                                         mushroom
## 14044                                         mushroom
## 14045                                         mushroom
## 14046                                         mushroom
## 14047                                         mushroom
## 14048                                         mushroom
## 14049                                         mushroom
## 14050                                         mushroom
## 14051                                         mushroom
## 14052                                            mushy
## 14053                                            mushy
## 14054                                            music
## 14055                                             must
## 14056                                             must
## 14057                                             must
## 14058                                             must
## 14059                                             must
## 14060                                             must
## 14061                                          mustard
## 14062                                           mustgo
## 14063                                                n
## 14064                                                n
## 14065                                              nah
## 14066                                             name
## 14067                                             name
## 14068                                             name
## 14069                                             name
## 14070                                             name
## 14071                                             name
## 14072                                             name
## 14073                                           narrow
## 14074                                            nasty
## 14075                                            nasty
## 14076                                         national
## 14077                                           native
## 14078                                           native
## 14079                                           native
## 14080                                        naturally
## 14081                                        naturally
## 14082                                         nauseous
## 14083                                               nd
## 14084                                               nd
## 14085                                             near
## 14086                                             near
## 14087                                           nearby
## 14088                                           nearby
## 14089                                           nearly
## 14090                                             need
## 14091                                             need
## 14092                                             need
## 14093                                             need
## 14094                                             need
## 14095                                             need
## 14096                                             need
## 14097                                             need
## 14098                                             need
## 14099                                             need
## 14100                                             need
## 14101                                             need
## 14102                                             need
## 14103                                             need
## 14104                                             need
## 14105                                             need
## 14106                                             need
## 14107                                         neighbor
## 14108                                     neighborhood
## 14109                                     neighborhood
## 14110                                     neighborhood
## 14111                                     neighborhood
## 14112                                          neither
## 14113                                          neither
## 14114                                          neither
## 14115                                          neither
## 14116                                             neon
## 14117                                          network
## 14118                                          network
## 14119                                          network
## 14120                                          network
## 14121                                            never
## 14122                                            never
## 14123                                            never
## 14124                                            never
## 14125                                            never
## 14126                                            never
## 14127                                            never
## 14128                                            never
## 14129                                            never
## 14130                                            never
## 14131                                            never
## 14132                                            never
## 14133                                            never
## 14134                                            never
## 14135                                            never
## 14136                                            never
## 14137                                            never
## 14138                                            never
## 14139                                            never
## 14140                                            never
## 14141                                              new
## 14142                                              new
## 14143                                              new
## 14144                                              new
## 14145                                             next
## 14146                                             next
## 14147                                             next
## 14148                                             next
## 14149                                             next
## 14150                                             next
## 14151                                             next
## 14152                                             next
## 14153                                             next
## 14154                                             next
## 14155                                             next
## 14156                                             next
## 14157                                             next
## 14158                                             next
## 14159                                             next
## 14160                                             next
## 14161                                             nice
## 14162                                             nice
## 14163                                             nice
## 14164                                             nice
## 14165                                             nice
## 14166                                             nice
## 14167                                             nice
## 14168                                             nice
## 14169                                             nice
## 14170                                             nice
## 14171                                             nice
## 14172                                             nice
## 14173                                             nice
## 14174                                             nice
## 14175                                             nice
## 14176                                             nice
## 14177                                             nice
## 14178                                             nice
## 14179                                             nice
## 14180                                             nice
## 14181                                             nice
## 14182                                             nice
## 14183                                             nice
## 14184                                           nicely
## 14185                                           nicely
## 14186                                           nicely
## 14187                                            night
## 14188                                            night
## 14189                                            night
## 14190                                            night
## 14191                                            night
## 14192                                            night
## 14193                                            night
## 14194                                            night
## 14195                                            night
## 14196                                            night
## 14197                                            night
## 14198                                            night
## 14199                                            night
## 14200                                            night
## 14201                                            night
## 14202                                            night
## 14203                                            night
## 14204                                            night
## 14205                                            night
## 14206                                            night
## 14207                                            night
## 14208                                            night
## 14209                                            night
## 14210                                            night
## 14211                                            night
## 14212                                            night
## 14213                                            night
## 14214                                            night
## 14215                                        nightmare
## 14216                                              nod
## 14217                                             none
## 14218                                             none
## 14219                                             none
## 14220                                             none
## 14221                                       nonenglish
## 14222                                      nonetheless
## 14223                                           normal
## 14224                                           normal
## 14225                                         normally
## 14226                                            north
## 14227                                            notch
## 14228                                             note
## 14229                                             note
## 14230                                             note
## 14231                                             note
## 14232                                          nothing
## 14233                                          nothing
## 14234                                          nothing
## 14235                                          nothing
## 14236                                          nothing
## 14237                                          nothing
## 14238                                          nothing
## 14239                                          nothing
## 14240                                          nothing
## 14241                                          nothing
## 14242                                          nothing
## 14243                                          nothing
## 14244                                          nothing
## 14245                                          nothing
## 14246                                          nothing
## 14247                                          nothing
## 14248                                           notice
## 14249                                           notice
## 14250                                              now
## 14251                                              now
## 14252                                              now
## 14253                                              now
## 14254                                              now
## 14255                                              now
## 14256                                              now
## 14257                                              now
## 14258                                              now
## 14259                                              now
## 14260                                              now
## 14261                                         numerous
## 14262                                         numerous
## 14263                                               ny
## 14264                                               ny
## 14265                                              nyc
## 14266                                              nyc
## 14267                                              nyc
## 14268                                              nyc
## 14269                                      objectively
## 14270                                        obnoxious
## 14271                                        obviously
## 14272                                        obviously
## 14273                                        obviously
## 14274                                        obviously
## 14275                                        obviously
## 14276                                        obviously
## 14277                                           oclock
## 14278                                              odd
## 14279                                            offer
## 14280                                            offer
## 14281                                            offer
## 14282                                          officer
## 14283                                          officer
## 14284                                         official
## 14285                                         official
## 14286                                            often
## 14287                                               oh
## 14288                                               oh
## 14289                                               oh
## 14290                                               oh
## 14291                                               oh
## 14292                                               oh
## 14293                                               oh
## 14294                                               oh
## 14295                                               oh
## 14296                                             okay
## 14297                                             okay
## 14298                                             okay
## 14299                                             okay
## 14300                                             okay
## 14301                                             okay
## 14302                                             okay
## 14303                                             okay
## 14304                                             okay
## 14305                                             okay
## 14306                                             okay
## 14307                                             okay
## 14308                                             okay
## 14309                                             okay
## 14310                                             okay
## 14311                                             okay
## 14312                                             okay
## 14313                                             okay
## 14314                                             okay
## 14315                                             okay
## 14316                                             okay
## 14317                                             okay
## 14318                                             okay
## 14319                                             okay
## 14320                                             okay
## 14321                                             okay
## 14322                                              old
## 14323                                              old
## 14324                                              old
## 14325                                              old
## 14326                                              old
## 14327                                              old
## 14328                                              old
## 14329                                              old
## 14330                                              old
## 14331                                              old
## 14332                                              one
## 14333                                              one
## 14334                                              one
## 14335                                              one
## 14336                                              one
## 14337                                              one
## 14338                                              one
## 14339                                              one
## 14340                                              one
## 14341                                              one
## 14342                                              one
## 14343                                              one
## 14344                                              one
## 14345                                              one
## 14346                                              one
## 14347                                              one
## 14348                                              one
## 14349                                              one
## 14350                                              one
## 14351                                              one
## 14352                                              one
## 14353                                              one
## 14354                                              one
## 14355                                              one
## 14356                                              one
## 14357                                              one
## 14358                                              one
## 14359                                              one
## 14360                                              one
## 14361                                              one
## 14362                                              one
## 14363                                              one
## 14364                                              one
## 14365                                              one
## 14366                                              one
## 14367                                              one
## 14368                                              one
## 14369                                              one
## 14370                                              one
## 14371                                              one
## 14372                                              one
## 14373                                              one
## 14374                                              one
## 14375                                              one
## 14376                                              one
## 14377                                              one
## 14378                                              one
## 14379                                              one
## 14380                                              one
## 14381                                              one
## 14382                                              one
## 14383                                              one
## 14384                                              one
## 14385                                              one
## 14386                                              one
## 14387                                              one
## 14388                                              one
## 14389                                              one
## 14390                                              one
## 14391                                            onion
## 14392                                            onion
## 14393                                            onion
## 14394                                            onion
## 14395                                            onion
## 14396                                            onion
## 14397                                            onion
## 14398                                            onion
## 14399                                            onion
## 14400                                            onion
## 14401                                            onion
## 14402                                            onion
## 14403                                            onion
## 14404                                            onion
## 14405                                            onion
## 14406                                            onion
## 14407                                            onion
## 14408                                            onion
## 14409                                            onion
## 14410                                            onion
## 14411                                            onion
## 14412                                            onion
## 14413                                            onion
## 14414                                            onion
## 14415                                            onion
## 14416                                            onion
## 14417                                            onion
## 14418                                            onion
## 14419                                            onion
## 14420                                            onion
## 14421                                            onion
## 14422                                            onion
## 14423                                            onion
## 14424                                            onion
## 14425                                            onion
## 14426                                            onion
## 14427                                            onion
## 14428                                            onion
## 14429                                            onion
## 14430                                            onion
## 14431                                            onion
## 14432                                            onion
## 14433                                            onion
## 14434                                            onion
## 14435                                            onion
## 14436                                            onion
## 14437                                            onion
## 14438                                            onion
## 14439                                            onion
## 14440                                            onion
## 14441                                            onion
## 14442                                            onion
## 14443                                            onion
## 14444                                            onion
## 14445                                            onion
## 14446                                            onion
## 14447                                            onion
## 14448                                            onion
## 14449                                            onion
## 14450                                           online
## 14451                                             onto
## 14452                                             onto
## 14453                                             onto
## 14454                                             onto
## 14455                                             onto
## 14456                                             ooey
## 14457                                             ooze
## 14458                                             ooze
## 14459                                             ooze
## 14460                                             open
## 14461                                             open
## 14462                                             open
## 14463                                             open
## 14464                                             open
## 14465                                             open
## 14466                                             open
## 14467                                             open
## 14468                                          opinion
## 14469                                          opinion
## 14470                                          opinion
## 14471                                          opinion
## 14472                                          opinion
## 14473                                      opportunity
## 14474                                      opportunity
## 14475                                      opportunity
## 14476                                           oppose
## 14477                                           option
## 14478                                           option
## 14479                                           option
## 14480                                           option
## 14481                                           option
## 14482                                           option
## 14483                                           option
## 14484                                           option
## 14485                                           option
## 14486                                           orange
## 14487                                           orange
## 14488                                           orange
## 14489                                            order
## 14490                                            order
## 14491                                            order
## 14492                                            order
## 14493                                            order
## 14494                                            order
## 14495                                            order
## 14496                                            order
## 14497                                            order
## 14498                                            order
## 14499                                            order
## 14500                                            order
## 14501                                            order
## 14502                                            order
## 14503                                            order
## 14504                                            order
## 14505                                            order
## 14506                                            order
## 14507                                            order
## 14508                                            order
## 14509                                            order
## 14510                                            order
## 14511                                            order
## 14512                                            order
## 14513                                            order
## 14514                                            order
## 14515                                            order
## 14516                                            order
## 14517                                            order
## 14518                                            order
## 14519                                            order
## 14520                                            order
## 14521                                            order
## 14522                                            order
## 14523                                            order
## 14524                                            order
## 14525                                            order
## 14526                                            order
## 14527                                            order
## 14528                                            order
## 14529                                            order
## 14530                                            order
## 14531                                            order
## 14532                                            order
## 14533                                            order
## 14534                                            order
## 14535                                            order
## 14536                                            order
## 14537                                            order
## 14538                                            order
## 14539                                            order
## 14540                                            order
## 14541                                            order
## 14542                                            order
## 14543                                            order
## 14544                                            order
## 14545                                            order
## 14546                                            order
## 14547                                            order
## 14548                                            order
## 14549                                            order
## 14550                                            order
## 14551                                           oregon
## 14552                                            organ
## 14553                                         original
## 14554                                         original
## 14555                                         original
## 14556                                         original
## 14557                                         original
## 14558                                         original
## 14559                                         original
## 14560                                       originally
## 14561                                            other
## 14562                                        otherwise
## 14563                                        otherwise
## 14564                                        otherwise
## 14565                                            ounce
## 14566                                          outdoor
## 14567                                          outside
## 14568                                          outside
## 14569                                          outside
## 14570                                          outside
## 14571                                          outside
## 14572                                          outside
## 14573                                          outside
## 14574                                          outside
## 14575                                          outside
## 14576                                          outside
## 14577                                          outside
## 14578                                            outta
## 14579                                          overall
## 14580                                          overall
## 14581                                          overall
## 14582                                          overall
## 14583                                          overall
## 14584                                          overall
## 14585                                          overall
## 14586                                          overall
## 14587                                          overall
## 14588                                          overall
## 14589                                          overall
## 14590                                          overall
## 14591                                          overall
## 14592                                          overall
## 14593                                          overall
## 14594                                          overall
## 14595                                          overall
## 14596                                          overall
## 14597                                          overall
## 14598                                          overall
## 14599                                         overcook
## 14600                                         overcook
## 14601                                        overhyped
## 14602                                        overhyped
## 14603                                        overhyped
## 14604                                         overkill
## 14605                                           overly
## 14606                                       overpriced
## 14607                                       overpriced
## 14608                                       overpriced
## 14609                                       overpriced
## 14610                                       overpriced
## 14611                                       overpriced
## 14612                                         overrate
## 14613                                         overrate
## 14614                                         overrate
## 14615                                         overrate
## 14616                                         overrate
## 14617                                         overrate
## 14618                                         overrate
## 14619                                         overrate
## 14620                                         overrate
## 14621                                         overrate
## 14622                                              own
## 14623                                            owner
## 14624                                            owner
## 14625                                            owner
## 14626                                            owner
## 14627                                               pa
## 14628                                               pa
## 14629                                             pace
## 14630                                           packet
## 14631                                             page
## 14632                                            paint
## 14633                                           paltry
## 14634                                            paper
## 14635                                             papi
## 14636                                              par
## 14637                                              par
## 14638                                           parent
## 14639                                           parent
## 14640                                             park
## 14641                                             park
## 14642                                             park
## 14643                                             park
## 14644                                             park
## 14645                                             park
## 14646                                             park
## 14647                                             park
## 14648                                             park
## 14649                                             park
## 14650                                             park
## 14651                                             park
## 14652                                             park
## 14653                                             park
## 14654                                             park
## 14655                                             park
## 14656                                             park
## 14657                                             park
## 14658                                             part
## 14659                                             part
## 14660                                             part
## 14661                                             part
## 14662                                             part
## 14663                                             part
## 14664                                             part
## 14665                                       particular
## 14666                                       particular
## 14667                                             pass
## 14668                                             pass
## 14669                                         passyunk
## 14670                                         passyunk
## 14671                                         passyunk
## 14672                                              pat
## 14673                                              pat
## 14674                                              pat
## 14675                                              pat
## 14676                                              pat
## 14677                                              pat
## 14678                                              pat
## 14679                                              pat
## 14680                                              pat
## 14681                                              pat
## 14682                                              pat
## 14683                                              pat
## 14684                                              pat
## 14685                                              pat
## 14686                                              pat
## 14687                                              pat
## 14688                                              pat
## 14689                                              pat
## 14690                                              pat
## 14691                                              pat
## 14692                                              pat
## 14693                                              pat
## 14694                                              pat
## 14695                                              pat
## 14696                                              pat
## 14697                                              pat
## 14698                                              pat
## 14699                                              pat
## 14700                                              pat
## 14701                                              pat
## 14702                                              pat
## 14703                                              pat
## 14704                                              pat
## 14705                                              pat
## 14706                                              pat
## 14707                                              pat
## 14708                                              pat
## 14709                                              pat
## 14710                                              pat
## 14711                                              pat
## 14712                                              pat
## 14713                                              pat
## 14714                                              pat
## 14715                                              pat
## 14716                                              pat
## 14717                                              pat
## 14718                                              pat
## 14719                                              pat
## 14720                                              pat
## 14721                                              pat
## 14722                                              pat
## 14723                                              pat
## 14724                                              pat
## 14725                                              pat
## 14726                                              pat
## 14727                                              pat
## 14728                                              pat
## 14729                                              pat
## 14730                                              pat
## 14731                                              pat
## 14732                                              pat
## 14733                                              pat
## 14734                                              pat
## 14735                                              pat
## 14736                                              pat
## 14737                                              pat
## 14738                                              pat
## 14739                                              pat
## 14740                                              pat
## 14741                                              pat
## 14742                                              pat
## 14743                                              pat
## 14744                                              pat
## 14745                                              pat
## 14746                                              pat
## 14747                                              pat
## 14748                                              pat
## 14749                                              pat
## 14750                                              pat
## 14751                                              pat
## 14752                                              pat
## 14753                                              pat
## 14754                                              pat
## 14755                                              pat
## 14756                                              pat
## 14757                                              pat
## 14758                                            patch
## 14759                                            patio
## 14760                                           patron
## 14761                                           patron
## 14762                                        patronize
## 14763                                        patsgenos
## 14764                                              pay
## 14765                                              pay
## 14766                                              pay
## 14767                                              pay
## 14768                                              pay
## 14769                                              pay
## 14770                                              pay
## 14771                                              pay
## 14772                                              pay
## 14773                                              pay
## 14774                                              pay
## 14775                                              pay
## 14776                                              pay
## 14777                                              pay
## 14778                                              pay
## 14779                                              pay
## 14780                                             peak
## 14781                                             peak
## 14782                                              pen
## 14783                                           people
## 14784                                           people
## 14785                                           people
## 14786                                           people
## 14787                                           people
## 14788                                           people
## 14789                                           people
## 14790                                           people
## 14791                                           people
## 14792                                           people
## 14793                                           people
## 14794                                           people
## 14795                                           people
## 14796                                           people
## 14797                                           people
## 14798                                           people
## 14799                                           people
## 14800                                           people
## 14801                                           people
## 14802                                           people
## 14803                                           people
## 14804                                           people
## 14805                                           people
## 14806                                           people
## 14807                                           people
## 14808                                           people
## 14809                                           people
## 14810                                           people
## 14811                                           people
## 14812                                           people
## 14813                                           people
## 14814                                           people
## 14815                                           people
## 14816                                           people
## 14817                                           people
## 14818                                           people
## 14819                                           people
## 14820                                           people
## 14821                                           people
## 14822                                           people
## 14823                                           people
## 14824                                           people
## 14825                                           pepper
## 14826                                           pepper
## 14827                                           pepper
## 14828                                           pepper
## 14829                                           pepper
## 14830                                           pepper
## 14831                                           pepper
## 14832                                           pepper
## 14833                                           pepper
## 14834                                           pepper
## 14835                                           pepper
## 14836                                           pepper
## 14837                                           pepper
## 14838                                           pepper
## 14839                                           pepper
## 14840                                           pepper
## 14841                                           pepper
## 14842                                           pepper
## 14843                                           pepper
## 14844                                           pepper
## 14845                                           pepper
## 14846                                           pepper
## 14847                                           pepper
## 14848                                           pepper
## 14849                                           pepper
## 14850                                           pepper
## 14851                                           pepper
## 14852                                            pepsi
## 14853                                            pepsi
## 14854                                            pepsi
## 14855                                              per
## 14856                                          perfect
## 14857                                          perfect
## 14858                                          perfect
## 14859                                          perfect
## 14860                                          perfect
## 14861                                          perfect
## 14862                                        perfectly
## 14863                                        perfectly
## 14864                                        perfectly
## 14865                                          perhaps
## 14866                                          perhaps
## 14867                                          perhaps
## 14868                                           period
## 14869                                           person
## 14870                                           person
## 14871                                           person
## 14872                                           person
## 14873                                           person
## 14874                                           person
## 14875                                       personally
## 14876                                       personally
## 14877                                       personally
## 14878                                     philadelphia
## 14879                                     philadelphia
## 14880                                     philadelphia
## 14881                                     philadelphia
## 14882                                     philadelphia
## 14883                                     philadelphia
## 14884                                     philadelphia
## 14885                                     philadelphia
## 14886                                     philadelphia
## 14887                                     philadelphia
## 14888                                     philadelphia
## 14889                                     philadelphia
## 14890                                     philadelphia
## 14891                                     philadelphia
## 14892                                     philadelphia
## 14893                                     philadelphia
## 14894                                     philadelphia
## 14895                                     philadelphia
## 14896                                     philadelphia
## 14897                                     philadelphia
## 14898                                     philadelphia
## 14899                                     philadelphia
## 14900                                     philadelphia
## 14901                                     philadelphia
## 14902                                     philadelphia
## 14903                                     philadelphia
## 14904                                     philadelphia
## 14905                                     philadelphia
## 14906                                     philadelphia
## 14907                                     philadelphia
## 14908                                     philadelphia
## 14909                                    philadelphian
## 14910                                   philadelphians
## 14911                                   philadelphians
## 14912                                           philly
## 14913                                           philly
## 14914                                           philly
## 14915                                           philly
## 14916                                           philly
## 14917                                           philly
## 14918                                           philly
## 14919                                           philly
## 14920                                           philly
## 14921                                           philly
## 14922                                           philly
## 14923                                           philly
## 14924                                           philly
## 14925                                           philly
## 14926                                           philly
## 14927                                           philly
## 14928                                           philly
## 14929                                           philly
## 14930                                           philly
## 14931                                           philly
## 14932                                           philly
## 14933                                           philly
## 14934                                           philly
## 14935                                           philly
## 14936                                           philly
## 14937                                           philly
## 14938                                           philly
## 14939                                           philly
## 14940                                           philly
## 14941                                           philly
## 14942                                           philly
## 14943                                           philly
## 14944                                           philly
## 14945                                           philly
## 14946                                           philly
## 14947                                           philly
## 14948                                           philly
## 14949                                           philly
## 14950                                           philly
## 14951                                           philly
## 14952                                           philly
## 14953                                           philly
## 14954                                           philly
## 14955                                           philly
## 14956                                           philly
## 14957                                           philly
## 14958                                           philly
## 14959                                           philly
## 14960                                           philly
## 14961                                           philly
## 14962                                           philly
## 14963                                           philly
## 14964                                           philly
## 14965                                           philly
## 14966                                           philly
## 14967                                           philly
## 14968                                           philly
## 14969                                           philly
## 14970                                           philly
## 14971                                           philly
## 14972                                           philly
## 14973                                           philly
## 14974                                           philly
## 14975                                           philly
## 14976                                           philly
## 14977                                           philly
## 14978                                           philly
## 14979                                           philly
## 14980                                           philly
## 14981                                           philly
## 14982                                           philly
## 14983                                           philly
## 14984                                           philly
## 14985                                           philly
## 14986                                           philly
## 14987                                           philly
## 14988                                           philly
## 14989                                           philly
## 14990                                           philly
## 14991                                           philly
## 14992                                           philly
## 14993                                           philly
## 14994                                           philly
## 14995                                           philly
## 14996                                           philly
## 14997                                           philly
## 14998                                           philly
## 14999                                           philly
## 15000                                           philly
## 15001                                           philly
## 15002                                           philly
## 15003                                           philly
## 15004                                           philly
## 15005                                           philly
## 15006                                           philly
## 15007                                           philly
## 15008                                           philly
## 15009                                           philly
## 15010                                          phillys
## 15011                                          phillys
## 15012                                            phily
## 15013                                            photo
## 15014                                            photo
## 15015                                            photo
## 15016                                            photo
## 15017                                       photograph
## 15018                                              pic
## 15019                                              pic
## 15020                                             pick
## 15021                                             pick
## 15022                                             pick
## 15023                                             pick
## 15024                                             pick
## 15025                                             pick
## 15026                                             pick
## 15027                                            picky
## 15028                                           picnic
## 15029                                          picture
## 15030                                          picture
## 15031                                          picture
## 15032                                          picture
## 15033                                          picture
## 15034                                          picture
## 15035                                          picture
## 15036                                            piece
## 15037                                            piece
## 15038                                            piece
## 15039                                            piece
## 15040                                            piece
## 15041                                            piece
## 15042                                            piece
## 15043                                            piece
## 15044                                             pile
## 15045                                             pile
## 15046                                             pile
## 15047                                             piss
## 15048                                             piss
## 15049                                              pit
## 15050                                            place
## 15051                                            place
## 15052                                            place
## 15053                                            place
## 15054                                            place
## 15055                                            place
## 15056                                            place
## 15057                                            place
## 15058                                            place
## 15059                                            place
## 15060                                            place
## 15061                                            place
## 15062                                            place
## 15063                                            place
## 15064                                            place
## 15065                                            place
## 15066                                            place
## 15067                                            place
## 15068                                            place
## 15069                                            place
## 15070                                            place
## 15071                                            place
## 15072                                            place
## 15073                                            place
## 15074                                            place
## 15075                                            place
## 15076                                            place
## 15077                                            place
## 15078                                            place
## 15079                                            place
## 15080                                            place
## 15081                                            place
## 15082                                            place
## 15083                                            place
## 15084                                            place
## 15085                                            place
## 15086                                            place
## 15087                                            place
## 15088                                            place
## 15089                                            place
## 15090                                            place
## 15091                                            place
## 15092                                            place
## 15093                                            place
## 15094                                            place
## 15095                                            place
## 15096                                            place
## 15097                                            place
## 15098                                            place
## 15099                                            place
## 15100                                            place
## 15101                                            place
## 15102                                            place
## 15103                                            place
## 15104                                            place
## 15105                                            place
## 15106                                            place
## 15107                                            place
## 15108                                            place
## 15109                                            place
## 15110                                            place
## 15111                                            place
## 15112                                            place
## 15113                                            place
## 15114                                            place
## 15115                                            place
## 15116                                            place
## 15117                                            place
## 15118                                            place
## 15119                                            place
## 15120                                            place
## 15121                                            place
## 15122                                            place
## 15123                                            place
## 15124                                            place
## 15125                                            place
## 15126                                            place
## 15127                                            place
## 15128                                            place
## 15129                                            place
## 15130                                            place
## 15131                                            place
## 15132                                            place
## 15133                                            place
## 15134                                            place
## 15135                                            place
## 15136                                            place
## 15137                                            place
## 15138                                            place
## 15139                                            place
## 15140                                            place
## 15141                                            place
## 15142                                            place
## 15143                                            place
## 15144                                            place
## 15145                                            place
## 15146                                            place
## 15147                                            place
## 15148                                            place
## 15149                                            place
## 15150                                            place
## 15151                                            place
## 15152                                            place
## 15153                                            place
## 15154                                            place
## 15155                                            place
## 15156                                            plain
## 15157                                            plain
## 15158                                            plain
## 15159                                            plain
## 15160                                            plain
## 15161                                            plain
## 15162                                            plain
## 15163                                             plan
## 15164                                             plan
## 15165                                             plan
## 15166                                             plan
## 15167                                          plastic
## 15168                                          plastic
## 15169                                             play
## 15170                                             play
## 15171                                             play
## 15172                                           please
## 15173                                           please
## 15174                                           please
## 15175                                           please
## 15176                                           please
## 15177                                           please
## 15178                                           please
## 15179                                           please
## 15180                                           plenty
## 15181                                           plenty
## 15182                                           plenty
## 15183                                           plenty
## 15184                                             plus
## 15185                                             plus
## 15186                                             plus
## 15187                                             plus
## 15188                                             plus
## 15189                                             plus
## 15190                                               pm
## 15191                                               pm
## 15192                                               pm
## 15193                                               pm
## 15194                                               pm
## 15195                                               pm
## 15196                                            point
## 15197                                            point
## 15198                                            point
## 15199                                            point
## 15200                                            point
## 15201                                            point
## 15202                                            point
## 15203                                           poison
## 15204                                           police
## 15205                                           police
## 15206                                           police
## 15207                                           police
## 15208                                          politic
## 15209                                          politic
## 15210                                          politic
## 15211                                        political
## 15212                                        political
## 15213                                        political
## 15214                                        political
## 15215                                             poor
## 15216                                          popular
## 15217                                          popular
## 15218                                          popular
## 15219                                          popular
## 15220                                             pork
## 15221                                             pork
## 15222                                             pork
## 15223                                          portion
## 15224                                          portion
## 15225                                          portion
## 15226                                          portion
## 15227                                         possible
## 15228                                         possible
## 15229                                         possibly
## 15230                                             post
## 15231                                             post
## 15232                                             post
## 15233                                             post
## 15234                                        potential
## 15235                                            power
## 15236                                         practice
## 15237                                              pre
## 15238                                         precious
## 15239                                        precooked
## 15240                                           prefer
## 15241                                           prefer
## 15242                                           prefer
## 15243                                           prefer
## 15244                                           prefer
## 15245                                           prefer
## 15246                                          prepare
## 15247                                          prepare
## 15248                                          prepare
## 15249                                          prepare
## 15250                                          prepare
## 15251                                          prepare
## 15252                                           pretty
## 15253                                           pretty
## 15254                                           pretty
## 15255                                           pretty
## 15256                                           pretty
## 15257                                           pretty
## 15258                                           pretty
## 15259                                           pretty
## 15260                                           pretty
## 15261                                           pretty
## 15262                                           pretty
## 15263                                           pretty
## 15264                                           pretty
## 15265                                           pretty
## 15266                                           pretty
## 15267                                           pretty
## 15268                                           pretty
## 15269                                            price
## 15270                                            price
## 15271                                            price
## 15272                                            price
## 15273                                            price
## 15274                                            price
## 15275                                            price
## 15276                                            price
## 15277                                            price
## 15278                                            price
## 15279                                            price
## 15280                                            price
## 15281                                            price
## 15282                                            price
## 15283                                            price
## 15284                                            price
## 15285                                            price
## 15286                                            price
## 15287                                            price
## 15288                                            price
## 15289                                            price
## 15290                                           pricey
## 15291                                           pricey
## 15292                                           pricey
## 15293                                            pride
## 15294                                            pride
## 15295                                            prime
## 15296                                            prior
## 15297                                              pro
## 15298                                              pro
## 15299                                              pro
## 15300                                              pro
## 15301                                         probably
## 15302                                         probably
## 15303                                         probably
## 15304                                         probably
## 15305                                         probably
## 15306                                         probably
## 15307                                         probably
## 15308                                         probably
## 15309                                         probably
## 15310                                         probably
## 15311                                         probably
## 15312                                         probably
## 15313                                          problem
## 15314                                          proceed
## 15315                                          process
## 15316                                          process
## 15317                                          process
## 15318                                          procure
## 15319                                          produce
## 15320                                          product
## 15321                                          product
## 15322                                          product
## 15323                                          promise
## 15324                                        pronounce
## 15325                                           proper
## 15326                                         properly
## 15327                                         properly
## 15328                                         properly
## 15329                                       proportion
## 15330                                          provide
## 15331                                          provide
## 15332                                            provo
## 15333                                        provolone
## 15334                                        provolone
## 15335                                        provolone
## 15336                                        provolone
## 15337                                        provolone
## 15338                                        provolone
## 15339                                        provolone
## 15340                                        provolone
## 15341                                        provolone
## 15342                                        provolone
## 15343                                        provolone
## 15344                                        provolone
## 15345                                        provolone
## 15346                                        provolone
## 15347                                        provolone
## 15348                                        provolone
## 15349                                        provolone
## 15350                                        provolone
## 15351                                        provolone
## 15352                                        provolone
## 15353                                            provy
## 15354                                           public
## 15355                                           public
## 15356                                         purchase
## 15357                                           purely
## 15358                                              put
## 15359                                              put
## 15360                                              put
## 15361                                              put
## 15362                                              put
## 15363                                              put
## 15364                                              put
## 15365                                              put
## 15366                                          putting
## 15367                                          putting
## 15368                                          quality
## 15369                                          quality
## 15370                                          quality
## 15371                                          quality
## 15372                                          quality
## 15373                                          quality
## 15374                                          quality
## 15375                                          quality
## 15376                                          quality
## 15377                                          quality
## 15378                                            quick
## 15379                                            quick
## 15380                                            quick
## 15381                                            quick
## 15382                                            quick
## 15383                                            quick
## 15384                                            quick
## 15385                                            quick
## 15386                                            quick
## 15387                                            quick
## 15388                                            quick
## 15389                                          quickly
## 15390                                          quickly
## 15391                                          quickly
## 15392                                          quickly
## 15393                                          quickly
## 15394                                            quite
## 15395                                            quite
## 15396                                            quite
## 15397                                            quite
## 15398                                            quite
## 15399                                             race
## 15400                                           racial
## 15401                                           racism
## 15402                                           racist
## 15403                                           racist
## 15404                                           racist
## 15405                                           racist
## 15406                                           racist
## 15407                                           racist
## 15408                                           racist
## 15409                                           racist
## 15410                                           racist
## 15411                                           racist
## 15412                                           racist
## 15413                                           racist
## 15414                                           racist
## 15415                                           racist
## 15416                                           racist
## 15417                                           racist
## 15418                                           racist
## 15419                                           racist
## 15420                                             rage
## 15421                                              rah
## 15422                                            rainy
## 15423                                            raise
## 15424                                            raise
## 15425                                             rank
## 15426                                          ranking
## 15427                                              rat
## 15428                                              rat
## 15429                                             rate
## 15430                                             rate
## 15431                                             rate
## 15432                                             rate
## 15433                                             rate
## 15434                                             rate
## 15435                                             rate
## 15436                                             rate
## 15437                                             rate
## 15438                                             rate
## 15439                                           rather
## 15440                                           rather
## 15441                                           rather
## 15442                                            ratio
## 15443                                             rave
## 15444                                              raw
## 15445                                              raw
## 15446                                               rd
## 15447                                             read
## 15448                                             read
## 15449                                             read
## 15450                                             read
## 15451                                            ready
## 15452                                            ready
## 15453                                            ready
## 15454                                            ready
## 15455                                            ready
## 15456                                            ready
## 15457                                             real
## 15458                                             real
## 15459                                             real
## 15460                                             real
## 15461                                             real
## 15462                                             real
## 15463                                             real
## 15464                                          realize
## 15465                                          realize
## 15466                                          realize
## 15467                                          realize
## 15468                                          realize
## 15469                                           really
## 15470                                           really
## 15471                                           really
## 15472                                           really
## 15473                                           really
## 15474                                           really
## 15475                                           really
## 15476                                           really
## 15477                                           really
## 15478                                           really
## 15479                                           really
## 15480                                           really
## 15481                                           really
## 15482                                           really
## 15483                                           really
## 15484                                           really
## 15485                                           really
## 15486                                           really
## 15487                                           really
## 15488                                           really
## 15489                                           really
## 15490                                           really
## 15491                                           really
## 15492                                           really
## 15493                                           really
## 15494                                           really
## 15495                                           really
## 15496                                           really
## 15497                                           reason
## 15498                                           reason
## 15499                                           reason
## 15500                                           reason
## 15501                                           reason
## 15502                                           reason
## 15503                                           reason
## 15504                                           reason
## 15505                                           reason
## 15506                                           reason
## 15507                                           reason
## 15508                                          receive
## 15509                                          receive
## 15510                                           recent
## 15511                                           recent
## 15512                                         recently
## 15513                                         recently
## 15514                                        recommend
## 15515                                        recommend
## 15516                                        recommend
## 15517                                        recommend
## 15518                                        recommend
## 15519                                        recommend
## 15520                                        recommend
## 15521                                        recommend
## 15522                                        recommend
## 15523                                        recommend
## 15524                                        recommend
## 15525                                        recommend
## 15526                                        recommend
## 15527                                   recommendation
## 15528                                   recommendation
## 15529                                   recommendation
## 15530                                              red
## 15531                                        reference
## 15532                                           refuse
## 15533                                           refuse
## 15534                                           refuse
## 15535                                           regard
## 15536                                       regardless
## 15537                                         register
## 15538                                         register
## 15539                                         register
## 15540                                         register
## 15541                                           regret
## 15542                                           regret
## 15543                                           regret
## 15544                                           regret
## 15545                                          regular
## 15546                                          regular
## 15547                                          regular
## 15548                                          regular
## 15549                                           relish
## 15550                                      reluctantly
## 15551                                           remake
## 15552                                       remarkable
## 15553                                         remember
## 15554                                         remember
## 15555                                         remember
## 15556                                         remember
## 15557                                         remember
## 15558                                           remind
## 15559                                           remind
## 15560                                           remove
## 15561                                           remove
## 15562                                   representation
## 15563                                          require
## 15564                                          require
## 15565                                          require
## 15566                                         research
## 15567                                         research
## 15568                                             rest
## 15569                                             rest
## 15570                                             rest
## 15571                                             rest
## 15572                                             rest
## 15573                                       restaurant
## 15574                                       restaurant
## 15575                                       restaurant
## 15576                                       restaurant
## 15577                                       restaurant
## 15578                                       restaurant
## 15579                                       restaurant
## 15580                                       restaurant
## 15581                                       restaurant
## 15582                                       restaurant
## 15583                                       restaurant
## 15584                                       restaurant
## 15585                                       restaurant
## 15586                                       restaurant
## 15587                                           return
## 15588                                           return
## 15589                                           return
## 15590                                           return
## 15591                                           review
## 15592                                           review
## 15593                                           review
## 15594                                           review
## 15595                                           review
## 15596                                           review
## 15597                                           review
## 15598                                           review
## 15599                                           review
## 15600                                           review
## 15601                                           review
## 15602                                           review
## 15603                                           review
## 15604                                           review
## 15605                                           review
## 15606                                           review
## 15607                                           review
## 15608                                           review
## 15609                                           review
## 15610                                           review
## 15611                                           review
## 15612                                           review
## 15613                                           review
## 15614                                           review
## 15615                                           review
## 15616                                            rhode
## 15617                                           ribeye
## 15618                                           ribeye
## 15619                                         richness
## 15620                                             ride
## 15621                                             ride
## 15622                                             ride
## 15623                                             ride
## 15624                                             ride
## 15625                                     ridiculously
## 15626                                            right
## 15627                                            right
## 15628                                            right
## 15629                                            right
## 15630                                            right
## 15631                                            right
## 15632                                            right
## 15633                                            right
## 15634                                            right
## 15635                                            right
## 15636                                            right
## 15637                                            right
## 15638                                            right
## 15639                                            right
## 15640                                            right
## 15641                                            right
## 15642                                            right
## 15643                                            right
## 15644                                            right
## 15645                                            right
## 15646                                            right
## 15647                                            right
## 15648                                            right
## 15649                                            right
## 15650                                            right
## 15651                                              rim
## 15652                                           ripoff
## 15653                                            rival
## 15654                                          rivalry
## 15655                                             road
## 15656                                            roast
## 15657                                             rock
## 15658                                             roll
## 15659                                             roll
## 15660                                             roll
## 15661                                             roll
## 15662                                             roll
## 15663                                             roll
## 15664                                             roll
## 15665                                             roll
## 15666                                             roll
## 15667                                             roll
## 15668                                             roll
## 15669                                             roll
## 15670                                             roll
## 15671                                             roll
## 15672                                             roll
## 15673                                             roll
## 15674                                             roll
## 15675                                             roll
## 15676                                             roll
## 15677                                             roll
## 15678                                             roll
## 15679                                             roll
## 15680                                             roll
## 15681                                             roll
## 15682                                             roll
## 15683                                             roll
## 15684                                             roll
## 15685                                             roll
## 15686                                             roll
## 15687                                             rome
## 15688                                             room
## 15689                                            round
## 15690                                           rubber
## 15691                                          rubbery
## 15692                                          rubbery
## 15693                                          rubbery
## 15694                                          rubbery
## 15695                                             rude
## 15696                                             rude
## 15697                                             rude
## 15698                                             rude
## 15699                                             rude
## 15700                                             rude
## 15701                                             rude
## 15702                                             rude
## 15703                                             rude
## 15704                                             rude
## 15705                                             rude
## 15706                                             rude
## 15707                                             rude
## 15708                                             rude
## 15709                                             rude
## 15710                                             rude
## 15711                                             rude
## 15712                                             rude
## 15713                                             rude
## 15714                                             rude
## 15715                                             rude
## 15716                                             rude
## 15717                                             rude
## 15718                                             rude
## 15719                                             rude
## 15720                                         rudeness
## 15721                                             ruin
## 15722                                             ruin
## 15723                                             ruin
## 15724                                             ruin
## 15725                                             ruin
## 15726                                             rule
## 15727                                              run
## 15728                                              run
## 15729                                              run
## 15730                                              run
## 15731                                              run
## 15732                                              run
## 15733                                              run
## 15734                                              run
## 15735                                              run
## 15736                                            runny
## 15737                                            runny
## 15738                                             rush
## 15739                                             rush
## 15740                                             rush
## 15741                                                s
## 15742                                                s
## 15743                                              sad
## 15744                                              sad
## 15745                                              sad
## 15746                                              sad
## 15747                                              sad
## 15748                                            sadly
## 15749                                            sadly
## 15750                                            sadly
## 15751                                            salty
## 15752                                            salty
## 15753                                            salty
## 15754                                           sample
## 15755                                           sample
## 15756                                             sand
## 15757                                        sandwhich
## 15758                                        sandwhich
## 15759                                        sandwhich
## 15760                                         sandwich
## 15761                                         sandwich
## 15762                                         sandwich
## 15763                                         sandwich
## 15764                                         sandwich
## 15765                                         sandwich
## 15766                                         sandwich
## 15767                                         sandwich
## 15768                                         sandwich
## 15769                                         sandwich
## 15770                                         sandwich
## 15771                                         sandwich
## 15772                                         sandwich
## 15773                                         sandwich
## 15774                                         sandwich
## 15775                                         sandwich
## 15776                                         sandwich
## 15777                                         sandwich
## 15778                                         sandwich
## 15779                                         sandwich
## 15780                                         sandwich
## 15781                                         sandwich
## 15782                                         sandwich
## 15783                                         sandwich
## 15784                                         sandwich
## 15785                                         sandwich
## 15786                                         sandwich
## 15787                                         sandwich
## 15788                                         sandwich
## 15789                                         sandwich
## 15790                                         sandwich
## 15791                                         sandwich
## 15792                                         sandwich
## 15793                                         sandwich
## 15794                                         sandwich
## 15795                                         sandwich
## 15796                                         sandwich
## 15797                                         sandwich
## 15798                                         sandwich
## 15799                                         sandwich
## 15800                                         sandwich
## 15801                                         sandwich
## 15802                                         sandwich
## 15803                                         sandwich
## 15804                                         sandwich
## 15805                                         sandwich
## 15806                                         sandwich
## 15807                                         sandwich
## 15808                                         sandwich
## 15809                                         sandwich
## 15810                                         sandwich
## 15811                                         sandwich
## 15812                                         sandwich
## 15813                                         sandwich
## 15814                                         sandwich
## 15815                                         sandwich
## 15816                                         sandwich
## 15817                                         sandwich
## 15818                                         sandwich
## 15819                                         sandwich
## 15820                                         sandwich
## 15821                                         sandwich
## 15822                                         sandwich
## 15823                                         sandwich
## 15824                                         sandwich
## 15825                                         sandwich
## 15826                                         sandwich
## 15827                                         sandwich
## 15828                                         sandwich
## 15829                                         sandwich
## 15830                                         sandwich
## 15831                                         sandwich
## 15832                                         sandwich
## 15833                                         sandwich
## 15834                                         sandwich
## 15835                                         sandwich
## 15836                                         sandwich
## 15837                                         sandwich
## 15838                                         sandwich
## 15839                                         sandwich
## 15840                                         sandwich
## 15841                                         sandwich
## 15842                                         sandwich
## 15843                                         sandwich
## 15844                                         sandwich
## 15845                                         sandwich
## 15846                                         sandwich
## 15847                                         sandwich
## 15848                                         sandwich
## 15849                                         sandwich
## 15850                                         sandwich
## 15851                                         sandwich
## 15852                                         sandwich
## 15853                                         sandwich
## 15854                                         sandwich
## 15855                                         sandwich
## 15856                                         sandwich
## 15857                                         sandwich
## 15858                                         sandwich
## 15859                                         sandwich
## 15860                                         sandwich
## 15861                                         sandwich
## 15862                                         sandwich
## 15863                                         sandwich
## 15864                                         sandwich
## 15865                                         sandwich
## 15866                                            sauce
## 15867                                            sauce
## 15868                                            sauce
## 15869                                            sauce
## 15870                                            sauce
## 15871                                            sauce
## 15872                                            sauce
## 15873                                            sauce
## 15874                                            sauce
## 15875                                            sauce
## 15876                                            saute
## 15877                                             save
## 15878                                             save
## 15879                                             save
## 15880                                             save
## 15881                                             save
## 15882                                             save
## 15883                                             save
## 15884                                             save
## 15885                                           savory
## 15886                                              say
## 15887                                              say
## 15888                                              say
## 15889                                              say
## 15890                                              say
## 15891                                              say
## 15892                                              say
## 15893                                              say
## 15894                                              say
## 15895                                              say
## 15896                                              say
## 15897                                              say
## 15898                                              say
## 15899                                              say
## 15900                                              say
## 15901                                              say
## 15902                                              say
## 15903                                              say
## 15904                                              say
## 15905                                              say
## 15906                                              say
## 15907                                              say
## 15908                                              say
## 15909                                              say
## 15910                                              say
## 15911                                              say
## 15912                                              say
## 15913                                              say
## 15914                                              say
## 15915                                              say
## 15916                                              say
## 15917                                              say
## 15918                                              say
## 15919                                              say
## 15920                                              say
## 15921                                              say
## 15922                                              say
## 15923                                              say
## 15924                                              say
## 15925                                              say
## 15926                                              say
## 15927                                              say
## 15928                                              say
## 15929                                              say
## 15930                                              say
## 15931                                              say
## 15932                                              say
## 15933                                              say
## 15934                                              say
## 15935                                              say
## 15936                                              say
## 15937                                              say
## 15938                                              say
## 15939                                              say
## 15940                                           school
## 15941                                            score
## 15942                                            screw
## 15943                                             seal
## 15944                                           season
## 15945                                           season
## 15946                                           season
## 15947                                           season
## 15948                                           season
## 15949                                           season
## 15950                                           season
## 15951                                           season
## 15952                                           season
## 15953                                           season
## 15954                                           season
## 15955                                             seat
## 15956                                             seat
## 15957                                             seat
## 15958                                             seat
## 15959                                             seat
## 15960                                             seat
## 15961                                             seat
## 15962                                             seat
## 15963                                             seat
## 15964                                             seat
## 15965                                             seat
## 15966                                             seat
## 15967                                             seat
## 15968                                             seat
## 15969                                             seat
## 15970                                             seat
## 15971                                           second
## 15972                                           second
## 15973                                              see
## 15974                                              see
## 15975                                              see
## 15976                                              see
## 15977                                              see
## 15978                                              see
## 15979                                              see
## 15980                                              see
## 15981                                              see
## 15982                                              see
## 15983                                              see
## 15984                                              see
## 15985                                              see
## 15986                                              see
## 15987                                              see
## 15988                                              see
## 15989                                              see
## 15990                                              see
## 15991                                              see
## 15992                                              see
## 15993                                              see
## 15994                                              see
## 15995                                              see
## 15996                                              see
## 15997                                              see
## 15998                                              see
## 15999                                              see
## 16000                                              see
## 16001                                              see
## 16002                                             seem
## 16003                                             seem
## 16004                                             seem
## 16005                                             seem
## 16006                                             seem
## 16007                                             seem
## 16008                                             seem
## 16009                                             seem
## 16010                                             seem
## 16011                                             seem
## 16012                                             seem
## 16013                                             seem
## 16014                                             seem
## 16015                                             seem
## 16016                                             seem
## 16017                                        selection
## 16018                                             self
## 16019                                             sell
## 16020                                             sell
## 16021                                             sell
## 16022                                             sell
## 16023                                             sell
## 16024                                             sell
## 16025                                             semi
## 16026                                            sense
## 16027                                         separate
## 16028                                          serious
## 16029                                        seriously
## 16030                                        seriously
## 16031                                        seriously
## 16032                                        seriously
## 16033                                        seriously
## 16034                                            serve
## 16035                                            serve
## 16036                                            serve
## 16037                                            serve
## 16038                                            serve
## 16039                                            serve
## 16040                                            serve
## 16041                                            serve
## 16042                                            serve
## 16043                                            serve
## 16044                                            serve
## 16045                                            serve
## 16046                                            serve
## 16047                                            serve
## 16048                                            serve
## 16049                                            serve
## 16050                                            serve
## 16051                                           server
## 16052                                          service
## 16053                                          service
## 16054                                          service
## 16055                                          service
## 16056                                          service
## 16057                                          service
## 16058                                          service
## 16059                                          service
## 16060                                          service
## 16061                                          service
## 16062                                          service
## 16063                                          service
## 16064                                          service
## 16065                                          service
## 16066                                          service
## 16067                                          service
## 16068                                          service
## 16069                                          service
## 16070                                          service
## 16071                                          service
## 16072                                          service
## 16073                                          service
## 16074                                          service
## 16075                                          service
## 16076                                          service
## 16077                                          service
## 16078                                          service
## 16079                                          service
## 16080                                          service
## 16081                                          service
## 16082                                          service
## 16083                                          service
## 16084                                          service
## 16085                                          service
## 16086                                          service
## 16087                                          service
## 16088                                          service
## 16089                                          service
## 16090                                          service
## 16091                                              set
## 16092                                              set
## 16093                                              set
## 16094                                          several
## 16095                                          several
## 16096                                          several
## 16097                                          several
## 16098                                            shame
## 16099                                             shao
## 16100                                            share
## 16101                                            share
## 16102                                            share
## 16103                                            share
## 16104                                            sharp
## 16105                                            shave
## 16106                                            sheet
## 16107                                             shit
## 16108                                             shit
## 16109                                             shoe
## 16110                                            shoot
## 16111                                            shoot
## 16112                                             shop
## 16113                                             shop
## 16114                                             shop
## 16115                                             shop
## 16116                                             shop
## 16117                                             shop
## 16118                                             shop
## 16119                                            shore
## 16120                                            short
## 16121                                            short
## 16122                                            short
## 16123                                            short
## 16124                                          shoulda
## 16125                                         shouldnt
## 16126                                         shouldnt
## 16127                                         shouldve
## 16128                                            shove
## 16129                                             show
## 16130                                             show
## 16131                                             show
## 16132                                             show
## 16133                                             show
## 16134                                             show
## 16135                                             show
## 16136                                             show
## 16137                                             show
## 16138                                             show
## 16139                                         showdown
## 16140                                            shred
## 16141                                             sick
## 16142                                             side
## 16143                                             side
## 16144                                             side
## 16145                                             side
## 16146                                             side
## 16147                                             side
## 16148                                             side
## 16149                                             side
## 16150                                             side
## 16151                                             side
## 16152                                             side
## 16153                                             side
## 16154                                             side
## 16155                                             side
## 16156                                             side
## 16157                                             side
## 16158                                             side
## 16159                                             side
## 16160                                             side
## 16161                                             side
## 16162                                             sign
## 16163                                             sign
## 16164                                             sign
## 16165                                             sign
## 16166                                             sign
## 16167                                             sign
## 16168                                             sign
## 16169                                             sign
## 16170                                             sign
## 16171                                             sign
## 16172                                             sign
## 16173                                             sign
## 16174                                             sign
## 16175                                             sign
## 16176                                             sign
## 16177                                             sign
## 16178                                             sign
## 16179                                             sign
## 16180                                          signage
## 16181                                        signature
## 16182                                           simple
## 16183                                           simple
## 16184                                           simple
## 16185                                           simply
## 16186                                           simply
## 16187                                           simply
## 16188                                           simply
## 16189                                              sin
## 16190                                            since
## 16191                                            since
## 16192                                            since
## 16193                                            since
## 16194                                            since
## 16195                                            since
## 16196                                            since
## 16197                                            since
## 16198                                            since
## 16199                                            since
## 16200                                            since
## 16201                                            since
## 16202                                            since
## 16203                                            since
## 16204                                            since
## 16205                                            since
## 16206                                            since
## 16207                                            since
## 16208                                            since
## 16209                                            since
## 16210                                            since
## 16211                                            since
## 16212                                            since
## 16213                                            since
## 16214                                            since
## 16215                                            since
## 16216                                            since
## 16217                                              sir
## 16218                                           sister
## 16219                                              sit
## 16220                                              sit
## 16221                                              sit
## 16222                                              sit
## 16223                                              sit
## 16224                                              sit
## 16225                                              sit
## 16226                                              sit
## 16227                                           sixers
## 16228                                             size
## 16229                                             size
## 16230                                          sketchy
## 16231                                            skimp
## 16232                                           skimpy
## 16233                                             skip
## 16234                                             skip
## 16235                                             skip
## 16236                                             skip
## 16237                                             slab
## 16238                                            slang
## 16239                                            slice
## 16240                                            slice
## 16241                                            slice
## 16242                                            slice
## 16243                                            slice
## 16244                                            slice
## 16245                                            slice
## 16246                                            slice
## 16247                                            slice
## 16248                                            slice
## 16249                                            slice
## 16250                                            slice
## 16251                                            slice
## 16252                                            slice
## 16253                                            slice
## 16254                                            slice
## 16255                                            slice
## 16256                                            slide
## 16257                                           slight
## 16258                                         slightly
## 16259                                         slightly
## 16260                                         slightly
## 16261                                         slightly
## 16262                                         slightly
## 16263                                           sloppy
## 16264                                             slow
## 16265                                            small
## 16266                                            small
## 16267                                            small
## 16268                                            small
## 16269                                            small
## 16270                                            small
## 16271                                            small
## 16272                                            small
## 16273                                            small
## 16274                                            smell
## 16275                                           smelly
## 16276                                            smile
## 16277                                            smile
## 16278                                            smile
## 16279                                            smile
## 16280                                             snap
## 16281                                             soda
## 16282                                             soda
## 16283                                             soda
## 16284                                             soda
## 16285                                             soft
## 16286                                             soft
## 16287                                             soft
## 16288                                             soft
## 16289                                             soft
## 16290                                             soft
## 16291                                             soft
## 16292                                             soft
## 16293                                             soft
## 16294                                             soft
## 16295                                            soggy
## 16296                                            soggy
## 16297                                            soggy
## 16298                                            soggy
## 16299                                            soggy
## 16300                                            soggy
## 16301                                            soggy
## 16302                                            soggy
## 16303                                            soggy
## 16304                                          somehow
## 16305                                          someone
## 16306                                          someone
## 16307                                          someone
## 16308                                          someone
## 16309                                          someone
## 16310                                          someone
## 16311                                          someone
## 16312                                          someone
## 16313                                        someplace
## 16314                                        something
## 16315                                        something
## 16316                                        something
## 16317                                        something
## 16318                                        something
## 16319                                        something
## 16320                                        something
## 16321                                        something
## 16322                                        something
## 16323                                        something
## 16324                                        something
## 16325                                        sometimes
## 16326                                         somewhat
## 16327                                         somewhat
## 16328                                        somewhere
## 16329                                              son
## 16330                                              son
## 16331                                              son
## 16332                                              son
## 16333                                              son
## 16334                                              soo
## 16335                                             soon
## 16336                                             sooo
## 16337                                            soooo
## 16338                                            soooo
## 16339                                           sorely
## 16340                                            sorry
## 16341                                            sorry
## 16342                                            sorry
## 16343                                            sorry
## 16344                                            sorry
## 16345                                            sound
## 16346                                            south
## 16347                                            south
## 16348                                            south
## 16349                                            south
## 16350                                          spanish
## 16351                                          spanish
## 16352                                            speak
## 16353                                            speak
## 16354                                            speak
## 16355                                            speak
## 16356                                            speak
## 16357                                            speak
## 16358                                            speak
## 16359                                          special
## 16360                                          special
## 16361                                          special
## 16362                                          special
## 16363                                          special
## 16364                                          special
## 16365                                          special
## 16366                                          special
## 16367                                          special
## 16368                                          special
## 16369                                          special
## 16370                                          special
## 16371                                          special
## 16372                                          special
## 16373                                           speedy
## 16374                                            spend
## 16375                                            spend
## 16376                                            spend
## 16377                                            spend
## 16378                                            spend
## 16379                                            spend
## 16380                                            spice
## 16381                                            spicy
## 16382                                             spit
## 16383                                             spit
## 16384                                            split
## 16385                                            split
## 16386                                            split
## 16387                                             spot
## 16388                                             spot
## 16389                                             spot
## 16390                                             spot
## 16391                                             spot
## 16392                                             spot
## 16393                                             spot
## 16394                                             spot
## 16395                                             spot
## 16396                                             spot
## 16397                                             spot
## 16398                                             spot
## 16399                                             spot
## 16400                                             spot
## 16401                                             spot
## 16402                                             spot
## 16403                                             spot
## 16404                                             spot
## 16405                                             spot
## 16406                                             spot
## 16407                                           spread
## 16408                                           spring
## 16409                                           spring
## 16410                                               st
## 16411                                               st
## 16412                                               st
## 16413                                               st
## 16414                                               st
## 16415                                            staff
## 16416                                            staff
## 16417                                            staff
## 16418                                            staff
## 16419                                            staff
## 16420                                            staff
## 16421                                            staff
## 16422                                            staff
## 16423                                            staff
## 16424                                            staff
## 16425                                            staff
## 16426                                            staff
## 16427                                            staff
## 16428                                            staff
## 16429                                            staff
## 16430                                            staff
## 16431                                            staff
## 16432                                            staff
## 16433                                            stale
## 16434                                            stale
## 16435                                            stale
## 16436                                            stale
## 16437                                            stale
## 16438                                            stale
## 16439                                            stale
## 16440                                            stall
## 16441                                            stand
## 16442                                            stand
## 16443                                            stand
## 16444                                            stand
## 16445                                            stand
## 16446                                            stand
## 16447                                            stand
## 16448                                         standard
## 16449                                           staple
## 16450                                           staple
## 16451                                             star
## 16452                                             star
## 16453                                             star
## 16454                                             star
## 16455                                             star
## 16456                                             star
## 16457                                             star
## 16458                                             star
## 16459                                             star
## 16460                                             star
## 16461                                             star
## 16462                                             star
## 16463                                             star
## 16464                                             star
## 16465                                             star
## 16466                                             star
## 16467                                             star
## 16468                                             star
## 16469                                             star
## 16470                                             star
## 16471                                             star
## 16472                                             star
## 16473                                             star
## 16474                                             star
## 16475                                             star
## 16476                                             star
## 16477                                             star
## 16478                                             star
## 16479                                             star
## 16480                                             star
## 16481                                             star
## 16482                                            stare
## 16483                                            start
## 16484                                            start
## 16485                                            start
## 16486                                            start
## 16487                                            start
## 16488                                            start
## 16489                                            start
## 16490                                            start
## 16491                                            start
## 16492                                            start
## 16493                                            start
## 16494                                            start
## 16495                                            state
## 16496                                            state
## 16497                                           staten
## 16498                                           statue
## 16499                                             stay
## 16500                                             stay
## 16501                                             stay
## 16502                                            steak
## 16503                                            steak
## 16504                                            steak
## 16505                                            steak
## 16506                                            steak
## 16507                                            steak
## 16508                                            steak
## 16509                                            steak
## 16510                                            steak
## 16511                                            steak
## 16512                                            steak
## 16513                                            steak
## 16514                                            steak
## 16515                                            steak
## 16516                                            steak
## 16517                                            steak
## 16518                                            steak
## 16519                                            steak
## 16520                                            steak
## 16521                                            steak
## 16522                                            steak
## 16523                                            steak
## 16524                                            steak
## 16525                                            steak
## 16526                                            steak
## 16527                                            steak
## 16528                                            steak
## 16529                                            steak
## 16530                                            steak
## 16531                                            steak
## 16532                                            steak
## 16533                                            steak
## 16534                                            steak
## 16535                                            steak
## 16536                                            steak
## 16537                                            steak
## 16538                                            steak
## 16539                                            steak
## 16540                                            steak
## 16541                                            steak
## 16542                                            steak
## 16543                                            steak
## 16544                                            steak
## 16545                                            steak
## 16546                                            steak
## 16547                                            steak
## 16548                                            steak
## 16549                                            steak
## 16550                                            steak
## 16551                                            steak
## 16552                                            steak
## 16553                                            steak
## 16554                                            steak
## 16555                                            steak
## 16556                                            steak
## 16557                                            steak
## 16558                                            steak
## 16559                                            steak
## 16560                                            steak
## 16561                                            steak
## 16562                                            steak
## 16563                                            steak
## 16564                                            steak
## 16565                                            steak
## 16566                                            steak
## 16567                                            steak
## 16568                                            steak
## 16569                                            steak
## 16570                                            steak
## 16571                                            steak
## 16572                                            steak
## 16573                                            steak
## 16574                                            steak
## 16575                                            steak
## 16576                                            steak
## 16577                                            steak
## 16578                                            steak
## 16579                                            steak
## 16580                                            steak
## 16581                                            steak
## 16582                                            steak
## 16583                                            steak
## 16584                                            steak
## 16585                                            steak
## 16586                                            steak
## 16587                                            steak
## 16588                                            steak
## 16589                                            steak
## 16590                                            steak
## 16591                                            steak
## 16592                                            steak
## 16593                                            steak
## 16594                                            steak
## 16595                                            steak
## 16596                                            steak
## 16597                                            steak
## 16598                                            steak
## 16599                                            steak
## 16600                                            steak
## 16601                                            steak
## 16602                                            steal
## 16603                                            steam
## 16604                                            steam
## 16605                                            steer
## 16606                                             step
## 16607                                             step
## 16608                                             step
## 16609                                             step
## 16610                                             step
## 16611                                             step
## 16612                                           steves
## 16613                                            stick
## 16614                                            stick
## 16615                                            stick
## 16616                                          sticker
## 16617                                          sticker
## 16618                                          sticker
## 16619                                            still
## 16620                                            still
## 16621                                            still
## 16622                                            still
## 16623                                            still
## 16624                                            still
## 16625                                            still
## 16626                                            still
## 16627                                            still
## 16628                                            still
## 16629                                            still
## 16630                                            still
## 16631                                            still
## 16632                                            still
## 16633                                            still
## 16634                                            still
## 16635                                            still
## 16636                                            still
## 16637                                            still
## 16638                                            still
## 16639                                            still
## 16640                                            still
## 16641                                            still
## 16642                                            still
## 16643                                            still
## 16644                                            still
## 16645                                            still
## 16646                                            still
## 16647                                           stingy
## 16648                                            stink
## 16649                                          stomach
## 16650                                             stop
## 16651                                             stop
## 16652                                             stop
## 16653                                             stop
## 16654                                             stop
## 16655                                             stop
## 16656                                             stop
## 16657                                             stop
## 16658                                             stop
## 16659                                             stop
## 16660                                             stop
## 16661                                             stop
## 16662                                             stop
## 16663                                            store
## 16664                                            store
## 16665                                            store
## 16666                                            store
## 16667                                         straight
## 16668                                         straight
## 16669                                         straight
## 16670                                          strange
## 16671                                           street
## 16672                                           street
## 16673                                           street
## 16674                                           street
## 16675                                           street
## 16676                                           street
## 16677                                           street
## 16678                                           street
## 16679                                           street
## 16680                                           street
## 16681                                           street
## 16682                                           street
## 16683                                           street
## 16684                                           street
## 16685                                           street
## 16686                                           street
## 16687                                           street
## 16688                                           street
## 16689                                           street
## 16690                                           street
## 16691                                           street
## 16692                                           street
## 16693                                           street
## 16694                                           street
## 16695                                           street
## 16696                                           street
## 16697                                           street
## 16698                                           street
## 16699                                           street
## 16700                                           street
## 16701                                           street
## 16702                                           street
## 16703                                           street
## 16704                                           street
## 16705                                           street
## 16706                                           street
## 16707                                           street
## 16708                                           street
## 16709                                           street
## 16710                                           street
## 16711                                           stress
## 16712                                         strictly
## 16713                                         struggle
## 16714                                            stuff
## 16715                                            stuff
## 16716                                            stuff
## 16717                                            style
## 16718                                              sub
## 16719                                              sub
## 16720                                              sub
## 16721                                              sub
## 16722                                              sub
## 16723                                              sub
## 16724                                              sub
## 16725                                              sub
## 16726                                              sub
## 16727                                              sub
## 16728                                              sub
## 16729                                              sub
## 16730                                              sub
## 16731                                           subpar
## 16732                                           subpar
## 16733                                           subway
## 16734                                           subway
## 16735                                           subway
## 16736                                       successful
## 16737                                             suck
## 16738                                             suck
## 16739                                             suck
## 16740                                             suck
## 16741                                             suck
## 16742                                             suck
## 16743                                             suck
## 16744                                             suck
## 16745                                             suck
## 16746                                             suck
## 16747                                             suck
## 16748                                             suck
## 16749                                             suck
## 16750                                             suck
## 16751                                       sugarhouse
## 16752                                          suggest
## 16753                                          suggest
## 16754                                          suggest
## 16755                                           summer
## 16756                                            sunny
## 16757                                            super
## 16758                                            super
## 16759                                            super
## 16760                                            super
## 16761                                            super
## 16762                                            super
## 16763                                            super
## 16764                                            super
## 16765                                            super
## 16766                                            super
## 16767                                            super
## 16768                                            super
## 16769                                         superior
## 16770                                         superior
## 16771                                          support
## 16772                                          support
## 16773                                          suppose
## 16774                                          suppose
## 16775                                          suppose
## 16776                                          suppose
## 16777                                             sure
## 16778                                             sure
## 16779                                             sure
## 16780                                             sure
## 16781                                             sure
## 16782                                             sure
## 16783                                             sure
## 16784                                             sure
## 16785                                             sure
## 16786                                             sure
## 16787                                             sure
## 16788                                             sure
## 16789                                             sure
## 16790                                             sure
## 16791                                             sure
## 16792                                             sure
## 16793                                             sure
## 16794                                             sure
## 16795                                             sure
## 16796                                         surprise
## 16797                                         surprise
## 16798                                     surprisingly
## 16799                                     surprisingly
## 16800                                     surprisingly
## 16801                                         surround
## 16802                                          survive
## 16803                                          suspect
## 16804                                          suspect
## 16805                                            swiss
## 16806                                           system
## 16807                                            table
## 16808                                            table
## 16809                                            table
## 16810                                            table
## 16811                                            table
## 16812                                            table
## 16813                                            table
## 16814                                            table
## 16815                                            table
## 16816                                            table
## 16817                                            table
## 16818                                             taco
## 16819                                              tad
## 16820                                             take
## 16821                                             take
## 16822                                             take
## 16823                                             take
## 16824                                             take
## 16825                                             take
## 16826                                             take
## 16827                                             take
## 16828                                             take
## 16829                                             take
## 16830                                             take
## 16831                                             take
## 16832                                             take
## 16833                                             take
## 16834                                             take
## 16835                                             take
## 16836                                             take
## 16837                                             take
## 16838                                             take
## 16839                                             take
## 16840                                             take
## 16841                                             take
## 16842                                             take
## 16843                                             take
## 16844                                             take
## 16845                                             take
## 16846                                             take
## 16847                                             take
## 16848                                             take
## 16849                                             take
## 16850                                             take
## 16851                                             take
## 16852                                             take
## 16853                                            taker
## 16854                                             talk
## 16855                                             talk
## 16856                                             talk
## 16857                                             talk
## 16858                                             talk
## 16859                                             talk
## 16860                                             talk
## 16861                                             talk
## 16862                                              tan
## 16863                                             tape
## 16864                                            taste
## 16865                                            taste
## 16866                                            taste
## 16867                                            taste
## 16868                                            taste
## 16869                                            taste
## 16870                                            taste
## 16871                                            taste
## 16872                                            taste
## 16873                                            taste
## 16874                                            taste
## 16875                                            taste
## 16876                                            taste
## 16877                                            taste
## 16878                                            taste
## 16879                                            taste
## 16880                                            taste
## 16881                                            taste
## 16882                                            taste
## 16883                                            taste
## 16884                                            taste
## 16885                                            taste
## 16886                                            taste
## 16887                                            taste
## 16888                                            taste
## 16889                                            taste
## 16890                                            taste
## 16891                                            taste
## 16892                                            taste
## 16893                                            taste
## 16894                                            taste
## 16895                                            taste
## 16896                                            taste
## 16897                                            taste
## 16898                                            taste
## 16899                                            taste
## 16900                                            taste
## 16901                                        tasteless
## 16902                                        tasteless
## 16903                                        tasteless
## 16904                                        tasteless
## 16905                                        tasteless
## 16906                                        tasteless
## 16907                                        tasteless
## 16908                                            tasty
## 16909                                            tasty
## 16910                                            tasty
## 16911                                            tasty
## 16912                                            tasty
## 16913                                            tasty
## 16914                                            tasty
## 16915                                            tasty
## 16916                                            tasty
## 16917                                            tasty
## 16918                                            tasty
## 16919                                              tax
## 16920                                             taxi
## 16921                                             taxi
## 16922                                             team
## 16923                                             tear
## 16924                                       television
## 16925                                             tell
## 16926                                             tell
## 16927                                             tell
## 16928                                             tell
## 16929                                             tell
## 16930                                             tell
## 16931                                             tell
## 16932                                             tell
## 16933                                             tell
## 16934                                             tell
## 16935                                             tell
## 16936                                             tell
## 16937                                             tell
## 16938                                             tell
## 16939                                             tell
## 16940                                             tell
## 16941                                            tempt
## 16942                                              ten
## 16943                                           tender
## 16944                                           tender
## 16945                                           tender
## 16946                                           tender
## 16947                                           tender
## 16948                                           tender
## 16949                                           tender
## 16950                                           tender
## 16951                                             term
## 16952                                             term
## 16953                                         terrible
## 16954                                         terrible
## 16955                                         terrible
## 16956                                         terrible
## 16957                                         terrible
## 16958                                         terrible
## 16959                                         terrible
## 16960                                             test
## 16961                                             test
## 16962                                             test
## 16963                                             test
## 16964                                             test
## 16965                                            texas
## 16966                                          texture
## 16967                                          texture
## 16968                                               th
## 16969                                               th
## 16970                                               th
## 16971                                               th
## 16972                                               th
## 16973                                               th
## 16974                                               th
## 16975                                            thank
## 16976                                            thank
## 16977                                            thank
## 16978                                            thank
## 16979                                            thank
## 16980                                            thank
## 16981                                            thank
## 16982                                            thank
## 16983                                            thats
## 16984                                            thats
## 16985                                            thats
## 16986                                            thats
## 16987                                            thats
## 16988                                            thats
## 16989                                            thats
## 16990                                            thats
## 16991                                            thats
## 16992                                            thats
## 16993                                            thats
## 16994                                            thats
## 16995                                            thats
## 16996                                            thats
## 16997                                            thats
## 16998                                            thats
## 16999                                            thats
## 17000                                            thats
## 17001                                            thats
## 17002                                            thats
## 17003                                            thats
## 17004                                           theres
## 17005                                           theres
## 17006                                           theres
## 17007                                           theyre
## 17008                                           theyre
## 17009                                           theyre
## 17010                                           theyre
## 17011                                           theyre
## 17012                                           theyre
## 17013                                           theyre
## 17014                                           theyre
## 17015                                           theyre
## 17016                                           theyre
## 17017                                           theyre
## 17018                                           theyre
## 17019                                           theyre
## 17020                                           theyre
## 17021                                           theyre
## 17022                                           theyve
## 17023                                            thick
## 17024                                            thick
## 17025                                            thick
## 17026                                            thick
## 17027                                            thick
## 17028                                             thin
## 17029                                             thin
## 17030                                             thin
## 17031                                             thin
## 17032                                             thin
## 17033                                             thin
## 17034                                             thin
## 17035                                            thing
## 17036                                            thing
## 17037                                            thing
## 17038                                            thing
## 17039                                            thing
## 17040                                            thing
## 17041                                            thing
## 17042                                            thing
## 17043                                            thing
## 17044                                            thing
## 17045                                            thing
## 17046                                            thing
## 17047                                            thing
## 17048                                            thing
## 17049                                            thing
## 17050                                            thing
## 17051                                            thing
## 17052                                            thing
## 17053                                            thing
## 17054                                            thing
## 17055                                            thing
## 17056                                            thing
## 17057                                            thing
## 17058                                            thing
## 17059                                            thing
## 17060                                            thing
## 17061                                            thing
## 17062                                            thing
## 17063                                            thing
## 17064                                            thing
## 17065                                            thing
## 17066                                            think
## 17067                                            think
## 17068                                            think
## 17069                                            think
## 17070                                            think
## 17071                                            think
## 17072                                            think
## 17073                                            think
## 17074                                            think
## 17075                                            think
## 17076                                            think
## 17077                                            think
## 17078                                            think
## 17079                                            think
## 17080                                            think
## 17081                                            think
## 17082                                            think
## 17083                                            think
## 17084                                            think
## 17085                                            think
## 17086                                            think
## 17087                                            think
## 17088                                            think
## 17089                                            think
## 17090                                            think
## 17091                                            think
## 17092                                            think
## 17093                                            think
## 17094                                            think
## 17095                                            think
## 17096                                            think
## 17097                                            think
## 17098                                            think
## 17099                                            think
## 17100                                            think
## 17101                                            think
## 17102                                            think
## 17103                                            think
## 17104                                            think
## 17105                                            think
## 17106                                            think
## 17107                                            think
## 17108                                            think
## 17109                                            think
## 17110                                            think
## 17111                                            think
## 17112                                            think
## 17113                                            think
## 17114                                            think
## 17115                                            think
## 17116                                           thirty
## 17117                                           though
## 17118                                           though
## 17119                                           though
## 17120                                           though
## 17121                                           though
## 17122                                           though
## 17123                                           though
## 17124                                           though
## 17125                                           though
## 17126                                           though
## 17127                                           though
## 17128                                           though
## 17129                                           though
## 17130                                           though
## 17131                                           though
## 17132                                           though
## 17133                                           though
## 17134                                           though
## 17135                                           though
## 17136                                           though
## 17137                                           though
## 17138                                           though
## 17139                                           though
## 17140                                           though
## 17141                                           though
## 17142                                         thousand
## 17143                                            three
## 17144                                            three
## 17145                                            three
## 17146                                            three
## 17147                                            three
## 17148                                            three
## 17149                                            three
## 17150                                            three
## 17151                                            throw
## 17152                                            throw
## 17153                                            throw
## 17154                                            throw
## 17155                                            throw
## 17156                                            throw
## 17157                                            thumb
## 17158                                         thursday
## 17159                                         thursday
## 17160                                             tick
## 17161                                             till
## 17162                                             time
## 17163                                             time
## 17164                                             time
## 17165                                             time
## 17166                                             time
## 17167                                             time
## 17168                                             time
## 17169                                             time
## 17170                                             time
## 17171                                             time
## 17172                                             time
## 17173                                             time
## 17174                                             time
## 17175                                             time
## 17176                                             time
## 17177                                             time
## 17178                                             time
## 17179                                             time
## 17180                                             time
## 17181                                             time
## 17182                                             time
## 17183                                             time
## 17184                                             time
## 17185                                             time
## 17186                                             time
## 17187                                             time
## 17188                                             time
## 17189                                             time
## 17190                                             time
## 17191                                             time
## 17192                                             time
## 17193                                             time
## 17194                                             time
## 17195                                             time
## 17196                                             time
## 17197                                             time
## 17198                                             time
## 17199                                             time
## 17200                                             time
## 17201                                             time
## 17202                                             time
## 17203                                             time
## 17204                                             time
## 17205                                             time
## 17206                                             time
## 17207                                             time
## 17208                                             time
## 17209                                             time
## 17210                                             time
## 17211                                             time
## 17212                                             time
## 17213                                             time
## 17214                                             time
## 17215                                             time
## 17216                                             time
## 17217                                            timer
## 17218                                             tiny
## 17219                                              tip
## 17220                                              tip
## 17221                                              tip
## 17222                                             tire
## 17223                                            toast
## 17224                                            toast
## 17225                                            today
## 17226                                            today
## 17227                                            today
## 17228                                            today
## 17229                                            today
## 17230                                            today
## 17231                                         together
## 17232                                         together
## 17233                                         together
## 17234                                         together
## 17235                                            tommy
## 17236                                              ton
## 17237                                              ton
## 17238                                              ton
## 17239                                              top
## 17240                                              top
## 17241                                              top
## 17242                                              top
## 17243                                              top
## 17244                                              top
## 17245                                              top
## 17246                                              top
## 17247                                              top
## 17248                                              top
## 17249                                              top
## 17250                                              top
## 17251                                              top
## 17252                                              top
## 17253                                              top
## 17254                                              top
## 17255                                          topping
## 17256                                          topping
## 17257                                            total
## 17258                                          totally
## 17259                                          totally
## 17260                                          totally
## 17261                                          totally
## 17262                                            totem
## 17263                                           touchy
## 17264                                            tough
## 17265                                            tough
## 17266                                            tough
## 17267                                            tough
## 17268                                            tough
## 17269                                            tough
## 17270                                            tough
## 17271                                            tough
## 17272                                            tough
## 17273                                            tough
## 17274                                            tough
## 17275                                             tour
## 17276                                             tour
## 17277                                             tour
## 17278                                          tourism
## 17279                                          tourist
## 17280                                          tourist
## 17281                                          tourist
## 17282                                          tourist
## 17283                                          tourist
## 17284                                          tourist
## 17285                                          tourist
## 17286                                          tourist
## 17287                                          tourist
## 17288                                          tourist
## 17289                                          tourist
## 17290                                          tourist
## 17291                                          tourist
## 17292                                          tourist
## 17293                                          tourist
## 17294                                          tourist
## 17295                                          tourist
## 17296                                          tourist
## 17297                                          tourist
## 17298                                          tourist
## 17299                                          tourist
## 17300                                          tourist
## 17301                                          tourist
## 17302                                          tourist
## 17303                                         touristy
## 17304                                          towards
## 17305                                             town
## 17306                                             town
## 17307                                             town
## 17308                                             town
## 17309                                             town
## 17310                                             town
## 17311                                             town
## 17312                                             town
## 17313                                             town
## 17314                                             town
## 17315                                             town
## 17316                                             town
## 17317                                             town
## 17318                                      traditional
## 17319                                          traffic
## 17320                                             trap
## 17321                                             trap
## 17322                                             trap
## 17323                                             trap
## 17324                                             trap
## 17325                                             trap
## 17326                                             trap
## 17327                                             trap
## 17328                                             trap
## 17329                                             trap
## 17330                                             trap
## 17331                                             trap
## 17332                                             trap
## 17333                                             trap
## 17334                                             trap
## 17335                                             trap
## 17336                                             trap
## 17337                                             trap
## 17338                                             trap
## 17339                                             trap
## 17340                                             trap
## 17341                                             trap
## 17342                                            trash
## 17343                                            trash
## 17344                                            trash
## 17345                                            trash
## 17346                                           travel
## 17347                                            treat
## 17348                                            treat
## 17349                                             trek
## 17350                                           tricky
## 17351                                             trip
## 17352                                             trip
## 17353                                             trip
## 17354                                             trip
## 17355                                             trip
## 17356                                             trip
## 17357                                             trip
## 17358                                             trip
## 17359                                             trip
## 17360                                             trip
## 17361                                             trip
## 17362                                             trip
## 17363                                             trip
## 17364                                             trip
## 17365                                             trip
## 17366                                             trip
## 17367                                             true
## 17368                                             true
## 17369                                             true
## 17370                                             true
## 17371                                             true
## 17372                                             true
## 17373                                             true
## 17374                                            truly
## 17375                                            truly
## 17376                                            truly
## 17377                                            trust
## 17378                                            trust
## 17379                                            trust
## 17380                                            truth
## 17381                                            truth
## 17382                                              try
## 17383                                              try
## 17384                                              try
## 17385                                              try
## 17386                                              try
## 17387                                              try
## 17388                                              try
## 17389                                              try
## 17390                                              try
## 17391                                              try
## 17392                                              try
## 17393                                              try
## 17394                                              try
## 17395                                              try
## 17396                                              try
## 17397                                              try
## 17398                                              try
## 17399                                              try
## 17400                                              try
## 17401                                              try
## 17402                                              try
## 17403                                              try
## 17404                                              try
## 17405                                              try
## 17406                                              try
## 17407                                              try
## 17408                                              try
## 17409                                              try
## 17410                                              try
## 17411                                              try
## 17412                                              try
## 17413                                              try
## 17414                                              try
## 17415                                              try
## 17416                                              try
## 17417                                              try
## 17418                                              try
## 17419                                              try
## 17420                                              try
## 17421                                              try
## 17422                                              try
## 17423                                              try
## 17424                                              try
## 17425                                              try
## 17426                                              try
## 17427                                              try
## 17428                                              try
## 17429                                              try
## 17430                                              try
## 17431                                              try
## 17432                                              try
## 17433                                              try
## 17434                                              try
## 17435                                             turn
## 17436                                             turn
## 17437                                               tv
## 17438                                               tv
## 17439                                               tv
## 17440                                               tv
## 17441                                               tv
## 17442                                               tv
## 17443                                               tv
## 17444                                            twice
## 17445                                            twice
## 17446                                              two
## 17447                                              two
## 17448                                              two
## 17449                                              two
## 17450                                              two
## 17451                                              two
## 17452                                              two
## 17453                                              two
## 17454                                              two
## 17455                                              two
## 17456                                              two
## 17457                                              two
## 17458                                              two
## 17459                                              two
## 17460                                              two
## 17461                                              two
## 17462                                              two
## 17463                                              two
## 17464                                              two
## 17465                                              two
## 17466                                              two
## 17467                                              two
## 17468                                              two
## 17469                                              two
## 17470                                              two
## 17471                                              two
## 17472                                              two
## 17473                                              two
## 17474                                              two
## 17475                                              two
## 17476                                              two
## 17477                                              two
## 17478                                              two
## 17479                                              two
## 17480                                              two
## 17481                                              two
## 17482                                              two
## 17483                                              two
## 17484                                             type
## 17485                                          typical
## 17486                                          typical
## 17487                                          typical
## 17488                                                u
## 17489                                                u
## 17490                                         ultimate
## 17491                                       ultimately
## 17492                                         uncooked
## 17493                                      undercooked
## 17494                                       understand
## 17495                                       understand
## 17496                                       understand
## 17497                                       understand
## 17498                                       understand
## 17499                                       understand
## 17500                                       understand
## 17501                                       understand
## 17502                                       understand
## 17503                                       understand
## 17504                                        undertone
## 17505                                       underwhelm
## 17506                                    unfortunately
## 17507                                    unfortunately
## 17508                                    unfortunately
## 17509                                    unfortunately
## 17510                                    unfortunately
## 17511                                    unfortunately
## 17512                                           unique
## 17513                                           unless
## 17514                                           unless
## 17515                                           unlike
## 17516                                           unlike
## 17517                                           unlike
## 17518                                           unwrap
## 17519                                             upon
## 17520                                             upon
## 17521                                             upon
## 17522                                            upset
## 17523                                            upset
## 17524                                               us
## 17525                                               us
## 17526                                               us
## 17527                                               us
## 17528                                               us
## 17529                                               us
## 17530                                               us
## 17531                                               us
## 17532                                               us
## 17533                                               us
## 17534                                               us
## 17535                                               us
## 17536                                               us
## 17537                                               us
## 17538                                               us
## 17539                                               us
## 17540                                               us
## 17541                                               us
## 17542                                               us
## 17543                                               us
## 17544                                              use
## 17545                                              use
## 17546                                              use
## 17547                                              use
## 17548                                              use
## 17549                                              use
## 17550                                              use
## 17551                                              use
## 17552                                              use
## 17553                                              use
## 17554                                              use
## 17555                                              use
## 17556                                              use
## 17557                                              use
## 17558                                              use
## 17559                                              use
## 17560                                              use
## 17561                                              use
## 17562                                              use
## 17563                                            usual
## 17564                                            usual
## 17565                                          usually
## 17566                                          usually
## 17567                                          usually
## 17568                                          usually
## 17569                                          usually
## 17570                                          usually
## 17571                                          usually
## 17572                                         vacation
## 17573                                            valet
## 17574                                            value
## 17575                                            value
## 17576                                             vega
## 17577                                             vega
## 17578                                           veggie
## 17579                                         velveeta
## 17580                                             vend
## 17581                                            vento
## 17582                                            vento
## 17583                                            vento
## 17584                                            vento
## 17585                                            vento
## 17586                                          venture
## 17587                                          venture
## 17588                                          venture
## 17589                                          venture
## 17590                                          verdict
## 17591                                          version
## 17592                                           versus
## 17593                                           victim
## 17594                                             view
## 17595                                        violently
## 17596                                             vise
## 17597                                            visit
## 17598                                            visit
## 17599                                            visit
## 17600                                            visit
## 17601                                            visit
## 17602                                            visit
## 17603                                            visit
## 17604                                            visit
## 17605                                            visit
## 17606                                            visit
## 17607                                            visit
## 17608                                            visit
## 17609                                            visit
## 17610                                            visit
## 17611                                            visit
## 17612                                          visitor
## 17613                                          visitor
## 17614                                            vomit
## 17615                                             vote
## 17616                                               vs
## 17617                                               vs
## 17618                                                w
## 17619                                                w
## 17620                                                w
## 17621                                            waaay
## 17622                                            waist
## 17623                                             wait
## 17624                                             wait
## 17625                                             wait
## 17626                                             wait
## 17627                                             wait
## 17628                                             wait
## 17629                                             wait
## 17630                                             wait
## 17631                                             wait
## 17632                                             wait
## 17633                                             wait
## 17634                                             wait
## 17635                                             wait
## 17636                                             wait
## 17637                                             wait
## 17638                                             wait
## 17639                                             wait
## 17640                                             wait
## 17641                                             wait
## 17642                                             wait
## 17643                                             walk
## 17644                                             walk
## 17645                                             walk
## 17646                                             walk
## 17647                                             walk
## 17648                                             walk
## 17649                                             walk
## 17650                                             walk
## 17651                                             walk
## 17652                                             walk
## 17653                                             walk
## 17654                                             walk
## 17655                                             wall
## 17656                                             wall
## 17657                                            wanna
## 17658                                             want
## 17659                                             want
## 17660                                             want
## 17661                                             want
## 17662                                             want
## 17663                                             want
## 17664                                             want
## 17665                                             want
## 17666                                             want
## 17667                                             want
## 17668                                             want
## 17669                                             want
## 17670                                             want
## 17671                                             want
## 17672                                             want
## 17673                                             want
## 17674                                             want
## 17675                                             want
## 17676                                             want
## 17677                                             want
## 17678                                             want
## 17679                                             want
## 17680                                             want
## 17681                                             want
## 17682                                             want
## 17683                                             want
## 17684                                             want
## 17685                                             want
## 17686                                             want
## 17687                                             want
## 17688                                             want
## 17689                                              war
## 17690                                              war
## 17691                                              war
## 17692                                             warm
## 17693                                             warm
## 17694                                             warm
## 17695                                             warm
## 17696                                             warm
## 17697                                             warm
## 17698                                             warm
## 17699                                            wasnt
## 17700                                            wasnt
## 17701                                            wasnt
## 17702                                            wasnt
## 17703                                            wasnt
## 17704                                            wasnt
## 17705                                            wasnt
## 17706                                            wasnt
## 17707                                            wasnt
## 17708                                            wasnt
## 17709                                            wasnt
## 17710                                            wasnt
## 17711                                            wasnt
## 17712                                            wasnt
## 17713                                            wasnt
## 17714                                            wasnt
## 17715                                            wasnt
## 17716                                            wasnt
## 17717                                            wasnt
## 17718                                            wasnt
## 17719                                            wasnt
## 17720                                            wasnt
## 17721                                            wasnt
## 17722                                            wasnt
## 17723                                            wasnt
## 17724                                            wasnt
## 17725                                             wast
## 17726                                            waste
## 17727                                            waste
## 17728                                            waste
## 17729                                            waste
## 17730                                            waste
## 17731                                            watch
## 17732                                            watch
## 17733                                            watch
## 17734                                            watch
## 17735                                            watch
## 17736                                            watch
## 17737                                            watch
## 17738                                            watch
## 17739                                            water
## 17740                                            water
## 17741                                            water
## 17742                                           watery
## 17743                                              way
## 17744                                              way
## 17745                                              way
## 17746                                              way
## 17747                                              way
## 17748                                              way
## 17749                                              way
## 17750                                              way
## 17751                                              way
## 17752                                              way
## 17753                                              way
## 17754                                              way
## 17755                                              way
## 17756                                              way
## 17757                                              way
## 17758                                              way
## 17759                                              way
## 17760                                              way
## 17761                                              way
## 17762                                              way
## 17763                                              way
## 17764                                              way
## 17765                                              way
## 17766                                              way
## 17767                                              way
## 17768                                              way
## 17769                                              way
## 17770                                              way
## 17771                                              way
## 17772                                              way
## 17773                                              way
## 17774                                              way
## 17775                                              way
## 17776                                              way
## 17777                                              way
## 17778                                              way
## 17779                                              way
## 17780                                              way
## 17781                                              way
## 17782                                              way
## 17783                                              way
## 17784                                              way
## 17785                                            wayyy
## 17786                                             wear
## 17787                                             wear
## 17788                                             wear
## 17789                                          weather
## 17790                                              wed
## 17791                                             week
## 17792                                          weekend
## 17793                                          weekend
## 17794                                          weekend
## 17795                                          weekend
## 17796                                          weekend
## 17797                                            weird
## 17798                                          welcome
## 17799                                          welcome
## 17800                                           werent
## 17801                                           werent
## 17802                                           werent
## 17803                                           werent
## 17804                                           werent
## 17805                                           werent
## 17806                                              wet
## 17807                                              wet
## 17808                                              wet
## 17809                                              wet
## 17810                                              wet
## 17811                                             weve
## 17812                                         whatever
## 17813                                         whatever
## 17814                                         whatever
## 17815                                            whats
## 17816                                            whats
## 17817                                            whats
## 17818                                            whats
## 17819                                            whats
## 17820                                            whats
## 17821                                            whats
## 17822                                       whatsoever
## 17823                                         whenever
## 17824                                          whereas
## 17825                                          whether
## 17826                                          whether
## 17827                                          whether
## 17828                                          whether
## 17829                                            white
## 17830                                            white
## 17831                                            white
## 17832                                            white
## 17833                                            white
## 17834                                             whiz
## 17835                                             whiz
## 17836                                             whiz
## 17837                                             whiz
## 17838                                             whiz
## 17839                                             whiz
## 17840                                             whiz
## 17841                                             whiz
## 17842                                             whiz
## 17843                                             whiz
## 17844                                             whiz
## 17845                                             whiz
## 17846                                             whiz
## 17847                                             whiz
## 17848                                             whiz
## 17849                                             whiz
## 17850                                             whiz
## 17851                                             whiz
## 17852                                             whiz
## 17853                                             whiz
## 17854                                             whiz
## 17855                                             whiz
## 17856                                             whiz
## 17857                                             whiz
## 17858                                             whiz
## 17859                                             whiz
## 17860                                             whiz
## 17861                                             whiz
## 17862                                             whiz
## 17863                                             whiz
## 17864                                             whiz
## 17865                                             whiz
## 17866                                             whiz
## 17867                                             whiz
## 17868                                             whiz
## 17869                                             whiz
## 17870                                             whiz
## 17871                                             whiz
## 17872                                            whole
## 17873                                            whole
## 17874                                            whole
## 17875                                            whole
## 17876                                            whole
## 17877                                            whole
## 17878                                            whole
## 17879                                             whos
## 17880                                             wife
## 17881                                             wife
## 17882                                             wife
## 17883                                             wife
## 17884                                             wife
## 17885                                             wife
## 17886                                             wife
## 17887                                             wife
## 17888                                             wife
## 17889                                             wife
## 17890                                            wifes
## 17891                                             will
## 17892                                             will
## 17893                                             will
## 17894                                             will
## 17895                                             will
## 17896                                             will
## 17897                                             will
## 17898                                             will
## 17899                                             will
## 17900                                             will
## 17901                                             will
## 17902                                             will
## 17903                                             will
## 17904                                             will
## 17905                                             will
## 17906                                             will
## 17907                                             will
## 17908                                             will
## 17909                                             will
## 17910                                             will
## 17911                                             will
## 17912                                             will
## 17913                                             will
## 17914                                             will
## 17915                                             will
## 17916                                             will
## 17917                                              win
## 17918                                              win
## 17919                                              win
## 17920                                              win
## 17921                                              win
## 17922                                              win
## 17923                                              win
## 17924                                              win
## 17925                                              win
## 17926                                              win
## 17927                                              win
## 17928                                           window
## 17929                                           window
## 17930                                           window
## 17931                                           window
## 17932                                           window
## 17933                                           window
## 17934                                           window
## 17935                                           window
## 17936                                           window
## 17937                                           window
## 17938                                           window
## 17939                                           window
## 17940                                           window
## 17941                                           window
## 17942                                           window
## 17943                                           window
## 17944                                           window
## 17945                                           window
## 17946                                           window
## 17947                                           window
## 17948                                           window
## 17949                                           window
## 17950                                           window
## 17951                                           window
## 17952                                           window
## 17953                                           window
## 17954                                           window
## 17955                                           window
## 17956                                             wing
## 17957                                             wing
## 17958                                           winner
## 17959                                           winner
## 17960                                           winter
## 17961                                             wish
## 17962                                             wish
## 17963                                             wish
## 17964                                             wish
## 17965                                             wish
## 17966                                             wish
## 17967                                             wish
## 17968                                             wish
## 17969                                             wish
## 17970                                             wish
## 17971                                              wit
## 17972                                              wit
## 17973                                              wit
## 17974                                              wit
## 17975                                              wit
## 17976                                              wit
## 17977                                              wit
## 17978                                              wit
## 17979                                              wit
## 17980                                              wit
## 17981                                              wit
## 17982                                              wit
## 17983                                          without
## 17984                                          without
## 17985                                          without
## 17986                                          without
## 17987                                          without
## 17988                                          without
## 17989                                          without
## 17990                                          without
## 17991                                          without
## 17992                                          without
## 17993                                           witout
## 17994                                              wiz
## 17995                                              wiz
## 17996                                              wiz
## 17997                                              wiz
## 17998                                              wiz
## 17999                                              wiz
## 18000                                              wiz
## 18001                                              wiz
## 18002                                              wiz
## 18003                                              wiz
## 18004                                              wiz
## 18005                                              wiz
## 18006                                              wiz
## 18007                                              wiz
## 18008                                              wiz
## 18009                                              wiz
## 18010                                              wiz
## 18011                                              wiz
## 18012                                              wiz
## 18013                                              wiz
## 18014                                              wiz
## 18015                                              wiz
## 18016                                              wiz
## 18017                                              wiz
## 18018                                              wiz
## 18019                                              wiz
## 18020                                              wiz
## 18021                                              wiz
## 18022                                              wiz
## 18023                                              wiz
## 18024                                              wiz
## 18025                                           wizwit
## 18026                                             wizz
## 18027                                            woman
## 18028                                            woman
## 18029                                            woman
## 18030                                           wonder
## 18031                                           wonder
## 18032                                           wonder
## 18033                                        wonderful
## 18034                                             wont
## 18035                                             wont
## 18036                                             wont
## 18037                                             wont
## 18038                                             wont
## 18039                                             word
## 18040                                             word
## 18041                                             word
## 18042                                             work
## 18043                                             work
## 18044                                             work
## 18045                                             work
## 18046                                             work
## 18047                                             work
## 18048                                             work
## 18049                                             work
## 18050                                             work
## 18051                                             work
## 18052                                             work
## 18053                                             work
## 18054                                             work
## 18055                                           worker
## 18056                                           worker
## 18057                                           worker
## 18058                                           worker
## 18059                                           worker
## 18060                                            world
## 18061                                            world
## 18062                                            world
## 18063                                            world
## 18064                                            worry
## 18065                                            worth
## 18066                                            worth
## 18067                                            worth
## 18068                                            worth
## 18069                                            worth
## 18070                                            worth
## 18071                                            worth
## 18072                                            worth
## 18073                                            worth
## 18074                                            worth
## 18075                                            worth
## 18076                                            worth
## 18077                                            worth
## 18078                                            worth
## 18079                                            worth
## 18080                                            worth
## 18081                                            worth
## 18082                                            worth
## 18083                                           worthy
## 18084                                          wouldnt
## 18085                                          wouldnt
## 18086                                          wouldnt
## 18087                                          wouldnt
## 18088                                          wouldnt
## 18089                                          wouldnt
## 18090                                          wouldve
## 18091                                          wouldve
## 18092                                          wouldve
## 18093                                              wow
## 18094                                              wow
## 18095                                              wow
## 18096                                              wow
## 18097                                              wow
## 18098                                             wrap
## 18099                                            wrong
## 18100                                            wrong
## 18101                                            wrong
## 18102                                            wrong
## 18103                                            wrong
## 18104                                            wrong
## 18105                                            wrong
## 18106                                            wrong
## 18107                                            wrong
## 18108                                            wrong
## 18109                                            wrong
## 18110                                                x
## 18111                                                x
## 18112                                       xenophobic
## 18113                                       xenophobic
## 18114                                       xenophobic
## 18115                                                y
## 18116                                             year
## 18117                                             year
## 18118                                             year
## 18119                                             year
## 18120                                             year
## 18121                                             year
## 18122                                             year
## 18123                                             year
## 18124                                             year
## 18125                                             year
## 18126                                             year
## 18127                                             yell
## 18128                                             yell
## 18129                                             yell
## 18130                                             yelp
## 18131                                             yelp
## 18132                                             yelp
## 18133                                             yelp
## 18134                                             yelp
## 18135                                             yelp
## 18136                                           yelper
## 18137                                              yep
## 18138                                              yes
## 18139                                              yes
## 18140                                              yes
## 18141                                              yes
## 18142                                              yes
## 18143                                              yes
## 18144                                              yes
## 18145                                              yes
## 18146                                              yes
## 18147                                              yes
## 18148                                              yes
## 18149                                              yes
## 18150                                              yes
## 18151                                              yes
## 18152                                              yes
## 18153                                              yet
## 18154                                              yet
## 18155                                              yet
## 18156                                              yet
## 18157                                             york
## 18158                                             york
## 18159                                             york
## 18160                                             york
## 18161                                              you
## 18162                                              you
## 18163                                            youll
## 18164                                            youll
## 18165                                            youll
## 18166                                            youll
## 18167                                            youll
## 18168                                            youll
## 18169                                            youll
## 18170                                            youll
## 18171                                            young
## 18172                                            youre
## 18173                                            youre
## 18174                                            youre
## 18175                                            youre
## 18176                                            youre
## 18177                                            youre
## 18178                                            youre
## 18179                                            youre
## 18180                                            youre
## 18181                                            youre
## 18182                                            youre
## 18183                                            youre
## 18184                                            youre
## 18185                                            youre
## 18186                                            youre
## 18187                                            youre
## 18188                                          youtube
## 18189                                            youve
## 18190                                            youve
## 18191                                            youve
## 18192                                            youve
## 18193                                               yr
## 18194                                             yuck
## 18195                                            yummy
## 18196                                            yummy
## 18197                                            yummy
## 18198                                            yummy
## 18199                                                2
## 18200                                                2
## 18201                                                2
## 18202                                                2
## 18203                                                2
## 18204                                                2
## 18205                                                2
## 18206                                                2
## 18207                                                2
## 18208                                                2
## 18209                                                2
## 18210                                                2
## 18211                                                2
## 18212                                                2
## 18213                                                2
## 18214                                                2
## 18215                                                2
## 18216                                                2
## 18217                                                2
## 18218                                                2
## 18219                                                2
## 18220                                                2
## 18221                                                2
## 18222                                                2
## 18223                                                2
## 18224                                                2
## 18225                                                2
## 18226                                                2
## 18227                                                2
## 18228                                                2
## 18229                                                2
## 18230                                                2
## 18231                                                2
## 18232                                                2
## 18233                                                2
## 18234                                                2
## 18235                                                2
## 18236                                                2
## 18237                                                2
## 18238                                                2
## 18239                                                2
## 18240                                                2
## 18241                                                3
## 18242                                                3
## 18243                                                3
## 18244                                                3
## 18245                                                3
## 18246                                                3
## 18247                                                3
## 18248                                                3
## 18249                                                3
## 18250                                                3
## 18251                                                3
## 18252                                                3
## 18253                                                3
## 18254                                                3
## 18255                                                4
## 18256                                                4
## 18257                                                4
## 18258                                                4
## 18259                                                4
## 18260                                                4
## 18261                                                4
## 18262                                                8
## 18263                                          abandon
## 18264                                          abdomen
## 18265                                        abdominal
## 18266                                            abdul
## 18267                                              abe
## 18268                                          ability
## 18269                                             able
## 18270                                             able
## 18271                                             able
## 18272                                             able
## 18273                                             able
## 18274                                             able
## 18275                                             able
## 18276                                             able
## 18277                                             able
## 18278                                             able
## 18279                                             able
## 18280                                             able
## 18281                                             able
## 18282                                             able
## 18283                                             able
## 18284                                             able
## 18285                                             able
## 18286                                             able
## 18287                                             able
## 18288                                             able
## 18289                                             able
## 18290                                             able
## 18291                                             able
## 18292                                             able
## 18293                                      abomination
## 18294                                      abomination
## 18295                                      abomination
## 18296                                             abou
## 18297                                           abound
## 18298                                         abrasive
## 18299                                           abroad
## 18300                                           abrupt
## 18301                                           abrupt
## 18302                                           abrupt
## 18303                                           absent
## 18304                                   absentmindedly
## 18305                                         absolute
## 18306                                         absolute
## 18307                                         absolute
## 18308                                         absolute
## 18309                                         absolute
## 18310                                         absolute
## 18311                                         absolute
## 18312                                         absolute
## 18313                                         absolute
## 18314                                         absolute
## 18315                                         absolute
## 18316                                         absolute
## 18317                                       absolutely
## 18318                                       absolutely
## 18319                                       absolutely
## 18320                                       absolutely
## 18321                                       absolutely
## 18322                                       absolutely
## 18323                                       absolutely
## 18324                                       absolutely
## 18325                                       absolutely
## 18326                                       absolutely
## 18327                                       absolutely
## 18328                                       absolutely
## 18329                                       absolutely
## 18330                                       absolutely
## 18331                                       absolutely
## 18332                                       absolutely
## 18333                                       absolutely
## 18334                                       absolutely
## 18335                                       absolutely
## 18336                                       absolutely
## 18337                                       absolutely
## 18338                                       absolutely
## 18339                                       absolutely
## 18340                                       absolutely
## 18341                                       absolutely
## 18342                                       absolutely
## 18343                                       absolutely
## 18344                                       absolutely
## 18345                                       absolutely
## 18346                                       absolutely
## 18347                                       absolutely
## 18348                                       absolutely
## 18349                                       absolutely
## 18350                                       absolutely
## 18351                                       absolutely
## 18352                                       absolutely
## 18353                                       absolutely
## 18354                                       absolutely
## 18355                                           absorb
## 18356                                           absorb
## 18357                                           absorb
## 18358                                           absorb
## 18359                                           absorb
## 18360                                           absorb
## 18361                                           absurd
## 18362                                           absurd
## 18363                                         absurdly
## 18364                                              abu
## 18365                                         abujamal
## 18366                                         abujamal
## 18367                                         abujamal
## 18368                                         abujamal
## 18369                                         abujamal
## 18370                                         abujamal
## 18371                                             abul
## 18372                                        abundance
## 18373                                        abundance
## 18374                                         abundant
## 18375                                            abuse
## 18376                                            abuse
## 18377                                            abuse
## 18378                                            abuse
## 18379                                          abysmal
## 18380                                        abysmally
## 18381                                               ac
## 18382                                               ac
## 18383                                           accent
## 18384                                           accent
## 18385                                           accent
## 18386                                           accent
## 18387                                           accent
## 18388                                           accent
## 18389                                           accent
## 18390                                           accent
## 18391                                           accent
## 18392                                           accent
## 18393                                           accent
## 18394                                        accentand
## 18395                                       accentuate
## 18396                                       accentuate
## 18397                                       accentuate
## 18398                                           accept
## 18399                                           accept
## 18400                                           accept
## 18401                                           accept
## 18402                                           accept
## 18403                                           accept
## 18404                                           accept
## 18405                                           accept
## 18406                                           accept
## 18407                                           accept
## 18408                                           accept
## 18409                                           accept
## 18410                                       acceptable
## 18411                                       acceptable
## 18412                                       acceptable
## 18413                                       acceptable
## 18414                                       acceptable
## 18415                                       acceptable
## 18416                                       acceptable
## 18417                                       acceptable
## 18418                                       acceptable
## 18419                                           access
## 18420                                           access
## 18421                                           access
## 18422                                       accessible
## 18423                                        accessory
## 18424                                         accident
## 18425                                         accident
## 18426                                    accomdoations
## 18427                                      accommodate
## 18428                                      accommodate
## 18429                                        accompany
## 18430                                        accompany
## 18431                                        accompany
## 18432                                        accompany
## 18433                                   accomplishment
## 18434                                           accord
## 18435                                           accord
## 18436                                           accord
## 18437                                           accord
## 18438                                           accord
## 18439                                           accord
## 18440                                           accord
## 18441                                           accord
## 18442                                           accord
## 18443                                           accord
## 18444                                      accordingly
## 18445                                      accordingly
## 18446                                          account
## 18447                                          account
## 18448                                          account
## 18449                                          account
## 18450                                      accountable
## 18451                                         accurate
## 18452                                         accurate
## 18453                                       accusation
## 18454                                       accusation
## 18455                                       accusation
## 18456                                       accusation
## 18457                                       accusatory
## 18458                                           accuse
## 18459                                         accustom
## 18460                                              ace
## 18461                                          aceptar
## 18462                                             ache
## 18463                                             ache
## 18464                                             ache
## 18465                                             ache
## 18466                                          achieve
## 18467                                          achieve
## 18468                                          acidity
## 18469                                      acknowledge
## 18470                                      acknowledge
## 18471                                      acknowledge
## 18472                                             acme
## 18473                                             acme
## 18474                                         acphilly
## 18475                                         acquaint
## 18476                                     acquaintance
## 18477                                          acquire
## 18478                                           across
## 18479                                           across
## 18480                                           across
## 18481                                           across
## 18482                                           across
## 18483                                           across
## 18484                                           across
## 18485                                           across
## 18486                                           across
## 18487                                           across
## 18488                                           across
## 18489                                           across
## 18490                                           across
## 18491                                           across
## 18492                                           across
## 18493                                           across
## 18494                                           across
## 18495                                           across
## 18496                                           across
## 18497                                           across
## 18498                                           across
## 18499                                           across
## 18500                                           across
## 18501                                           across
## 18502                                           across
## 18503                                           across
## 18504                                           across
## 18505                                           across
## 18506                                           across
## 18507                                           across
## 18508                                           across
## 18509                                           across
## 18510                                           across
## 18511                                           across
## 18512                                           across
## 18513                                           across
## 18514                                           across
## 18515                                              act
## 18516                                              act
## 18517                                              act
## 18518                                              act
## 18519                                              act
## 18520                                              act
## 18521                                              act
## 18522                                              act
## 18523                                              act
## 18524                                              act
## 18525                                           action
## 18526                                           action
## 18527                                           action
## 18528                                           action
## 18529                                           action
## 18530                                           action
## 18531                                           action
## 18532                                           active
## 18533                                           active
## 18534                                           active
## 18535                                         actively
## 18536                                         activity
## 18537                                         activity
## 18538                                           actual
## 18539                                           actual
## 18540                                           actual
## 18541                                           actual
## 18542                                           actual
## 18543                                           actual
## 18544                                           actual
## 18545                                           actual
## 18546                                           actual
## 18547                                           actual
## 18548                                           actual
## 18549                                           actual
## 18550                                           actual
## 18551                                           actual
## 18552                                           actual
## 18553                                           actual
## 18554                                           actual
## 18555                                           actual
## 18556                                        actuality
## 18557                                         actually
## 18558                                         actually
## 18559                                         actually
## 18560                                         actually
## 18561                                         actually
## 18562                                         actually
## 18563                                         actually
## 18564                                         actually
## 18565                                         actually
## 18566                                         actually
## 18567                                         actually
## 18568                                         actually
## 18569                                         actually
## 18570                                         actually
## 18571                                         actually
## 18572                                         actually
## 18573                                         actually
## 18574                                         actually
## 18575                                         actually
## 18576                                         actually
## 18577                                         actually
## 18578                                         actually
## 18579                                         actually
## 18580                                         actually
## 18581                                         actually
## 18582                                         actually
## 18583                                         actually
## 18584                                         actually
## 18585                                         actually
## 18586                                         actually
## 18587                                         actually
## 18588                                         actually
## 18589                                         actually
## 18590                                         actually
## 18591                                         actually
## 18592                                         actually
## 18593                                         actually
## 18594                                         actually
## 18595                                         actually
## 18596                                         actually
## 18597                                         actually
## 18598                                         actually
## 18599                                         actually
## 18600                                         actually
## 18601                                         actually
## 18602                                         actually
## 18603                                         actually
## 18604                                         actually
## 18605                                         actually
## 18606                                         actually
## 18607                                         actually
## 18608                                         actually
## 18609                                         actually
## 18610                                         actually
## 18611                                         actually
## 18612                                         actually
## 18613                                         actually
## 18614                                         actually
## 18615                                         actually
## 18616                                         actually
## 18617                                         actually
## 18618                                         actually
## 18619                                         actually
## 18620                                         actually
## 18621                                         actually
## 18622                                         actually
## 18623                                         actually
## 18624                                         actually
## 18625                                         actually
## 18626                                         actually
## 18627                                         actually
## 18628                                         actually
## 18629                                         actually
## 18630                                         actually
## 18631                                         actually
## 18632                                         actually
## 18633                                         actually
## 18634                                         actually
## 18635                                         actually
## 18636                                         actually
## 18637                                         actually
## 18638                                         actually
## 18639                                         actually
## 18640                                         actually
## 18641                                         actually
## 18642                                         actually
## 18643                                         actually
## 18644                                         actually
## 18645                                         actually
## 18646                                         actually
## 18647                                         actually
## 18648                                         actually
## 18649                                         actually
## 18650                                         actually
## 18651                                         actually
## 18652                                         actually
## 18653                                         actually
## 18654                                               ad
## 18655                                               ad
## 18656                                              ada
## 18657                                             adam
## 18658                                             adam
## 18659                                          adamant
## 18660                                          adamant
## 18661                                              add
## 18662                                              add
## 18663                                              add
## 18664                                              add
## 18665                                              add
## 18666                                              add
## 18667                                              add
## 18668                                              add
## 18669                                              add
## 18670                                              add
## 18671                                              add
## 18672                                              add
## 18673                                              add
## 18674                                              add
## 18675                                              add
## 18676                                              add
## 18677                                              add
## 18678                                              add
## 18679                                              add
## 18680                                              add
## 18681                                              add
## 18682                                              add
## 18683                                              add
## 18684                                              add
## 18685                                              add
## 18686                                              add
## 18687                                              add
## 18688                                              add
## 18689                                              add
## 18690                                              add
## 18691                                              add
## 18692                                              add
## 18693                                              add
## 18694                                              add
## 18695                                              add
## 18696                                              add
## 18697                                              add
## 18698                                              add
## 18699                                              add
## 18700                                              add
## 18701                                              add
## 18702                                              add
## 18703                                              add
## 18704                                              add
## 18705                                              add
## 18706                                              add
## 18707                                              add
## 18708                                              add
## 18709                                              add
## 18710                                              add
## 18711                                              add
## 18712                                              add
## 18713                                              add
## 18714                                              add
## 18715                                              add
## 18716                                              add
## 18717                                              add
## 18718                                              add
## 18719                                              add
## 18720                                              add
## 18721                                              add
## 18722                                              add
## 18723                                              add
## 18724                                              add
## 18725                                              add
## 18726                                              add
## 18727                                              add
## 18728                                              add
## 18729                                              add
## 18730                                              add
## 18731                                              add
## 18732                                              add
## 18733                                              add
## 18734                                              add
## 18735                                              add
## 18736                                           addict
## 18737                                           addict
## 18738                                           addict
## 18739                                        addictive
## 18740                                         addition
## 18741                                         addition
## 18742                                         addition
## 18743                                         addition
## 18744                                         addition
## 18745                                         addition
## 18746                                         addition
## 18747                                         addition
## 18748                                         addition
## 18749                                         addition
## 18750                                         addition
## 18751                                         addition
## 18752                                         addition
## 18753                                       additional
## 18754                                       additional
## 18755                                       additional
## 18756                                       additional
## 18757                                       additional
## 18758                                     additionally
## 18759                                     additionally
## 18760                                     additionally
## 18761                                     additionally
## 18762                                     additionally
## 18763                                         additive
## 18764                                            addon
## 18765                                           addons
## 18766                                           addons
## 18767                                          address
## 18768                                          address
## 18769                                          address
## 18770                                          address
## 18771                                         adequate
## 18772                                        adicional
## 18773                                         adjacent
## 18774                                         adjacent
## 18775                                         adjacent
## 18776                                         adjacent
## 18777                                         adjacent
## 18778                                        adjective
## 18779                                       adjustment
## 18780                                           admire
## 18781                                           admire
## 18782                                           admire
## 18783                                            admit
## 18784                                            admit
## 18785                                            admit
## 18786                                            admit
## 18787                                            admit
## 18788                                            admit
## 18789                                            admit
## 18790                                            admit
## 18791                                            admit
## 18792                                            admit
## 18793                                            admit
## 18794                                            admit
## 18795                                            admit
## 18796                                            admit
## 18797                                            admit
## 18798                                            admit
## 18799                                            admit
## 18800                                            admit
## 18801                                            admit
## 18802                                            admit
## 18803                                            admit
## 18804                                            admit
## 18805                                            admit
## 18806                                            admit
## 18807                                            admit
## 18808                                            admit
## 18809                                            admit
## 18810                                            admit
## 18811                                            admit
## 18812                                            admit
## 18813                                            admit
## 18814                                            admit
## 18815                                            admit
## 18816                                            admit
## 18817                                           admito
## 18818                                       admittedly
## 18819                                       admittedly
## 18820                                       admittedly
## 18821                                       admittedly
## 18822                                         adorable
## 18823                                            adorn
## 18824                                            adorn
## 18825                                            adorn
## 18826                                            adult
## 18827                                            adult
## 18828                                            adult
## 18829                                            adult
## 18830                                            adult
## 18831                                          advance
## 18832                                          advance
## 18833                                        advantage
## 18834                                        advantage
## 18835                                        advantage
## 18836                                        advantage
## 18837                                        advantage
## 18838                                        advantage
## 18839                                        advantage
## 18840                                        adventure
## 18841                                        adventure
## 18842                                        adventure
## 18843                                        adventure
## 18844                                        adventure
## 18845                                        adventure
## 18846                                        advertise
## 18847                                        advertise
## 18848                                        advertise
## 18849                                        advertise
## 18850                                        advertise
## 18851                                        advertise
## 18852                                        advertise
## 18853                                        advertise
## 18854                                        advertise
## 18855                                        advertise
## 18856                                        advertise
## 18857                                        advertise
## 18858                                        advertise
## 18859                                        advertise
## 18860                                        advertise
## 18861                                        advertise
## 18862                                        advertise
## 18863                                        advertise
## 18864                                        advertise
## 18865                                     advertiseing
## 18866                                    advertisement
## 18867                                    advertisement
## 18868                                    advertisement
## 18869                                           advice
## 18870                                           advice
## 18871                                           advice
## 18872                                           advice
## 18873                                           advice
## 18874                                           advice
## 18875                                           advice
## 18876                                           advice
## 18877                                           advice
## 18878                                           advice
## 18879                                           advice
## 18880                                           advice
## 18881                                           advice
## 18882                                           advice
## 18883                                           advice
## 18884                                           advice
## 18885                                           advice
## 18886                                        advisably
## 18887                                           advise
## 18888                                           advise
## 18889                                           advise
## 18890                                           advise
## 18891                                           advise
## 18892                                           advise
## 18893                                           advise
## 18894                                           advise
## 18895                                           advise
## 18896                                      aesthestics
## 18897                                        aesthetic
## 18898                                        aesthetic
## 18899                                        aesthetic
## 18900                                    aesthetically
## 18901                                    aesthetically
## 18902                                    aesthetically
## 18903                                               af
## 18904                                               af
## 18905                                               af
## 18906                                             afar
## 18907                                           affect
## 18908                                           affect
## 18909                                           affect
## 18910                                           affect
## 18911                                        affection
## 18912                                           afford
## 18913                                           afford
## 18914                                       affordable
## 18915                                      afghanistan
## 18916                                      afghanistan
## 18917                                       aficionado
## 18918                                       aficionado
## 18919                                      aficionados
## 18920                                           afloat
## 18921                                   aforementioned
## 18922                                   aforementioned
## 18923                                           afraid
## 18924                                           afraid
## 18925                                           afraid
## 18926                                           afraid
## 18927                                           afraid
## 18928                                           afraid
## 18929                                     afroamerican
## 18930                                     afterallthat
## 18931                                        aftermath
## 18932                                        afternoon
## 18933                                        afternoon
## 18934                                        afternoon
## 18935                                        afternoon
## 18936                                        afternoon
## 18937                                        afternoon
## 18938                                        afternoon
## 18939                                        afternoon
## 18940                                        afternoon
## 18941                                        afternoon
## 18942                                        afternoon
## 18943                                        afternoon
## 18944                                        afternoon
## 18945                                        afternoon
## 18946                                        afternoon
## 18947                                        afternoon
## 18948                                        afternoon
## 18949                                        afternoon
## 18950                                        afternoon
## 18951                                        afternoon
## 18952                                        afternoon
## 18953                                        afternoon
## 18954                                        afternoon
## 18955                                        afternoon
## 18956                                        afternoon
## 18957                                    afterpartiers
## 18958                                       aftertaste
## 18959                                        afterward
## 18960                                       afterwards
## 18961                                       afterwards
## 18962                                       afterwards
## 18963                                       afterwards
## 18964                                       afterwards
## 18965                                       afterwards
## 18966                                       afterwards
## 18967                                       afterwards
## 18968                                       afterwards
## 18969                                       afterwards
## 18970                                       afterwards
## 18971                                       afterwards
## 18972                                         againbut
## 18973                                       againclose
## 18974                                     againinstead
## 18975                                   againrecommend
## 18976                                              age
## 18977                                              age
## 18978                                              age
## 18979                                              age
## 18980                                              age
## 18981                                              age
## 18982                                          ageless
## 18983                                           agency
## 18984                                          agendum
## 18985                                          agendum
## 18986                                          agendum
## 18987                                          agesold
## 18988                                      aggravation
## 18989                                       aggressive
## 18990                                       aggressive
## 18991                                       aggressive
## 18992                                       aggressive
## 18993                                       aggressive
## 18994                                            aglow
## 18995                                              ago
## 18996                                              ago
## 18997                                              ago
## 18998                                              ago
## 18999                                              ago
## 19000                                              ago
## 19001                                              ago
## 19002                                              ago
## 19003                                              ago
## 19004                                              ago
## 19005                                              ago
## 19006                                              ago
## 19007                                              ago
## 19008                                              ago
## 19009                                              ago
## 19010                                              ago
## 19011                                              ago
## 19012                                              ago
## 19013                                              ago
## 19014                                              ago
## 19015                                              ago
## 19016                                              ago
## 19017                                              ago
## 19018                                              ago
## 19019                                              ago
## 19020                                              ago
## 19021                                              ago
## 19022                                              ago
## 19023                                              ago
## 19024                                              ago
## 19025                                              ago
## 19026                                              ago
## 19027                                              ago
## 19028                                              ago
## 19029                                              ago
## 19030                                              ago
## 19031                                              ago
## 19032                                              ago
## 19033                                              ago
## 19034                                              ago
## 19035                                              ago
## 19036                                              ago
## 19037                                              ago
## 19038                                              ago
## 19039                                              ago
## 19040                                              ago
## 19041                                              ago
## 19042                                              ago
## 19043                                              ago
## 19044                                              ago
## 19045                                              ago
## 19046                                            agree
## 19047                                            agree
## 19048                                            agree
## 19049                                            agree
## 19050                                            agree
## 19051                                            agree
## 19052                                            agree
## 19053                                            agree
## 19054                                            agree
## 19055                                            agree
## 19056                                            agree
## 19057                                            agree
## 19058                                            agree
## 19059                                            agree
## 19060                                            agree
## 19061                                            agree
## 19062                                            agree
## 19063                                            agree
## 19064                                            agree
## 19065                                            agree
## 19066                                            agree
## 19067                                            agree
## 19068                                            agree
## 19069                                            agree
## 19070                                            agree
## 19071                                            agree
## 19072                                            agree
## 19073                                            agree
## 19074                                            agree
## 19075                                            agree
## 19076                                            agree
## 19077                                            agree
## 19078                                            agree
## 19079                                            agree
## 19080                                            agree
## 19081                                            agree
## 19082                                            agree
## 19083                                            agree
## 19084                                            agree
## 19085                                            agree
## 19086                                            agree
## 19087                                            agree
## 19088                                               ah
## 19089                                               ah
## 19090                                               ah
## 19091                                               ah
## 19092                                               ah
## 19093                                               ah
## 19094                                            ahead
## 19095                                            ahead
## 19096                                            ahead
## 19097                                            ahead
## 19098                                            ahead
## 19099                                            ahead
## 19100                                            ahead
## 19101                                            ahead
## 19102                                            ahead
## 19103                                            ahead
## 19104                                            ahead
## 19105                                            ahead
## 19106                                            ahead
## 19107                                            ahead
## 19108                                            ahead
## 19109                                            ahead
## 19110                                             ahem
## 19111                                             ahem
## 19112                                             ahhh
## 19113                                             ahhs
## 19114                                            ahoie
## 19115                                            ahole
## 19116                                            ahole
## 19117                                            ahole
## 19118                                            ahole
## 19119                                         aholeish
## 19120                                           aholes
## 19121                                           aholes
## 19122                                              aid
## 19123                                            aight
## 19124                                            aight
## 19125                                            aight
## 19126                                            aight
## 19127                                         aiiiight
## 19128                                              aim
## 19129                                             aint
## 19130                                             aint
## 19131                                             aint
## 19132                                             aint
## 19133                                             aint
## 19134                                             aint
## 19135                                             aint
## 19136                                             aint
## 19137                                             aint
## 19138                                             aint
## 19139                                             aint
## 19140                                             aint
## 19141                                             aint
## 19142                                              air
## 19143                                              air
## 19144                                              air
## 19145                                              air
## 19146                                              air
## 19147                                              air
## 19148                                              air
## 19149                                              air
## 19150                                              air
## 19151                                              air
## 19152                                          airfare
## 19153                                        airheaded
## 19154                                      airheadedly
## 19155                                          airport
## 19156                                          airport
## 19157                                          airport
## 19158                                          airport
## 19159                                          airport
## 19160                                          airport
## 19161                                          airport
## 19162                                          airport
## 19163                                          airport
## 19164                                          airport
## 19165                                          airport
## 19166                                          airport
## 19167                                          airport
## 19168                                          airport
## 19169                                          airport
## 19170                                          airport
## 19171                                          airport
## 19172                                          airport
## 19173                                          airport
## 19174                                          airport
## 19175                                          airport
## 19176                                          airport
## 19177                                          airport
## 19178                                          airport
## 19179                                          airport
## 19180                                          airport
## 19181                                          airport
## 19182                                            aisle
## 19183                                              aka
## 19184                                              aka
## 19185                                              aka
## 19186                                              aka
## 19187                                              aka
## 19188                                              aka
## 19189                                              aka
## 19190                                              aka
## 19191                                              aka
## 19192                                              aka
## 19193                                              aka
## 19194                                              aka
## 19195                                              aka
## 19196                                               al
## 19197                                              ala
## 19198                                             alan
## 19199                                             alas
## 19200                                             alas
## 19201                                             alas
## 19202                                             alas
## 19203                                             alas
## 19204                                             alas
## 19205                                          alaskan
## 19206                                           albeit
## 19207                                           albeit
## 19208                                           albeit
## 19209                                           albeit
## 19210                                           albeit
## 19211                                           albeit
## 19212                                           albeit
## 19213                                           albeit
## 19214                                           albeit
## 19215                                           albiet
## 19216                                      albuquerque
## 19217                                          alcohol
## 19218                                          alcohol
## 19219                                          alcohol
## 19220                                          alcohol
## 19221                                    alcoholfilled
## 19222                                              ale
## 19223                                              ale
## 19224                                            alert
## 19225                                      alessandros
## 19226                                            alien
## 19227                                            alien
## 19228                                            alien
## 19229                                            alien
## 19230                                         alienate
## 19231                                            alike
## 19232                                            alike
## 19233                                            alike
## 19234                                            alike
## 19235                                          alittle
## 19236                                          alittle
## 19237                                          alittle
## 19238                                          alittle
## 19239                                            alive
## 19240                                            alive
## 19241                                            alive
## 19242                                      allamerican
## 19243                                           allbut
## 19244                                        allegedly
## 19245                                        allegedly
## 19246                                       allegiance
## 19247                                            allen
## 19248                                        allentown
## 19249                                        allentown
## 19250                                         allergic
## 19251                                         allergic
## 19252                                          allergy
## 19253                                          allergy
## 19254                                          allergy
## 19255                                          allergy
## 19256                                            alley
## 19257                                         alleyway
## 19258                                         allgenos
## 19259                                         alliance
## 19260                                         allinall
## 19261                                         allnight
## 19262                                            allot
## 19263                                        allotment
## 19264                                           allout
## 19265                                            allow
## 19266                                            allow
## 19267                                            allow
## 19268                                            allow
## 19269                                            allow
## 19270                                            allow
## 19271                                            allow
## 19272                                            allow
## 19273                                            allow
## 19274                                            allow
## 19275                                            allow
## 19276                                            allow
## 19277                                            allow
## 19278                                            allow
## 19279                                            allow
## 19280                                            allow
## 19281                                            allow
## 19282                                            allow
## 19283                                            allow
## 19284                                        allthough
## 19285                                           allure
## 19286                                     allyoucaneat
## 19287                                             alma
## 19288                                         almighty
## 19289                                           almost
## 19290                                           almost
## 19291                                           almost
## 19292                                           almost
## 19293                                           almost
## 19294                                           almost
## 19295                                           almost
## 19296                                           almost
## 19297                                           almost
## 19298                                           almost
## 19299                                           almost
## 19300                                           almost
## 19301                                           almost
## 19302                                           almost
## 19303                                           almost
## 19304                                           almost
## 19305                                           almost
## 19306                                           almost
## 19307                                           almost
## 19308                                           almost
## 19309                                           almost
## 19310                                           almost
## 19311                                           almost
## 19312                                           almost
## 19313                                           almost
## 19314                                           almost
## 19315                                           almost
## 19316                                           almost
## 19317                                           almost
## 19318                                           almost
## 19319                                           almost
## 19320                                           almost
## 19321                                           almost
## 19322                                           almost
## 19323                                           almost
## 19324                                           almost
## 19325                                           almost
## 19326                                           almost
## 19327                                           almost
## 19328                                           almost
## 19329                                           almost
## 19330                                           almost
## 19331                                           almost
## 19332                                           almost
## 19333                                           almost
## 19334                                           almost
## 19335                                           almost
## 19336                                           almost
## 19337                                           almost
## 19338                                           almost
## 19339                                           almost
## 19340                                           almost
## 19341                                           almost
## 19342                                           almost
## 19343                                           almost
## 19344                                           almost
## 19345                                           almost
## 19346                                           almost
## 19347                                           almost
## 19348                                           almost
## 19349                                           almost
## 19350                                           almost
## 19351                                           almost
## 19352                                           almost
## 19353                                           almost
## 19354                                           almost
## 19355                                           almost
## 19356                                           almost
## 19357                                           almost
## 19358                                           almost
## 19359                                           almost
## 19360                                           almost
## 19361                                      almostdairy
## 19362                                            alone
## 19363                                            alone
## 19364                                            alone
## 19365                                            alone
## 19366                                            alone
## 19367                                            alone
## 19368                                            alone
## 19369                                            alone
## 19370                                            alone
## 19371                                            alone
## 19372                                            alone
## 19373                                            alone
## 19374                                            alone
## 19375                                            alone
## 19376                                            alone
## 19377                                            alone
## 19378                                            alone
## 19379                                            alone
## 19380                                            alone
## 19381                                            alone
## 19382                                            alone
## 19383                                            alone
## 19384                                            along
## 19385                                            along
## 19386                                            along
## 19387                                            along
## 19388                                            along
## 19389                                            along
## 19390                                            along
## 19391                                            along
## 19392                                            along
## 19393                                            along
## 19394                                            along
## 19395                                            along
## 19396                                            along
## 19397                                            along
## 19398                                            along
## 19399                                            along
## 19400                                            along
## 19401                                            along
## 19402                                            along
## 19403                                            along
## 19404                                            along
## 19405                                            along
## 19406                                            along
## 19407                                            along
## 19408                                            along
## 19409                                            along
## 19410                                            along
## 19411                                            along
## 19412                                            along
## 19413                                            along
## 19414                                            along
## 19415                                            along
## 19416                                            along
## 19417                                            along
## 19418                                            along
## 19419                                            along
## 19420                                            along
## 19421                                            along
## 19422                                            along
## 19423                                            along
## 19424                                            along
## 19425                                        alongside
## 19426                                        alongside
## 19427                                             alot
## 19428                                             alot
## 19429                                             alot
## 19430                                             alot
## 19431                                             alot
## 19432                                             alot
## 19433                                             alot
## 19434                                             alot
## 19435                                             alot
## 19436                                             alpo
## 19437                                          already
## 19438                                          already
## 19439                                          already
## 19440                                          already
## 19441                                          already
## 19442                                          already
## 19443                                          already
## 19444                                          already
## 19445                                          already
## 19446                                          already
## 19447                                          already
## 19448                                          already
## 19449                                          already
## 19450                                          already
## 19451                                          already
## 19452                                          already
## 19453                                          already
## 19454                                          already
## 19455                                          already
## 19456                                          already
## 19457                                          already
## 19458                                          already
## 19459                                          already
## 19460                                          already
## 19461                                          already
## 19462                                          already
## 19463                                          already
## 19464                                          already
## 19465                                          already
## 19466                                          already
## 19467                                          already
## 19468                                          already
## 19469                                          already
## 19470                                          already
## 19471                                          already
## 19472                                          already
## 19473                                          already
## 19474                                          already
## 19475                                          already
## 19476                                          already
## 19477                                          already
## 19478                                          already
## 19479                                          already
## 19480                                          already
## 19481                                          already
## 19482                                          already
## 19483                                          already
## 19484                                          already
## 19485                                          already
## 19486                                          already
## 19487                                          already
## 19488                                          already
## 19489                                          already
## 19490                                           alreay
## 19491                                          alright
## 19492                                          alright
## 19493                                          alright
## 19494                                          alright
## 19495                                          alright
## 19496                                          alright
## 19497                                          alright
## 19498                                          alright
## 19499                                          alright
## 19500                                          alright
## 19501                                          alright
## 19502                                          alright
## 19503                                          alright
## 19504                                          alright
## 19505                                          alright
## 19506                                          alright
## 19507                                          alright
## 19508                                          alright
## 19509                                          alright
## 19510                                          alright
## 19511                                          alright
## 19512                                          alright
## 19513                                          alright
## 19514                                          alright
## 19515                                          alright
## 19516                                          alright
## 19517                                     alrightworse
## 19518                                              als
## 19519                                             also
## 19520                                             also
## 19521                                             also
## 19522                                             also
## 19523                                             also
## 19524                                             also
## 19525                                             also
## 19526                                             also
## 19527                                             also
## 19528                                             also
## 19529                                             also
## 19530                                             also
## 19531                                             also
## 19532                                             also
## 19533                                             also
## 19534                                             also
## 19535                                             also
## 19536                                             also
## 19537                                             also
## 19538                                             also
## 19539                                             also
## 19540                                             also
## 19541                                             also
## 19542                                             also
## 19543                                             also
## 19544                                             also
## 19545                                             also
## 19546                                             also
## 19547                                             also
## 19548                                             also
## 19549                                             also
## 19550                                             also
## 19551                                             also
## 19552                                             also
## 19553                                             also
## 19554                                             also
## 19555                                             also
## 19556                                             also
## 19557                                             also
## 19558                                             also
## 19559                                             also
## 19560                                             also
## 19561                                             also
## 19562                                             also
## 19563                                             also
## 19564                                             also
## 19565                                             also
## 19566                                             also
## 19567                                             also
## 19568                                             also
## 19569                                             also
## 19570                                             also
## 19571                                             also
## 19572                                             also
## 19573                                             also
## 19574                                             also
## 19575                                             also
## 19576                                             also
## 19577                                             also
## 19578                                             also
## 19579                                             also
## 19580                                             also
## 19581                                             also
## 19582                                             also
## 19583                                             also
## 19584                                             also
## 19585                                             also
## 19586                                             also
## 19587                                             also
## 19588                                             also
## 19589                                             also
## 19590                                             also
## 19591                                             also
## 19592                                             also
## 19593                                             also
## 19594                                             also
## 19595                                             also
## 19596                                             also
## 19597                                             also
## 19598                                             also
## 19599                                             also
## 19600                                             also
## 19601                                             also
## 19602                                             also
## 19603                                             also
## 19604                                             also
## 19605                                             also
## 19606                                             also
## 19607                                             also
## 19608                                             also
## 19609                                             also
## 19610                                             also
## 19611                                             also
## 19612                                             also
## 19613                                             also
## 19614                                             also
## 19615                                             also
## 19616                                             also
## 19617                                             also
## 19618                                             also
## 19619                                             also
## 19620                                             also
## 19621                                             also
## 19622                                             also
## 19623                                             also
## 19624                                             also
## 19625                                             also
## 19626                                             also
## 19627                                             also
## 19628                                             also
## 19629                                             also
## 19630                                             also
## 19631                                             also
## 19632                                             also
## 19633                                             also
## 19634                                             also
## 19635                                             also
## 19636                                             also
## 19637                                             also
## 19638                                             also
## 19639                                             also
## 19640                                             also
## 19641                                             also
## 19642                                             also
## 19643                                             also
## 19644                                             also
## 19645                                             also
## 19646                                             also
## 19647                                             also
## 19648                                             also
## 19649                                             also
## 19650                                             also
## 19651                                             also
## 19652                                             also
## 19653                                             also
## 19654                                             also
## 19655                                             also
## 19656                                             also
## 19657                                             also
## 19658                                             also
## 19659                                             also
## 19660                                             also
## 19661                                             also
## 19662                                             also
## 19663                                             also
## 19664                                             also
## 19665                                             also
## 19666                                             also
## 19667                                             also
## 19668                                             also
## 19669                                             also
## 19670                                             also
## 19671                                             also
## 19672                                             also
## 19673                                             also
## 19674                                             also
## 19675                                             also
## 19676                                             also
## 19677                                             also
## 19678                                             also
## 19679                                             also
## 19680                                             also
## 19681                                             also
## 19682                                             also
## 19683                                             also
## 19684                                             also
## 19685                                             also
## 19686                                             also
## 19687                                             also
## 19688                                             also
## 19689                                             also
## 19690                                             also
## 19691                                             also
## 19692                                             also
## 19693                                             also
## 19694                                             also
## 19695                                             also
## 19696                                             also
## 19697                                             also
## 19698                                             also
## 19699                                             also
## 19700                                             also
## 19701                                             also
## 19702                                             also
## 19703                                             also
## 19704                                             also
## 19705                                             also
## 19706                                             also
## 19707                                             also
## 19708                                             also
## 19709                                             also
## 19710                                             also
## 19711                                             also
## 19712                                             also
## 19713                                          alsothe
## 19714                                            altar
## 19715                                        alternate
## 19716                                        alternate
## 19717                                        alternate
## 19718                                      alternative
## 19719                                      alternative
## 19720                                      alternative
## 19721                                      alternative
## 19722                                      alternative
## 19723                                      alternative
## 19724                                      alternative
## 19725                                      alternative
## 19726                                      alternative
## 19727                                    alternatively
## 19728                                            altho
## 19729                                         although
## 19730                                         although
## 19731                                         although
## 19732                                         although
## 19733                                         although
## 19734                                         although
## 19735                                         although
## 19736                                         although
## 19737                                         although
## 19738                                         although
## 19739                                         although
## 19740                                         although
## 19741                                         although
## 19742                                         although
## 19743                                         although
## 19744                                         although
## 19745                                         although
## 19746                                         although
## 19747                                         although
## 19748                                         although
## 19749                                         although
## 19750                                         although
## 19751                                         although
## 19752                                         although
## 19753                                         although
## 19754                                         although
## 19755                                         although
## 19756                                         although
## 19757                                         although
## 19758                                         although
## 19759                                         although
## 19760                                         although
## 19761                                         although
## 19762                                         although
## 19763                                         although
## 19764                                         although
## 19765                                         although
## 19766                                         although
## 19767                                         although
## 19768                                         although
## 19769                                         altitude
## 19770                                       altogether
## 19771                                       altogether
## 19772                                       altogether
## 19773                                       altogether
## 19774                                           altura
## 19775                                           always
## 19776                                           always
## 19777                                           always
## 19778                                           always
## 19779                                           always
## 19780                                           always
## 19781                                           always
## 19782                                           always
## 19783                                           always
## 19784                                           always
## 19785                                           always
## 19786                                           always
## 19787                                           always
## 19788                                           always
## 19789                                           always
## 19790                                           always
## 19791                                           always
## 19792                                           always
## 19793                                           always
## 19794                                           always
## 19795                                           always
## 19796                                           always
## 19797                                           always
## 19798                                           always
## 19799                                           always
## 19800                                           always
## 19801                                           always
## 19802                                           always
## 19803                                           always
## 19804                                           always
## 19805                                           always
## 19806                                           always
## 19807                                           always
## 19808                                           always
## 19809                                           always
## 19810                                           always
## 19811                                           always
## 19812                                           always
## 19813                                           always
## 19814                                           always
## 19815                                           always
## 19816                                           always
## 19817                                           always
## 19818                                           always
## 19819                                           always
## 19820                                           always
## 19821                                           always
## 19822                                           always
## 19823                                           always
## 19824                                           always
## 19825                                           always
## 19826                                           always
## 19827                                           always
## 19828                                           always
## 19829                                           always
## 19830                                           always
## 19831                                           always
## 19832                                           always
## 19833                                           always
## 19834                                           always
## 19835                                           always
## 19836                                           always
## 19837                                           always
## 19838                                           always
## 19839                                           always
## 19840                                           always
## 19841                                           always
## 19842                                           always
## 19843                                           always
## 19844                                           always
## 19845                                           always
## 19846                                           always
## 19847                                           always
## 19848                                           always
## 19849                                           always
## 19850                                           always
## 19851                                           always
## 19852                                           always
## 19853                                           always
## 19854                                           always
## 19855                                           always
## 19856                                           always
## 19857                                           always
## 19858                                           always
## 19859                                           always
## 19860                                           always
## 19861                                           always
## 19862                                           always
## 19863                             alwaystunedtothefood
## 19864                                            amaan
## 19865                                          amateur
## 19866                                            amaze
## 19867                                            amaze
## 19868                                            amaze
## 19869                                            amaze
## 19870                                            amaze
## 19871                                            amaze
## 19872                                            amaze
## 19873                                            amaze
## 19874                                            amaze
## 19875                                            amaze
## 19876                                            amaze
## 19877                                            amaze
## 19878                                            amaze
## 19879                                            amaze
## 19880                                            amaze
## 19881                                            amaze
## 19882                                            amaze
## 19883                                            amaze
## 19884                                            amaze
## 19885                                            amaze
## 19886                                            amaze
## 19887                                            amaze
## 19888                                            amaze
## 19889                                            amaze
## 19890                                            amaze
## 19891                                            amaze
## 19892                                            amaze
## 19893                                            amaze
## 19894                                            amaze
## 19895                                            amaze
## 19896                                            amaze
## 19897                                            amaze
## 19898                                            amaze
## 19899                                            amaze
## 19900                                            amaze
## 19901                                            amaze
## 19902                                            amaze
## 19903                                            amaze
## 19904                                            amaze
## 19905                                            amaze
## 19906                                            amaze
## 19907                                            amaze
## 19908                                            amaze
## 19909                                            amaze
## 19910                                            amaze
## 19911                                            amaze
## 19912                                            amaze
## 19913                                            amaze
## 19914                                            amaze
## 19915                                        amazingly
## 19916                                        amazingly
## 19917                                        amazingly
## 19918                                        amazingly
## 19919                                       ambassador
## 19920                                         ambiance
## 19921                                         ambiance
## 19922                                         ambiance
## 19923                                         ambiance
## 19924                                         ambiance
## 19925                                         ambiance
## 19926                                         ambiance
## 19927                                         ambiance
## 19928                                         ambiance
## 19929                                         ambiance
## 19930                                         ambiance
## 19931                                         ambiance
## 19932                                         ambiance
## 19933                                         ambiance
## 19934                                         ambiance
## 19935                                         ambiance
## 19936                                         ambiance
## 19937                                         ambiance
## 19938                                         ambiance
## 19939                                         ambiance
## 19940                                         ambiance
## 19941                                         ambiance
## 19942                                         ambiance
## 19943                                         ambiance
## 19944                                         ambiance
## 19945                                         ambiance
## 19946                                         ambiance
## 19947                                         ambience
## 19948                                         ambience
## 19949                                         ambience
## 19950                                            amble
## 19951                                         ambrosia
## 19952                                     amdefinitely
## 19953                                        amendment
## 19954                                          amenity
## 19955                                          america
## 19956                                          america
## 19957                                          america
## 19958                                          america
## 19959                                          america
## 19960                                          america
## 19961                                          america
## 19962                                          america
## 19963                                          america
## 19964                                          america
## 19965                                          america
## 19966                                          america
## 19967                                          america
## 19968                                          america
## 19969                                          america
## 19970                                          america
## 19971                                          america
## 19972                                          america
## 19973                                          america
## 19974                                          america
## 19975                                          america
## 19976                                          america
## 19977                                          america
## 19978                                          america
## 19979                                          america
## 19980                                          america
## 19981                                          america
## 19982                                          america
## 19983                                          america
## 19984                                          america
## 19985                                          america
## 19986                                          america
## 19987                                          america
## 19988                                          america
## 19989                                          america
## 19990                                          america
## 19991                                          america
## 19992                                  americaignorant
## 19993                                         american
## 19994                                         american
## 19995                                         american
## 19996                                         american
## 19997                                         american
## 19998                                         american
## 19999                                         american
## 20000                                         american
## 20001                                         american
## 20002                                         american
## 20003                                         american
## 20004                                         american
## 20005                                         american
## 20006                                         american
## 20007                                         american
## 20008                                         american
## 20009                                         american
## 20010                                         american
## 20011                                         american
## 20012                                         american
## 20013                                         american
## 20014                                         american
## 20015                                         american
## 20016                                         american
## 20017                                         american
## 20018                                         american
## 20019                                         american
## 20020                                         american
## 20021                                         american
## 20022                                         american
## 20023                                         american
## 20024                                         american
## 20025                                         american
## 20026                                         american
## 20027                                         american
## 20028                                         american
## 20029                                         american
## 20030                                         american
## 20031                                         american
## 20032                                         american
## 20033                                         american
## 20034                                         american
## 20035                                         american
## 20036                                         american
## 20037                                         american
## 20038                                         american
## 20039                                         american
## 20040                                         american
## 20041                                         american
## 20042                                         american
## 20043                                         american
## 20044                                         american
## 20045                                         american
## 20046                                         american
## 20047                                         american
## 20048                                         american
## 20049                                         american
## 20050                                         american
## 20051                                         american
## 20052                                         american
## 20053                                         american
## 20054                                         american
## 20055                                         american
## 20056                                         american
## 20057                                         american
## 20058                                         american
## 20059                                         american
## 20060                                         american
## 20061                                         american
## 20062                                         american
## 20063                                         american
## 20064                                         american
## 20065                                         american
## 20066                                         american
## 20067                                         american
## 20068                                         american
## 20069                                         american
## 20070                                         american
## 20071                                         american
## 20072                                         american
## 20073                                         american
## 20074                                         american
## 20075                                         american
## 20076                                         american
## 20077                                         american
## 20078                                        americana
## 20079                                        americana
## 20080                                        americana
## 20081                                americanprovolone
## 20082                                         americas
## 20083                                           amidst
## 20084                                             amin
## 20085                                          ammonia
## 20086                                            among
## 20087                                            among
## 20088                                            among
## 20089                                            among
## 20090                                            among
## 20091                                            among
## 20092                                            among
## 20093                                            among
## 20094                                            among
## 20095                                            among
## 20096                                          amongst
## 20097                                          amongst
## 20098                                          amongst
## 20099                                          amongst
## 20100                                          amongst
## 20101                                          amoroso
## 20102                                          amoroso
## 20103                                          amoroso
## 20104                                         amorosos
## 20105                                         amorosos
## 20106                                         amorosos
## 20107                                           amount
## 20108                                           amount
## 20109                                           amount
## 20110                                           amount
## 20111                                           amount
## 20112                                           amount
## 20113                                           amount
## 20114                                           amount
## 20115                                           amount
## 20116                                           amount
## 20117                                           amount
## 20118                                           amount
## 20119                                           amount
## 20120                                           amount
## 20121                                           amount
## 20122                                           amount
## 20123                                           amount
## 20124                                           amount
## 20125                                           amount
## 20126                                           amount
## 20127                                           amount
## 20128                                           amount
## 20129                                           amount
## 20130                                           amount
## 20131                                           amount
## 20132                                           amount
## 20133                                           amount
## 20134                                           amount
## 20135                                           amount
## 20136                                           amount
## 20137                                           amount
## 20138                                           amount
## 20139                                           amount
## 20140                                           amount
## 20141                                           amount
## 20142                                           amount
## 20143                                           amount
## 20144                                           amount
## 20145                                           amount
## 20146                                            ample
## 20147                                            ample
## 20148                                 ampostbarsclosed
## 20149                                              amt
## 20150                                         amuerika
## 20151                                            amuse
## 20152                                            amuse
## 20153                                            amuse
## 20154                                            amuse
## 20155                                            amuse
## 20156                                              amy
## 20157                                             anal
## 20158                                        analogous
## 20159                                          analogy
## 20160                                         analysis
## 20161                                             ancd
## 20162                                         ancestor
## 20163                                         ancestor
## 20164                                         ancestor
## 20165                                         ancestor
## 20166                                         ancestor
## 20167                                         ancestor
## 20168                                  andbrotherinlaw
## 20169                                           andcan
## 20170                                         andevery
## 20171                                             andi
## 20172                                            andor
## 20173                                            andor
## 20174                                            andor
## 20175                                            andor
## 20176                                            andor
## 20177                                            andor
## 20178                                            andor
## 20179                                            andor
## 20180                                            andor
## 20181                                            andor
## 20182                                          andthey
## 20183                                          andtime
## 20184                                          andwait
## 20185                                           anemic
## 20186                                          angeles
## 20187                                          angeles
## 20188                                          angeles
## 20189                                          angeles
## 20190                                          angeles
## 20191                                            anger
## 20192                                            anger
## 20193                                            anger
## 20194                                            angle
## 20195                                            angry
## 20196                                            angry
## 20197                                            angry
## 20198                                            angry
## 20199                                            angry
## 20200                                            angry
## 20201                                            angry
## 20202                                            angry
## 20203                                            angry
## 20204                                            angry
## 20205                                            angry
## 20206                                            angry
## 20207                                            angry
## 20208                                           animal
## 20209                                        animosity
## 20210                                        anitgenos
## 20211                                           annddd
## 20212                                            annoy
## 20213                                            annoy
## 20214                                            annoy
## 20215                                            annoy
## 20216                                            annoy
## 20217                                            annoy
## 20218                                            annoy
## 20219                                            annoy
## 20220                                            annoy
## 20221                                            annoy
## 20222                                            annoy
## 20223                                            annoy
## 20224                                            annoy
## 20225                                            annoy
## 20226                                            annoy
## 20227                                            annoy
## 20228                                            annoy
## 20229                                            annoy
## 20230                                            annoy
## 20231                                            annoy
## 20232                                            annoy
## 20233                                            annoy
## 20234                                            annoy
## 20235                                            annoy
## 20236                                            annoy
## 20237                                            annoy
## 20238                                            annoy
## 20239                                            annoy
## 20240                                       annoyingly
## 20241                                       annoyingly
## 20242                                           annual
## 20243                                           annual
## 20244                                      anonymously
## 20245                                          another
## 20246                                          another
## 20247                                          another
## 20248                                          another
## 20249                                          another
## 20250                                          another
## 20251                                          another
## 20252                                          another
## 20253                                          another
## 20254                                          another
## 20255                                          another
## 20256                                          another
## 20257                                          another
## 20258                                          another
## 20259                                          another
## 20260                                          another
## 20261                                          another
## 20262                                          another
## 20263                                          another
## 20264                                          another
## 20265                                          another
## 20266                                          another
## 20267                                          another
## 20268                                          another
## 20269                                          another
## 20270                                          another
## 20271                                          another
## 20272                                          another
## 20273                                          another
## 20274                                          another
## 20275                                          another
## 20276                                          another
## 20277                                          another
## 20278                                          another
## 20279                                          another
## 20280                                          another
## 20281                                          another
## 20282                                          another
## 20283                                          another
## 20284                                          another
## 20285                                          another
## 20286                                          another
## 20287                                          another
## 20288                                          another
## 20289                                          another
## 20290                                          another
## 20291                                          another
## 20292                                          another
## 20293                                          another
## 20294                                          another
## 20295                                          another
## 20296                                          another
## 20297                                          another
## 20298                                          another
## 20299                                          another
## 20300                                          another
## 20301                                          another
## 20302                                          another
## 20303                                          another
## 20304                                          another
## 20305                                          another
## 20306                                          another
## 20307                                          another
## 20308                                          another
## 20309                                          another
## 20310                                          another
## 20311                                          another
## 20312                                          another
## 20313                                          another
## 20314                                          another
## 20315                                          another
## 20316                                          another
## 20317                                          another
## 20318                                          another
## 20319                                          another
## 20320                                          another
## 20321                                          another
## 20322                                          another
## 20323                                          another
## 20324                                          another
## 20325                                          another
## 20326                                          another
## 20327                                          another
## 20328                                          another
## 20329                                          another
## 20330                                          another
## 20331                                          another
## 20332                                          another
## 20333                                          another
## 20334                                          another
## 20335                                          another
## 20336                                          another
## 20337                                          another
## 20338                                          another
## 20339                                          another
## 20340                                          another
## 20341                                          another
## 20342                                          another
## 20343                                          another
## 20344                                          another
## 20345                                          another
## 20346                                          another
## 20347                                          another
## 20348                                              ans
## 20349                                           answer
## 20350                                           answer
## 20351                                           answer
## 20352                                           answer
## 20353                                           answer
## 20354                                           answer
## 20355                                           answer
## 20356                                           answer
## 20357                                           answer
## 20358                                           answer
## 20359                                           answer
## 20360                                           answer
## 20361                                           answer
## 20362                                           answer
## 20363                                           answer
## 20364                                           answer
## 20365                                           answer
## 20366                                           answer
## 20367                                           answer
## 20368                                           answer
## 20369                                           answer
## 20370                                           answer
## 20371                                       antarctica
## 20372                                     antiamerican
## 20373                                     antiamerican
## 20374                                            antic
## 20375                                       anticipate
## 20376                                       anticipate
## 20377                                       anticipate
## 20378                                       anticipate
## 20379                                     anticipation
## 20380                                     anticipation
## 20381                                     anticipation
## 20382                                     anticipation
## 20383                                       antifreeze
## 20384                                     antihispanic
## 20385                                    antiimmigrant
## 20386                                    antiimmigrant
## 20387                                    antiimmigrant
## 20388                                    antiimmigrant
## 20389                                    antiimmigrant
## 20390                                    antiimmigrant
## 20391                                    antiimmigrant
## 20392                                  antiimmigration
## 20393                                  antiimmigration
## 20394                                  antiimmigration
## 20395                                  antiimmigration
## 20396                                        antimumia
## 20397                                        antimumia
## 20398                                        antimumia
## 20399                                        antimumia
## 20400                              antispanishspeaking
## 20401                                          anxiety
## 20402                                          anybody
## 20403                                          anybody
## 20404                                          anybody
## 20405                                          anybody
## 20406                                          anybody
## 20407                                          anybody
## 20408                                          anybody
## 20409                                           anyday
## 20410                                           anyhoo
## 20411                                           anyhow
## 20412                                           anyhow
## 20413                                           anyhow
## 20414                                           anyhow
## 20415                                           anyhow
## 20416                                           anyhow
## 20417                                          anymore
## 20418                                          anymore
## 20419                                          anymore
## 20420                                          anymore
## 20421                                          anymore
## 20422                                          anymore
## 20423                                          anymore
## 20424                                          anymore
## 20425                                          anymore
## 20426                                          anymore
## 20427                                          anymore
## 20428                                          anymore
## 20429                                          anymore
## 20430                                           anyone
## 20431                                           anyone
## 20432                                           anyone
## 20433                                           anyone
## 20434                                           anyone
## 20435                                           anyone
## 20436                                           anyone
## 20437                                           anyone
## 20438                                           anyone
## 20439                                           anyone
## 20440                                           anyone
## 20441                                           anyone
## 20442                                           anyone
## 20443                                           anyone
## 20444                                           anyone
## 20445                                           anyone
## 20446                                           anyone
## 20447                                           anyone
## 20448                                           anyone
## 20449                                           anyone
## 20450                                           anyone
## 20451                                           anyone
## 20452                                           anyone
## 20453                                           anyone
## 20454                                           anyone
## 20455                                           anyone
## 20456                                           anyone
## 20457                                           anyone
## 20458                                           anyone
## 20459                                           anyone
## 20460                                           anyone
## 20461                                           anyone
## 20462                                           anyone
## 20463                                           anyone
## 20464                                           anyone
## 20465                                           anyone
## 20466                                           anyone
## 20467                                           anyone
## 20468                                           anyone
## 20469                                           anyone
## 20470                                           anyone
## 20471                                           anyone
## 20472                                           anyone
## 20473                                           anyone
## 20474                                           anyone
## 20475                                           anyone
## 20476                                           anyone
## 20477                                         anything
## 20478                                         anything
## 20479                                         anything
## 20480                                         anything
## 20481                                         anything
## 20482                                         anything
## 20483                                         anything
## 20484                                         anything
## 20485                                         anything
## 20486                                         anything
## 20487                                         anything
## 20488                                         anything
## 20489                                         anything
## 20490                                         anything
## 20491                                         anything
## 20492                                         anything
## 20493                                         anything
## 20494                                         anything
## 20495                                         anything
## 20496                                         anything
## 20497                                         anything
## 20498                                         anything
## 20499                                         anything
## 20500                                         anything
## 20501                                         anything
## 20502                                         anything
## 20503                                         anything
## 20504                                         anything
## 20505                                         anything
## 20506                                         anything
## 20507                                         anything
## 20508                                         anything
## 20509                                         anything
## 20510                                         anything
## 20511                                         anything
## 20512                                         anything
## 20513                                         anything
## 20514                                         anything
## 20515                                         anything
## 20516                                         anything
## 20517                                         anything
## 20518                                         anything
## 20519                                         anything
## 20520                                         anything
## 20521                                         anything
## 20522                                         anything
## 20523                                         anything
## 20524                                         anything
## 20525                                         anything
## 20526                                         anything
## 20527                                         anything
## 20528                                         anything
## 20529                                         anything
## 20530                                         anything
## 20531                                         anything
## 20532                                         anything
## 20533                                         anything
## 20534                                         anything
## 20535                                         anything
## 20536                                         anything
## 20537                                         anything
## 20538                                         anything
## 20539                                         anything
## 20540                                         anything
## 20541                                         anything
## 20542                                         anything
## 20543                                         anything
## 20544                                         anything
## 20545                                         anything
## 20546                                         anything
## 20547                                         anything
## 20548                                         anything
## 20549                                         anything
## 20550                                         anything
## 20551                                         anything
## 20552                                         anything
## 20553                                         anything
## 20554                                         anything
## 20555                                         anything
## 20556                                         anything
## 20557                                         anything
## 20558                                         anything
## 20559                                          anytime
## 20560                                          anytime
## 20561                                          anytime
## 20562                                          anytime
## 20563                                          anytime
## 20564                                          anytime
## 20565                                          anytime
## 20566                                          anytime
## 20567                                          anytime
## 20568                                           anyway
## 20569                                           anyway
## 20570                                           anyway
## 20571                                           anyway
## 20572                                           anyway
## 20573                                           anyway
## 20574                                           anyway
## 20575                                           anyway
## 20576                                           anyway
## 20577                                           anyway
## 20578                                           anyway
## 20579                                           anyway
## 20580                                           anyway
## 20581                                           anyway
## 20582                                           anyway
## 20583                                           anyway
## 20584                                           anyway
## 20585                                           anyway
## 20586                                           anyway
## 20587                                           anyway
## 20588                                           anyway
## 20589                                           anyway
## 20590                                           anyway
## 20591                                           anyway
## 20592                                           anyway
## 20593                                           anyway
## 20594                                           anyway
## 20595                                           anyway
## 20596                                           anyway
## 20597                                           anyway
## 20598                                           anyway
## 20599                                           anyway
## 20600                                           anyway
## 20601                                           anyway
## 20602                                           anyway
## 20603                                       anywayback
## 20604                                         anywayit
## 20605                                          anyways
## 20606                                          anyways
## 20607                                          anyways
## 20608                                          anyways
## 20609                                          anyways
## 20610                                          anyways
## 20611                                          anyways
## 20612                                          anyways
## 20613                                          anyways
## 20614                                          anyways
## 20615                                          anyways
## 20616                                          anyways
## 20617                                          anyways
## 20618                                          anyways
## 20619                                          anywere
## 20620                                         anywhere
## 20621                                         anywhere
## 20622                                         anywhere
## 20623                                         anywhere
## 20624                                         anywhere
## 20625                                         anywhere
## 20626                                         anywhere
## 20627                                         anywhere
## 20628                                         anywhere
## 20629                                         anywhere
## 20630                                         anywhere
## 20631                                         anywhere
## 20632                                         anywhere
## 20633                                         anywhere
## 20634                                         anywhere
## 20635                                         anywhere
## 20636                                         anywhere
## 20637                                         anywhere
## 20638                                         anywhere
## 20639                                         anywhere
## 20640                                         anywhere
## 20641                                         anywhere
## 20642                                           anywho
## 20643                                              aok
## 20644                                              aok
## 20645                                              aok
## 20646                                              aok
## 20647                                              aok
## 20648                                              aok
## 20649                                              aok
## 20650                                              aok
## 20651                                              aok
## 20652                                            apart
## 20653                                            apart
## 20654                                            apart
## 20655                                            apart
## 20656                                            apart
## 20657                                            apart
## 20658                                            apart
## 20659                                            apart
## 20660                                            apart
## 20661                                            apart
## 20662                                            apart
## 20663                                            apart
## 20664                                            apart
## 20665                                            apart
## 20666                                        apartment
## 20667                                        apartment
## 20668                                        apathetic
## 20669                                              ape
## 20670                                              ape
## 20671                                              ape
## 20672                                           apiece
## 20673                                       apocalypse
## 20674                                        apologize
## 20675                                        apologize
## 20676                                        apologize
## 20677                                           appall
## 20678                                           appall
## 20679                                           appall
## 20680                                           appall
## 20681                                           appall
## 20682                                           appall
## 20683                                           appall
## 20684                                       apparantly
## 20685                                         apparent
## 20686                                         apparent
## 20687                                         apparent
## 20688                                         apparent
## 20689                                       apparently
## 20690                                       apparently
## 20691                                       apparently
## 20692                                       apparently
## 20693                                       apparently
## 20694                                       apparently
## 20695                                       apparently
## 20696                                       apparently
## 20697                                       apparently
## 20698                                       apparently
## 20699                                       apparently
## 20700                                       apparently
## 20701                                       apparently
## 20702                                       apparently
## 20703                                       apparently
## 20704                                       apparently
## 20705                                       apparently
## 20706                                       apparently
## 20707                                       apparently
## 20708                                       apparently
## 20709                                       apparently
## 20710                                       apparently
## 20711                                       apparently
## 20712                                       apparently
## 20713                                       apparently
## 20714                                       apparently
## 20715                                           appeal
## 20716                                           appeal
## 20717                                           appeal
## 20718                                           appeal
## 20719                                           appeal
## 20720                                           appeal
## 20721                                           appeal
## 20722                                           appeal
## 20723                                           appeal
## 20724                                           appeal
## 20725                                           appeal
## 20726                                           appeal
## 20727                                           appeal
## 20728                                           appeal
## 20729                                           appeal
## 20730                                           appeal
## 20731                                           appeal
## 20732                                           appeal
## 20733                                           appeal
## 20734                                           appeal
## 20735                                           appeal
## 20736                                           appear
## 20737                                           appear
## 20738                                           appear
## 20739                                           appear
## 20740                                           appear
## 20741                                           appear
## 20742                                           appear
## 20743                                           appear
## 20744                                           appear
## 20745                                           appear
## 20746                                           appear
## 20747                                           appear
## 20748                                           appear
## 20749                                           appear
## 20750                                           appear
## 20751                                           appear
## 20752                                           appear
## 20753                                           appear
## 20754                                           appear
## 20755                                           appear
## 20756                                           appear
## 20757                                           appear
## 20758                                       appearance
## 20759                                       appearance
## 20760                                       appearance
## 20761                                       appearance
## 20762                                       appearance
## 20763                                       appearance
## 20764                                       appearance
## 20765                                       appearance
## 20766                                       appearance
## 20767                                       appearance
## 20768                                        appeciate
## 20769                                         appendix
## 20770                                         appetite
## 20771                                         appetite
## 20772                                         appetite
## 20773                                         appetite
## 20774                                         appetite
## 20775                                         appetite
## 20776                                         appetite
## 20777                                         appetite
## 20778                                         appetite
## 20779                                         appetite
## 20780                                        appetizer
## 20781                                       appetizing
## 20782                                       appetizing
## 20783                                       appetizing
## 20784                                       appetizing
## 20785                                       appetizing
## 20786                                            apple
## 20787                                            apple
## 20788                                            apple
## 20789                                            apple
## 20790                                      application
## 20791                                      application
## 20792                                            apply
## 20793                                            apply
## 20794                                            apply
## 20795                                            apply
## 20796                                       appreciate
## 20797                                       appreciate
## 20798                                       appreciate
## 20799                                       appreciate
## 20800                                       appreciate
## 20801                                       appreciate
## 20802                                       appreciate
## 20803                                       appreciate
## 20804                                       appreciate
## 20805                                       appreciate
## 20806                                       appreciate
## 20807                                       appreciate
## 20808                                       appreciate
## 20809                                       appreciate
## 20810                                       appreciate
## 20811                                       appreciate
## 20812                                       appreciate
## 20813                                       appreciate
## 20814                                       appreciate
## 20815                                       appreciate
## 20816                                       appreciate
## 20817                                       appreciate
## 20818                                       appreciate
## 20819                                       appreciate
## 20820                                       appreciate
## 20821                                       appreciate
## 20822                                       appreciate
## 20823                                       appreciate
## 20824                                     appreciation
## 20825                                     appreciative
## 20826                                     apprehensive
## 20827                                     apprehensive
## 20828                                         approach
## 20829                                         approach
## 20830                                         approach
## 20831                                         approach
## 20832                                         approach
## 20833                                         approach
## 20834                                         approach
## 20835                                         approach
## 20836                                         approach
## 20837                                         approach
## 20838                                         approach
## 20839                                         approach
## 20840                                         approach
## 20841                                         approach
## 20842                                         approach
## 20843                                         approach
## 20844                                         approach
## 20845                                      appropriate
## 20846                                      appropriate
## 20847                                    appropriately
## 20848                                    appropriately
## 20849                                          approve
## 20850                                          approve
## 20851                                           approx
## 20852                                    approximately
## 20853                                            april
## 20854                                            april
## 20855                                            april
## 20856                                            april
## 20857                                            april
## 20858                                            april
## 20859                                         aquarium
## 20860                                           arabic
## 20861                                          arbiter
## 20862                                      arbitrarily
## 20863                                            arbys
## 20864                                           arcane
## 20865                                           archie
## 20866                                             area
## 20867                                             area
## 20868                                             area
## 20869                                             area
## 20870                                             area
## 20871                                             area
## 20872                                             area
## 20873                                             area
## 20874                                             area
## 20875                                             area
## 20876                                             area
## 20877                                             area
## 20878                                             area
## 20879                                             area
## 20880                                             area
## 20881                                             area
## 20882                                             area
## 20883                                             area
## 20884                                             area
## 20885                                             area
## 20886                                             area
## 20887                                             area
## 20888                                             area
## 20889                                             area
## 20890                                             area
## 20891                                             area
## 20892                                             area
## 20893                                             area
## 20894                                             area
## 20895                                             area
## 20896                                             area
## 20897                                             area
## 20898                                             area
## 20899                                             area
## 20900                                             area
## 20901                                             area
## 20902                                             area
## 20903                                             area
## 20904                                             area
## 20905                                             area
## 20906                                             area
## 20907                                             area
## 20908                                             area
## 20909                                             area
## 20910                                             area
## 20911                                             area
## 20912                                             area
## 20913                                             area
## 20914                                             area
## 20915                                             area
## 20916                                             area
## 20917                                             area
## 20918                                             area
## 20919                                             area
## 20920                                             area
## 20921                                             area
## 20922                                             area
## 20923                                             area
## 20924                                             area
## 20925                                             area
## 20926                                             area
## 20927                                             area
## 20928                                             area
## 20929                                             area
## 20930                                             area
## 20931                                             area
## 20932                                             area
## 20933                                             area
## 20934                                             area
## 20935                                             area
## 20936                                             area
## 20937                                             area
## 20938                                             area
## 20939                                             area
## 20940                                             area
## 20941                                             area
## 20942                                             area
## 20943                                             area
## 20944                                             area
## 20945                                             area
## 20946                                             area
## 20947                                             area
## 20948                                             area
## 20949                                             area
## 20950                                             area
## 20951                                             area
## 20952                                             area
## 20953                                             area
## 20954                                             area
## 20955                                             area
## 20956                                             area
## 20957                                             area
## 20958                                             area
## 20959                                             area
## 20960                                             area
## 20961                                             area
## 20962                                             area
## 20963                                             area
## 20964                                            areai
## 20965                                          areasmy
## 20966                                            arena
## 20967                                            arent
## 20968                                            arent
## 20969                                            arent
## 20970                                            arent
## 20971                                            arent
## 20972                                            arent
## 20973                                            arent
## 20974                                            arent
## 20975                                            arent
## 20976                                            arent
## 20977                                            arent
## 20978                                            arent
## 20979                                            arent
## 20980                                            arent
## 20981                                            arent
## 20982                                            arent
## 20983                                            arent
## 20984                                            arent
## 20985                                            arent
## 20986                                            arent
## 20987                                            arent
## 20988                                            arent
## 20989                                            arent
## 20990                                            arent
## 20991                                            arent
## 20992                                            arent
## 20993                                            arent
## 20994                                            arent
## 20995                                            arent
## 20996                                            arent
## 20997                                            arent
## 20998                                            arent
## 20999                                            arent
## 21000                                            arent
## 21001                                            arent
## 21002                                            arent
## 21003                                            arent
## 21004                                            arent
## 21005                                         arguably
## 21006                                         arguably
## 21007                                         arguably
## 21008                                         arguably
## 21009                                            argue
## 21010                                            argue
## 21011                                            argue
## 21012                                            argue
## 21013                                            argue
## 21014                                            argue
## 21015                                            argue
## 21016                                            argue
## 21017                                            argue
## 21018                                         argument
## 21019                                         argument
## 21020                                         argument
## 21021                                         argument
## 21022                                         argument
## 21023                                         argument
## 21024                                         argument
## 21025                                         argument
## 21026                                         argument
## 21027                                         argument
## 21028                                          arizona
## 21029                                          arizona
## 21030                                          arizona
## 21031                                        arlington
## 21032                                              arm
## 21033                                              arm
## 21034                                              arm
## 21035                                              arm
## 21036                                              arm
## 21037                                              arm
## 21038                                           armpit
## 21039                                             army
## 21040                                             army
## 21041                                             army
## 21042                                            aroma
## 21043                                           around
## 21044                                           around
## 21045                                           around
## 21046                                           around
## 21047                                           around
## 21048                                           around
## 21049                                           around
## 21050                                           around
## 21051                                           around
## 21052                                           around
## 21053                                           around
## 21054                                           around
## 21055                                           around
## 21056                                           around
## 21057                                           around
## 21058                                           around
## 21059                                           around
## 21060                                           around
## 21061                                           around
## 21062                                           around
## 21063                                           around
## 21064                                           around
## 21065                                           around
## 21066                                           around
## 21067                                           around
## 21068                                           around
## 21069                                           around
## 21070                                           around
## 21071                                           around
## 21072                                           around
## 21073                                           around
## 21074                                           around
## 21075                                           around
## 21076                                           around
## 21077                                           around
## 21078                                           around
## 21079                                           around
## 21080                                           around
## 21081                                           around
## 21082                                           around
## 21083                                           around
## 21084                                           around
## 21085                                           around
## 21086                                           around
## 21087                                           around
## 21088                                           around
## 21089                                           around
## 21090                                           around
## 21091                                           around
## 21092                                           around
## 21093                                           around
## 21094                                           around
## 21095                                           around
## 21096                                           around
## 21097                                           around
## 21098                                           around
## 21099                                           around
## 21100                                           around
## 21101                                           around
## 21102                                           around
## 21103                                           around
## 21104                                           around
## 21105                                           around
## 21106                                           around
## 21107                                           around
## 21108                                           around
## 21109                                           around
## 21110                                           around
## 21111                                           around
## 21112                                           around
## 21113                                           around
## 21114                                           around
## 21115                                           around
## 21116                                           around
## 21117                                           around
## 21118                                           around
## 21119                                           around
## 21120                                           around
## 21121                                           around
## 21122                                           around
## 21123                                           around
## 21124                                           around
## 21125                                           around
## 21126                                           around
## 21127                                           around
## 21128                                           around
## 21129                                           around
## 21130                                           around
## 21131                                           around
## 21132                                           around
## 21133                                           around
## 21134                                           around
## 21135                                           around
## 21136                                           around
## 21137                                           around
## 21138                                           around
## 21139                                           around
## 21140                                           around
## 21141                                           around
## 21142                                           around
## 21143                                           around
## 21144                                           around
## 21145                                           around
## 21146                                           around
## 21147                                           around
## 21148                                           around
## 21149                                           around
## 21150                                           around
## 21151                                           around
## 21152                                           around
## 21153                                           around
## 21154                                           around
## 21155                                           around
## 21156                                           around
## 21157                                           around
## 21158                                           around
## 21159                                           around
## 21160                                      arrangement
## 21161                                           arrest
## 21162                                          arrival
## 21163                                          arrival
## 21164                                          arrival
## 21165                                          arrival
## 21166                                           arrive
## 21167                                           arrive
## 21168                                           arrive
## 21169                                           arrive
## 21170                                           arrive
## 21171                                           arrive
## 21172                                           arrive
## 21173                                           arrive
## 21174                                           arrive
## 21175                                           arrive
## 21176                                           arrive
## 21177                                           arrive
## 21178                                           arrive
## 21179                                           arrive
## 21180                                           arrive
## 21181                                           arrive
## 21182                                           arrive
## 21183                                           arrive
## 21184                                           arrive
## 21185                                           arrive
## 21186                                           arrive
## 21187                                           arrive
## 21188                                           arrive
## 21189                                           arrive
## 21190                                           arrive
## 21191                                           arrive
## 21192                                           arrive
## 21193                                        arrogance
## 21194                                        arrogance
## 21195                                        arrogance
## 21196                                        arrogance
## 21197                                        arrogance
## 21198                                        arrogance
## 21199                                         arrogant
## 21200                                         arrogant
## 21201                                         arrogant
## 21202                                              art
## 21203                                              art
## 21204                                              art
## 21205                                              art
## 21206                                         arterial
## 21207                                           artery
## 21208                                           artery
## 21209                                           artery
## 21210                                           artery
## 21211                                           artery
## 21212                                   arteryclogging
## 21213                                   arteryclogging
## 21214                                          article
## 21215                                          article
## 21216                                          article
## 21217                                          article
## 21218                                          article
## 21219                                          article
## 21220                                          article
## 21221                                       articulate
## 21222                                       artificial
## 21223                                       artificial
## 21224                                       artificial
## 21225                                           artist
## 21226                                             asap
## 21227                                          ascribe
## 21228                                           ashame
## 21229                                          ashamed
## 21230                                          ashamed
## 21231                                          ashamed
## 21232                                          ashamed
## 21233                                          ashamed
## 21234                                          ashamed
## 21235                                          ashamed
## 21236                                          ashamed
## 21237                                          ashamed
## 21238                                            asian
## 21239                                            asian
## 21240                                            asian
## 21241                                            asian
## 21242                                            asian
## 21243                                            asian
## 21244                                            asian
## 21245                                            asian
## 21246                                            asian
## 21247                                            asian
## 21248                                    asianamerican
## 21249                                            aside
## 21250                                            aside
## 21251                                            aside
## 21252                                            aside
## 21253                                            aside
## 21254                                            aside
## 21255                                            aside
## 21256                                            aside
## 21257                                            aside
## 21258                                            aside
## 21259                                            aside
## 21260                                            aside
## 21261                                            aside
## 21262                                            aside
## 21263                                            aside
## 21264                                            aside
## 21265                                            aside
## 21266                                            aside
## 21267                                            aside
## 21268                                            aside
## 21269                                            aside
## 21270                                            aside
## 21271                                            aside
## 21272                                            aside
## 21273                                            aside
## 21274                                            aside
## 21275                                            aside
## 21276                                            aside
## 21277                                            aside
## 21278                                            aside
## 21279                                            aside
## 21280                                         asideala
## 21281                                       asideenjoy
## 21282                                          asinine
## 21283                                          asinine
## 21284                                              ask
## 21285                                              ask
## 21286                                              ask
## 21287                                              ask
## 21288                                              ask
## 21289                                              ask
## 21290                                              ask
## 21291                                              ask
## 21292                                              ask
## 21293                                              ask
## 21294                                              ask
## 21295                                              ask
## 21296                                              ask
## 21297                                              ask
## 21298                                              ask
## 21299                                              ask
## 21300                                              ask
## 21301                                              ask
## 21302                                              ask
## 21303                                              ask
## 21304                                              ask
## 21305                                              ask
## 21306                                              ask
## 21307                                              ask
## 21308                                              ask
## 21309                                              ask
## 21310                                              ask
## 21311                                              ask
## 21312                                              ask
## 21313                                              ask
## 21314                                              ask
## 21315                                              ask
## 21316                                              ask
## 21317                                              ask
## 21318                                              ask
## 21319                                              ask
## 21320                                              ask
## 21321                                              ask
## 21322                                              ask
## 21323                                              ask
## 21324                                              ask
## 21325                                              ask
## 21326                                              ask
## 21327                                              ask
## 21328                                              ask
## 21329                                              ask
## 21330                                              ask
## 21331                                              ask
## 21332                                              ask
## 21333                                              ask
## 21334                                              ask
## 21335                                              ask
## 21336                                              ask
## 21337                                              ask
## 21338                                              ask
## 21339                                              ask
## 21340                                              ask
## 21341                                              ask
## 21342                                              ask
## 21343                                              ask
## 21344                                              ask
## 21345                                              ask
## 21346                                              ask
## 21347                                              ask
## 21348                                              ask
## 21349                                              ask
## 21350                                              ask
## 21351                                              ask
## 21352                                              ask
## 21353                                              ask
## 21354                                              ask
## 21355                                              ask
## 21356                                              ask
## 21357                                              ask
## 21358                                              ask
## 21359                                              ask
## 21360                                              ask
## 21361                                              ask
## 21362                                              ask
## 21363                                              ask
## 21364                                              ask
## 21365                                              ask
## 21366                                              ask
## 21367                                              ask
## 21368                                              ask
## 21369                                              ask
## 21370                                              ask
## 21371                                              ask
## 21372                                              ask
## 21373                                              ask
## 21374                                              ask
## 21375                                              ask
## 21376                                              ask
## 21377                                              ask
## 21378                                              ask
## 21379                                              ask
## 21380                                              ask
## 21381                                              ask
## 21382                                              ask
## 21383                                              ask
## 21384                                              ask
## 21385                                              ask
## 21386                                              ask
## 21387                                              ask
## 21388                                              ask
## 21389                                              ask
## 21390                                              ask
## 21391                                              ask
## 21392                                              ask
## 21393                                              ask
## 21394                                              ask
## 21395                                              ask
## 21396                                              ask
## 21397                                            askin
## 21398                                           asleep
## 21399                                           asleep
## 21400                                           aspect
## 21401                                           aspect
## 21402                                              ass
## 21403                                              ass
## 21404                                              ass
## 21405                                              ass
## 21406                                              ass
## 21407                                              ass
## 21408                                              ass
## 21409                                              ass
## 21410                                              ass
## 21411                                              ass
## 21412                                              ass
## 21413                                              ass
## 21414                                              ass
## 21415                                              ass
## 21416                                              ass
## 21417                                              ass
## 21418                                              ass
## 21419                                              ass
## 21420                                              ass
## 21421                                              ass
## 21422                                              ass
## 21423                                              ass
## 21424                                              ass
## 21425                                          assault
## 21426                                       asschapped
## 21427                                     assemblyline
## 21428                                        assertion
## 21429                                        assertive
## 21430                                         assesbut
## 21431                                       assessment
## 21432                                       assessment
## 21433                                         assfaced
## 21434                                          asshole
## 21435                                          asshole
## 21436                                          asshole
## 21437                                          asshole
## 21438                                         assholes
## 21439                                         assholes
## 21440                                         assholes
## 21441                                         assholes
## 21442                                         assholes
## 21443                                         assholes
## 21444                                         assholes
## 21445                                         assholes
## 21446                                         assholes
## 21447                                         assholes
## 21448                                         assholes
## 21449                                         assholes
## 21450                                       assimilate
## 21451                                           assist
## 21452                                        associate
## 21453                                        associate
## 21454                                       assortment
## 21455                                          assuage
## 21456                                           assume
## 21457                                           assume
## 21458                                           assume
## 21459                                           assume
## 21460                                           assume
## 21461                                           assume
## 21462                                           assume
## 21463                                           assume
## 21464                                           assume
## 21465                                           assume
## 21466                                           assume
## 21467                                           assume
## 21468                                           assume
## 21469                                           assume
## 21470                                           assume
## 21471                                           assume
## 21472                                           assume
## 21473                                           assume
## 21474                                           assume
## 21475                                           assume
## 21476                                           assume
## 21477                                           assume
## 21478                                           assume
## 21479                                           assume
## 21480                                           assume
## 21481                                           assume
## 21482                                           assume
## 21483                                           assume
## 21484                                       assumption
## 21485                                           assure
## 21486                                           assure
## 21487                                           assure
## 21488                                           assure
## 21489                                     astonishment
## 21490                                           astray
## 21491                                           astray
## 21492                                     astronomical
## 21493                                              así
## 21494                      ateanotherentirecheesesteak
## 21495                                          athlete
## 21496                                          athlete
## 21497                                              atl
## 21498                                              atl
## 21499                                              atl
## 21500                                          atlanta
## 21501                                          atleast
## 21502                                          atleast
## 21503                                          atleast
## 21504                                          atleast
## 21505                                              atm
## 21506                                              atm
## 21507                                              atm
## 21508                                              atm
## 21509                                              atm
## 21510                                              atm
## 21511                                              atm
## 21512                                              atm
## 21513                                              atm
## 21514                                              atm
## 21515                                              atm
## 21516                                              atm
## 21517                                              atm
## 21518                                              atm
## 21519                                              atm
## 21520                                              atm
## 21521                                              atm
## 21522                                              atm
## 21523                                              atm
## 21524                                              atm
## 21525                                              atm
## 21526                                       atmosphere
## 21527                                       atmosphere
## 21528                                       atmosphere
## 21529                                       atmosphere
## 21530                                       atmosphere
## 21531                                       atmosphere
## 21532                                       atmosphere
## 21533                                       atmosphere
## 21534                                       atmosphere
## 21535                                       atmosphere
## 21536                                       atmosphere
## 21537                                       atmosphere
## 21538                                       atmosphere
## 21539                                       atmosphere
## 21540                                       atmosphere
## 21541                                       atmosphere
## 21542                                       atmosphere
## 21543                                       atmosphere
## 21544                                       atmosphere
## 21545                                       atmosphere
## 21546                                       atmosphere
## 21547                                       atmosphere
## 21548                                       atmosphere
## 21549                                       atmosphere
## 21550                                       atmosphere
## 21551                                       atmosphere
## 21552                                       atmosphere
## 21553                                       atmosphere
## 21554                                       atmosphere
## 21555                                       atmosphere
## 21556                                       atmosphere
## 21557                                       atmosphere
## 21558                                       atmosphere
## 21559                                       atmosphere
## 21560                                             atms
## 21561                                             atms
## 21562                                             atms
## 21563                                             atms
## 21564                                             atop
## 21565                                        atrocious
## 21566                                        atrocious
## 21567                                        atrocious
## 21568                                      atrociously
## 21569                                           attach
## 21570                                           attach
## 21571                                           attack
## 21572                                           attack
## 21573                                           attack
## 21574                                           attack
## 21575                                           attack
## 21576                                           attack
## 21577                                           attack
## 21578                                           attact
## 21579                                          attempt
## 21580                                          attempt
## 21581                                          attempt
## 21582                                          attempt
## 21583                                          attempt
## 21584                                          attempt
## 21585                                          attempt
## 21586                                          attempt
## 21587                                          attempt
## 21588                                          attempt
## 21589                                          attempt
## 21590                                          attempt
## 21591                                          attempt
## 21592                                          attempt
## 21593                                          attempt
## 21594                                          attempt
## 21595                                           attend
## 21596                                           attend
## 21597                                        attendant
## 21598                                        attendant
## 21599                                         attendee
## 21600                                        attention
## 21601                                        attention
## 21602                                        attention
## 21603                                        attention
## 21604                                        attention
## 21605                                        attention
## 21606                                        attention
## 21607                                        attention
## 21608                                        attention
## 21609                                        attention
## 21610                                        attention
## 21611                                        attention
## 21612                                        attention
## 21613                                        attention
## 21614                                        attention
## 21615                                        attentive
## 21616                                           attest
## 21617                                           attest
## 21618                                       attheleast
## 21619                                         attitude
## 21620                                         attitude
## 21621                                         attitude
## 21622                                         attitude
## 21623                                         attitude
## 21624                                         attitude
## 21625                                         attitude
## 21626                                         attitude
## 21627                                         attitude
## 21628                                         attitude
## 21629                                         attitude
## 21630                                         attitude
## 21631                                         attitude
## 21632                                         attitude
## 21633                                         attitude
## 21634                                         attitude
## 21635                                         attitude
## 21636                                         attitude
## 21637                                         attitude
## 21638                                         attitude
## 21639                                         attitude
## 21640                                         attitude
## 21641                                         attitude
## 21642                                         attitude
## 21643                                         attitude
## 21644                                         attitude
## 21645                                         attitude
## 21646                                         attitude
## 21647                                         attitude
## 21648                                         attitude
## 21649                                         attitude
## 21650                                         attitude
## 21651                                         attitude
## 21652                                         attitude
## 21653                                         attitude
## 21654                                         attitude
## 21655                                         attitude
## 21656                                         attitude
## 21657                                         attitude
## 21658                                         attitude
## 21659                                         attitude
## 21660                                         attitude
## 21661                                         attitude
## 21662                                         attitude
## 21663                                         attitude
## 21664                                         attitude
## 21665                                         attitude
## 21666                                         attitude
## 21667                                         attitude
## 21668                                         attitude
## 21669                                         attitude
## 21670                                         attitude
## 21671                                         attitude
## 21672                                         attitude
## 21673                                         attitude
## 21674                                         attitude
## 21675                                         attitude
## 21676                                         attitude
## 21677                                         attitude
## 21678                                         attitude
## 21679                                         attitude
## 21680                                         attitude
## 21681                                         attitude
## 21682                                         attitude
## 21683                                         attitude
## 21684                                         attitude
## 21685                                         attitude
## 21686                                         attitude
## 21687                                         attitude
## 21688                                         attitude
## 21689                                         attitude
## 21690                                   attitudeicious
## 21691                                      attitudeswe
## 21692                                     attitudethis
## 21693                                        attitutde
## 21694                                         attorney
## 21695                                          attract
## 21696                                          attract
## 21697                                          attract
## 21698                                          attract
## 21699                                          attract
## 21700                                          attract
## 21701                                          attract
## 21702                                          attract
## 21703                                          attract
## 21704                                          attract
## 21705                                          attract
## 21706                                          attract
## 21707                                          attract
## 21708                                          attract
## 21709                                          attract
## 21710                                       attraction
## 21711                                       attraction
## 21712                                       attraction
## 21713                                       attraction
## 21714                                       attraction
## 21715                                       attraction
## 21716                                       attraction
## 21717                                       attraction
## 21718                                       attraction
## 21719                                       attraction
## 21720                                       attraction
## 21721                                       attraction
## 21722                                       attraction
## 21723                                       attraction
## 21724                                       attraction
## 21725                                       attraction
## 21726                                       attraction
## 21727                                       attraction
## 21728                                       attraction
## 21729                                       attraction
## 21730                                       attraction
## 21731                                       attraction
## 21732                                       attraction
## 21733                                       attraction
## 21734                                       attraction
## 21735                                       attraction
## 21736                                       attraction
## 21737                                       attraction
## 21738                                       attraction
## 21739                                    attractionand
## 21740                                     attractionto
## 21741                                attractionusually
## 21742                                       attractive
## 21743                                       attractive
## 21744                                       attractive
## 21745                                       attractive
## 21746                                       attractive
## 21747                                               au
## 21748                                               au
## 21749                                         audacity
## 21750                                         audacity
## 21751                                         audacity
## 21752                                              aug
## 21753                                             aunt
## 21754                                             aunt
## 21755                                             aunt
## 21756                                             aura
## 21757                                             aura
## 21758                                             aura
## 21759                                       australian
## 21760                                        authentic
## 21761                                        authentic
## 21762                                        authentic
## 21763                                        authentic
## 21764                                        authentic
## 21765                                        authentic
## 21766                                        authentic
## 21767                                        authentic
## 21768                                        authentic
## 21769                                        authentic
## 21770                                        authentic
## 21771                                        authentic
## 21772                                        authentic
## 21773                                        authentic
## 21774                                        authentic
## 21775                                        authentic
## 21776                                        authentic
## 21777                                        authentic
## 21778                                        authentic
## 21779                                        authentic
## 21780                                        authentic
## 21781                                        authentic
## 21782                                        authentic
## 21783                             authenticcheesesteak
## 21784                                     authenticity
## 21785                                     authenticity
## 21786                                    authenticitys
## 21787                                    authoritarian
## 21788                                        authority
## 21789                                             auto
## 21790                                        autograph
## 21791                                        autograph
## 21792                                        automatic
## 21793                                    automatically
## 21794                                    automatically
## 21795                                       automobile
## 21796                                            avail
## 21797                                     availability
## 21798                                        available
## 21799                                        available
## 21800                                        available
## 21801                                        available
## 21802                                        available
## 21803                                        available
## 21804                                        available
## 21805                                        available
## 21806                                        available
## 21807                                        available
## 21808                                        available
## 21809                                        available
## 21810                                        available
## 21811                                        available
## 21812                                        available
## 21813                                        available
## 21814                                        available
## 21815                                        available
## 21816                                        available
## 21817                                        available
## 21818                                        available
## 21819                                        available
## 21820                                        avaliable
## 21821                                           avalon
## 21822                                           avatar
## 21823                                           avatar
## 21824                                              ave
## 21825                                              ave
## 21826                                              ave
## 21827                                              ave
## 21828                                              ave
## 21829                                              ave
## 21830                                              ave
## 21831                                              ave
## 21832                                              ave
## 21833                                              ave
## 21834                                              ave
## 21835                                              ave
## 21836                                              ave
## 21837                                              ave
## 21838                                           avenue
## 21839                                           avenue
## 21840                                           avenue
## 21841                                           avenue
## 21842                                          average
## 21843                                          average
## 21844                                          average
## 21845                                          average
## 21846                                          average
## 21847                                          average
## 21848                                          average
## 21849                                          average
## 21850                                          average
## 21851                                          average
## 21852                                          average
## 21853                                          average
## 21854                                          average
## 21855                                          average
## 21856                                          average
## 21857                                          average
## 21858                                          average
## 21859                                          average
## 21860                                          average
## 21861                                          average
## 21862                                          average
## 21863                                          average
## 21864                                          average
## 21865                                          average
## 21866                                          average
## 21867                                          average
## 21868                                          average
## 21869                                          average
## 21870                                          average
## 21871                                          average
## 21872                                          average
## 21873                                          average
## 21874                                          average
## 21875                                          average
## 21876                                          average
## 21877                                          average
## 21878                                          average
## 21879                                          average
## 21880                                          average
## 21881                                          average
## 21882                                          average
## 21883                                          average
## 21884                                          average
## 21885                                          average
## 21886                                          average
## 21887                                          average
## 21888                                          average
## 21889                                          average
## 21890                                          average
## 21891                                      averageness
## 21892                                           averse
## 21893                                         aversion
## 21894                                              avg
## 21895                                              avg
## 21896                                              avg
## 21897                                              avg
## 21898                                             avid
## 21899                                            avoid
## 21900                                            avoid
## 21901                                            avoid
## 21902                                            avoid
## 21903                                            avoid
## 21904                                            avoid
## 21905                                            avoid
## 21906                                            avoid
## 21907                                            avoid
## 21908                                            avoid
## 21909                                            avoid
## 21910                                            avoid
## 21911                                            avoid
## 21912                                            avoid
## 21913                                            avoid
## 21914                                            avoid
## 21915                                            avoid
## 21916                                            avoid
## 21917                                            avoid
## 21918                                            avoid
## 21919                                            avoid
## 21920                                            avoid
## 21921                                            avoid
## 21922                                            avoid
## 21923                                            avoid
## 21924                                            avoid
## 21925                                               aw
## 21926                                            await
## 21927                                            await
## 21928                                            await
## 21929                                            await
## 21930                                            await
## 21931                                            award
## 21932                                            award
## 21933                                            award
## 21934                                            award
## 21935                                            award
## 21936                                            award
## 21937                                            aware
## 21938                                            aware
## 21939                                            aware
## 21940                                            aware
## 21941                                            aware
## 21942                                            aware
## 21943                                            aware
## 21944                                            aware
## 21945                                            aware
## 21946                                            aware
## 21947                                        awareness
## 21948                                             away
## 21949                                             away
## 21950                                             away
## 21951                                             away
## 21952                                             away
## 21953                                             away
## 21954                                             away
## 21955                                             away
## 21956                                             away
## 21957                                             away
## 21958                                             away
## 21959                                             away
## 21960                                             away
## 21961                                             away
## 21962                                             away
## 21963                                             away
## 21964                                             away
## 21965                                             away
## 21966                                             away
## 21967                                             away
## 21968                                             away
## 21969                                             away
## 21970                                             away
## 21971                                             away
## 21972                                             away
## 21973                                             away
## 21974                                             away
## 21975                                             away
## 21976                                             away
## 21977                                             away
## 21978                                             away
## 21979                                             away
## 21980                                             away
## 21981                                             away
## 21982                                             away
## 21983                                             away
## 21984                                             away
## 21985                                             away
## 21986                                             away
## 21987                                             away
## 21988                                             away
## 21989                                             away
## 21990                                             away
## 21991                                             away
## 21992                                             away
## 21993                                             away
## 21994                                             away
## 21995                                             away
## 21996                                             away
## 21997                                             away
## 21998                                             away
## 21999                                             away
## 22000                                             away
## 22001                                             away
## 22002                                             away
## 22003                                             away
## 22004                                             away
## 22005                                             away
## 22006                                             away
## 22007                                             away
## 22008                                             away
## 22009                                             away
## 22010                                             away
## 22011                                             away
## 22012                                             away
## 22013                                             away
## 22014                                             away
## 22015                                             away
## 22016                                             away
## 22017                                             away
## 22018                                             away
## 22019                                             away
## 22020                                             away
## 22021                                             away
## 22022                                             away
## 22023                                             away
## 22024                                             away
## 22025                                             away
## 22026                                             away
## 22027                                             away
## 22028                                             away
## 22029                                             away
## 22030                                             away
## 22031                                             away
## 22032                                             away
## 22033                                             away
## 22034                                             away
## 22035                                             away
## 22036                                             away
## 22037                                             away
## 22038                                             away
## 22039                                             away
## 22040                                             away
## 22041                                             away
## 22042                                             away
## 22043                                             away
## 22044                                             away
## 22045                                             away
## 22046                                             away
## 22047                                             away
## 22048                                             away
## 22049                                             away
## 22050                                             away
## 22051                                             away
## 22052                                             away
## 22053                                             away
## 22054                                             away
## 22055                                             away
## 22056                                             away
## 22057                                             away
## 22058                                             away
## 22059                                             away
## 22060                                            aways
## 22061                                          awaythe
## 22062                                          awesome
## 22063                                          awesome
## 22064                                          awesome
## 22065                                          awesome
## 22066                                          awesome
## 22067                                          awesome
## 22068                                          awesome
## 22069                                          awesome
## 22070                                          awesome
## 22071                                          awesome
## 22072                                          awesome
## 22073                                          awesome
## 22074                                          awesome
## 22075                                          awesome
## 22076                                          awesome
## 22077                                          awesome
## 22078                                          awesome
## 22079                                          awesome
## 22080                                          awesome
## 22081                                          awesome
## 22082                                          awesome
## 22083                                          awesome
## 22084                                          awesome
## 22085                                          awesome
## 22086                                          awesome
## 22087                                          awesome
## 22088                                          awesome
## 22089                                          awesome
## 22090                                          awesome
## 22091                                          awesome
## 22092                                          awesome
## 22093                                          awesome
## 22094                                          awesome
## 22095                                          awesome
## 22096                                          awesome
## 22097                                          awesome
## 22098                                          awesome
## 22099                                          awesome
## 22100                                          awesome
## 22101                                          awesome
## 22102                                          awesome
## 22103                                          awesome
## 22104                                          awesome
## 22105                                          awesome
## 22106                                          awesome
## 22107                                          awesome
## 22108                                          awesome
## 22109                                          awesome
## 22110                                          awesome
## 22111                                          awesome
## 22112                                          awesome
## 22113                                          awesome
## 22114                                          awesome
## 22115                                      awesomeness
## 22116                                            awful
## 22117                                            awful
## 22118                                            awful
## 22119                                            awful
## 22120                                            awful
## 22121                                            awful
## 22122                                            awful
## 22123                                            awful
## 22124                                            awful
## 22125                                            awful
## 22126                                            awful
## 22127                                            awful
## 22128                                            awful
## 22129                                            awful
## 22130                                            awful
## 22131                                            awful
## 22132                                            awful
## 22133                                            awful
## 22134                                            awful
## 22135                                            awful
## 22136                                            awful
## 22137                                            awful
## 22138                                            awful
## 22139                                            awful
## 22140                                            awful
## 22141                                            awful
## 22142                                            awful
## 22143                                            awful
## 22144                                            awful
## 22145                                            awful
## 22146                                            awful
## 22147                                            awful
## 22148                                            awful
## 22149                                            awful
## 22150                                            awful
## 22151                                            awful
## 22152                                            awful
## 22153                                            awful
## 22154                                            awful
## 22155                                            awful
## 22156                                            awful
## 22157                                            awful
## 22158                                            awful
## 22159                                            awful
## 22160                                            awful
## 22161                                            awful
## 22162                                          awfully
## 22163                                          awfully
## 22164                                          awfully
## 22165                                      awfulonions
## 22166                                           awhile
## 22167                                           awhile
## 22168                                           awhile
## 22169                                           awhile
## 22170                                           awhile
## 22171                                          awkward
## 22172                                          awkward
## 22173                                          awkward
## 22174                                          awkward
## 22175                                           awning
## 22176                                           awning
## 22177                                           awning
## 22178                                           awning
## 22179                                           awning
## 22180                                           awning
## 22181                                           awning
## 22182                                           awsome
## 22183                                            awwwf
## 22184                                               ay
## 22185                                               az
## 22186                                               az
## 22187                                               az
## 22188                                                b
## 22189                                                b
## 22190                                                b
## 22191                                                b
## 22192                                                b
## 22193                                                b
## 22194                                                b
## 22195                                                b
## 22196                                                b
## 22197                                                b
## 22198                                                b
## 22199                                                b
## 22200                                                b
## 22201                                                b
## 22202                                             baby
## 22203                                             baby
## 22204                                             baby
## 22205                                             baby
## 22206                                             baby
## 22207                                             baby
## 22208                                             baby
## 22209                                             back
## 22210                                             back
## 22211                                             back
## 22212                                             back
## 22213                                             back
## 22214                                             back
## 22215                                             back
## 22216                                             back
## 22217                                             back
## 22218                                             back
## 22219                                             back
## 22220                                             back
## 22221                                             back
## 22222                                             back
## 22223                                             back
## 22224                                             back
## 22225                                             back
## 22226                                             back
## 22227                                             back
## 22228                                             back
## 22229                                             back
## 22230                                             back
## 22231                                             back
## 22232                                             back
## 22233                                             back
## 22234                                             back
## 22235                                             back
## 22236                                             back
## 22237                                             back
## 22238                                             back
## 22239                                             back
## 22240                                             back
## 22241                                             back
## 22242                                             back
## 22243                                             back
## 22244                                             back
## 22245                                             back
## 22246                                             back
## 22247                                             back
## 22248                                             back
## 22249                                             back
## 22250                                             back
## 22251                                             back
## 22252                                             back
## 22253                                             back
## 22254                                             back
## 22255                                             back
## 22256                                             back
## 22257                                             back
## 22258                                             back
## 22259                                             back
## 22260                                             back
## 22261                                             back
## 22262                                             back
## 22263                                             back
## 22264                                             back
## 22265                                             back
## 22266                                             back
## 22267                                             back
## 22268                                             back
## 22269                                             back
## 22270                                             back
## 22271                                             back
## 22272                                             back
## 22273                                             back
## 22274                                             back
## 22275                                             back
## 22276                                             back
## 22277                                             back
## 22278                                             back
## 22279                                             back
## 22280                                             back
## 22281                                             back
## 22282                                             back
## 22283                                             back
## 22284                                             back
## 22285                                             back
## 22286                                             back
## 22287                                             back
## 22288                                             back
## 22289                                             back
## 22290                                             back
## 22291                                             back
## 22292                                             back
## 22293                                             back
## 22294                                             back
## 22295                                             back
## 22296                                             back
## 22297                                             back
## 22298                                             back
## 22299                                             back
## 22300                                             back
## 22301                                             back
## 22302                                             back
## 22303                                             back
## 22304                                             back
## 22305                                             back
## 22306                                             back
## 22307                                             back
## 22308                                             back
## 22309                                             back
## 22310                                             back
## 22311                                             back
## 22312                                             back
## 22313                                             back
## 22314                                             back
## 22315                                             back
## 22316                                             back
## 22317                                             back
## 22318                                             back
## 22319                                             back
## 22320                                             back
## 22321                                             back
## 22322                                             back
## 22323                                             back
## 22324                                             back
## 22325                                             back
## 22326                                             back
## 22327                                             back
## 22328                                             back
## 22329                                             back
## 22330                                             back
## 22331                                             back
## 22332                                             back
## 22333                                             back
## 22334                                             back
## 22335                                             back
## 22336                                             back
## 22337                                             back
## 22338                                             back
## 22339                                             back
## 22340                                             back
## 22341                                             back
## 22342                                             back
## 22343                                             back
## 22344                                             back
## 22345                                             back
## 22346                                             back
## 22347                                             back
## 22348                                             back
## 22349                                             back
## 22350                                             back
## 22351                                             back
## 22352                                             back
## 22353                                             back
## 22354                                             back
## 22355                                             back
## 22356                                             back
## 22357                                             back
## 22358                                             back
## 22359                                             back
## 22360                                             back
## 22361                                             back
## 22362                                             back
## 22363                                             back
## 22364                                             back
## 22365                                             back
## 22366                                             back
## 22367                                             back
## 22368                                             back
## 22369                                             back
## 22370                                             back
## 22371                                             back
## 22372                                             back
## 22373                                       backawfula
## 22374                                        backgoing
## 22375                                       background
## 22376                                       background
## 22377                                         backlash
## 22378                                         backseat
## 22379                                       backtoback
## 22380                                       backtoback
## 22381                                       backtoback
## 22382                                       backtoback
## 22383                                        backwards
## 22384                                              bad
## 22385                                              bad
## 22386                                              bad
## 22387                                              bad
## 22388                                              bad
## 22389                                              bad
## 22390                                              bad
## 22391                                              bad
## 22392                                              bad
## 22393                                              bad
## 22394                                              bad
## 22395                                              bad
## 22396                                              bad
## 22397                                              bad
## 22398                                              bad
## 22399                                              bad
## 22400                                              bad
## 22401                                              bad
## 22402                                              bad
## 22403                                              bad
## 22404                                              bad
## 22405                                              bad
## 22406                                              bad
## 22407                                              bad
## 22408                                              bad
## 22409                                              bad
## 22410                                              bad
## 22411                                              bad
## 22412                                              bad
## 22413                                              bad
## 22414                                              bad
## 22415                                              bad
## 22416                                              bad
## 22417                                              bad
## 22418                                              bad
## 22419                                              bad
## 22420                                              bad
## 22421                                              bad
## 22422                                              bad
## 22423                                              bad
## 22424                                              bad
## 22425                                              bad
## 22426                                              bad
## 22427                                              bad
## 22428                                              bad
## 22429                                              bad
## 22430                                              bad
## 22431                                              bad
## 22432                                              bad
## 22433                                              bad
## 22434                                              bad
## 22435                                              bad
## 22436                                              bad
## 22437                                              bad
## 22438                                              bad
## 22439                                              bad
## 22440                                              bad
## 22441                                              bad
## 22442                                              bad
## 22443                                              bad
## 22444                                              bad
## 22445                                              bad
## 22446                                              bad
## 22447                                              bad
## 22448                                              bad
## 22449                                              bad
## 22450                                              bad
## 22451                                              bad
## 22452                                              bad
## 22453                                              bad
## 22454                                              bad
## 22455                                              bad
## 22456                                              bad
## 22457                                              bad
## 22458                                              bad
## 22459                                              bad
## 22460                                              bad
## 22461                                              bad
## 22462                                              bad
## 22463                                              bad
## 22464                                              bad
## 22465                                              bad
## 22466                                              bad
## 22467                                              bad
## 22468                                              bad
## 22469                                              bad
## 22470                                              bad
## 22471                                              bad
## 22472                                              bad
## 22473                                              bad
## 22474                                              bad
## 22475                                              bad
## 22476                                              bad
## 22477                                              bad
## 22478                                              bad
## 22479                                              bad
## 22480                                              bad
## 22481                                              bad
## 22482                                              bad
## 22483                                              bad
## 22484                                              bad
## 22485                                              bad
## 22486                                              bad
## 22487                                              bad
## 22488                                              bad
## 22489                                              bad
## 22490                                              bad
## 22491                                              bad
## 22492                                              bad
## 22493                                              bad
## 22494                                              bad
## 22495                                              bad
## 22496                                              bad
## 22497                                              bad
## 22498                                              bad
## 22499                                              bad
## 22500                                              bad
## 22501                                              bad
## 22502                                              bad
## 22503                                              bad
## 22504                                              bad
## 22505                                              bad
## 22506                                              bad
## 22507                                              bad
## 22508                                              bad
## 22509                                              bad
## 22510                                              bad
## 22511                                              bad
## 22512                                              bad
## 22513                                              bad
## 22514                                              bad
## 22515                                              bad
## 22516                                              bad
## 22517                                              bad
## 22518                                              bad
## 22519                                              bad
## 22520                                              bad
## 22521                                              bad
## 22522                                              bad
## 22523                                              bad
## 22524                                              bad
## 22525                                              bad
## 22526                                              bad
## 22527                                              bad
## 22528                                              bad
## 22529                                              bad
## 22530                                              bad
## 22531                                              bad
## 22532                                              bad
## 22533                                              bad
## 22534                                              bad
## 22535                                              bad
## 22536                                              bad
## 22537                                              bad
## 22538                                              bad
## 22539                                              bad
## 22540                                              bad
## 22541                                              bad
## 22542                                              bad
## 22543                                              bad
## 22544                                              bad
## 22545                                              bad
## 22546                                              bad
## 22547                                           badass
## 22548                                           badbut
## 22549                                            badda
## 22550                                            badda
## 22551                                   badelaborating
## 22552                                           badfor
## 22553                                            badge
## 22554                                            badge
## 22555                                            badge
## 22556                                            badge
## 22557                                            badge
## 22558                                            badge
## 22559                                            badge
## 22560                                            badge
## 22561                                            badge
## 22562                                            badge
## 22563                                            badge
## 22564                                            badge
## 22565                                            badge
## 22566                                            badge
## 22567                                            badge
## 22568                                           badger
## 22569                                            badly
## 22570                                            badly
## 22571                                            badly
## 22572                                            badly
## 22573                                          badpats
## 22574                                           baffle
## 22575                                           baffle
## 22576                                              bag
## 22577                                              bag
## 22578                                              bag
## 22579                                              bag
## 22580                                              bag
## 22581                                              bag
## 22582                                              bag
## 22583                                              bag
## 22584                                              bag
## 22585                                              bag
## 22586                                              bag
## 22587                                              bag
## 22588                                              bag
## 22589                                              bag
## 22590                                              bag
## 22591                                              bag
## 22592                                              bag
## 22593                                              bag
## 22594                                              bag
## 22595                                              bag
## 22596                                              bag
## 22597                                              bag
## 22598                                              bag
## 22599                                              bag
## 22600                                              bag
## 22601                                            baggy
## 22602                                            baggy
## 22603                                            bagin
## 22604                                         baguette
## 22605                                         baguette
## 22606                                         baguette
## 22607                                         baguette
## 22608                                         baguette
## 22609                                             bait
## 22610                                             bake
## 22611                                             bake
## 22612                                             bake
## 22613                                             bake
## 22614                                             bake
## 22615                                             bake
## 22616                                            baker
## 22617                                            baker
## 22618                                           bakery
## 22619                                           bakery
## 22620                                           bakery
## 22621                                           bakery
## 22622                                           bakery
## 22623                                          balance
## 22624                                          balance
## 22625                                          balance
## 22626                                          balance
## 22627                                          balance
## 22628                                          balance
## 22629                                          balance
## 22630                                          balance
## 22631                                          balance
## 22632                                          balance
## 22633                                           balboa
## 22634                                             bald
## 22635                                             ball
## 22636                                             ball
## 22637                                             ball
## 22638                                             ball
## 22639                                             ball
## 22640                                             ball
## 22641                                         ballpark
## 22642                                         ballpark
## 22643                                        baltimore
## 22644                                        baltimore
## 22645                                        baltimore
## 22646                                        baltimore
## 22647                                        baltimore
## 22648                                        baltimore
## 22649                                        baltimore
## 22650                                        baltimore
## 22651                                        baltimore
## 22652                                        baltimore
## 22653                                              bam
## 22654                                              bam
## 22655                                              bam
## 22656                                              ban
## 22657                                           banana
## 22658                                             band
## 22659                                        bandwagon
## 22660                                             bang
## 22661                                             bang
## 22662                                           banger
## 22663                                           banger
## 22664                                           banger
## 22665                                           bangin
## 22666                                           bangin
## 22667                                             bank
## 22668                                             bank
## 22669                                           banner
## 22670                                           banner
## 22671                                           banner
## 22672                                              bar
## 22673                                              bar
## 22674                                              bar
## 22675                                              bar
## 22676                                              bar
## 22677                                              bar
## 22678                                              bar
## 22679                                              bar
## 22680                                              bar
## 22681                                              bar
## 22682                                              bar
## 22683                                              bar
## 22684                                              bar
## 22685                                              bar
## 22686                                              bar
## 22687                                              bar
## 22688                                              bar
## 22689                                              bar
## 22690                                              bar
## 22691                                              bar
## 22692                                              bar
## 22693                                              bar
## 22694                                              bar
## 22695                                              bar
## 22696                                              bar
## 22697                                              bar
## 22698                                              bar
## 22699                                              bar
## 22700                                           barack
## 22701                                             barb
## 22702                                        barberton
## 22703                                        barcelona
## 22704                                          barclay
## 22705                                             bare
## 22706                                             bare
## 22707                                             bare
## 22708                                           barely
## 22709                                           barely
## 22710                                           barely
## 22711                                           barely
## 22712                                           barely
## 22713                                           barely
## 22714                                           barely
## 22715                                           barely
## 22716                                           barely
## 22717                                           barely
## 22718                                           barely
## 22719                                           barely
## 22720                                           barely
## 22721                                           barely
## 22722                                           barely
## 22723                                           barely
## 22724                                           barely
## 22725                                           barely
## 22726                                           barely
## 22727                                           barely
## 22728                                           barely
## 22729                                           barely
## 22730                                           barely
## 22731                                           barely
## 22732                                           barely
## 22733                                           barely
## 22734                                           barely
## 22735                                           barely
## 22736                                           barely
## 22737                                           barely
## 22738                                           barely
## 22739                                           barely
## 22740                                           barely
## 22741                                           barely
## 22742                                           barely
## 22743                                           barely
## 22744                                           barely
## 22745                                          bargain
## 22746                                          bargain
## 22747                                          bargain
## 22748                                             bark
## 22749                                             bark
## 22750                                             bark
## 22751                                           barnes
## 22752                                           barnum
## 22753                                        barometer
## 22754                                          barrage
## 22755                                           barrel
## 22756                                 barrestaurantetc
## 22757                                           barrys
## 22758                                           barrys
## 22759                                           barrys
## 22760                                        barstools
## 22761                                        bartender
## 22762                                        bartender
## 22763                                        bartender
## 22764                                        bartender
## 22765                                        bartender
## 22766                                             base
## 22767                                             base
## 22768                                             base
## 22769                                             base
## 22770                                             base
## 22771                                             base
## 22772                                             base
## 22773                                             base
## 22774                                             base
## 22775                                             base
## 22776                                             base
## 22777                                             base
## 22778                                             base
## 22779                                             base
## 22780                                             base
## 22781                                             base
## 22782                                             base
## 22783                                             base
## 22784                                             base
## 22785                                             base
## 22786                                             base
## 22787                                             base
## 22788                                             base
## 22789                                             base
## 22790                                             base
## 22791                                             base
## 22792                                             base
## 22793                                             base
## 22794                                             base
## 22795                                             base
## 22796                                             base
## 22797                                             base
## 22798                                             base
## 22799                                             base
## 22800                                             base
## 22801                                             base
## 22802                                             base
## 22803                                             base
## 22804                                             base
## 22805                                             base
## 22806                                             base
## 22807                                             base
## 22808                                             base
## 22809                                             base
## 22810                                             base
## 22811                                             base
## 22812                                             base
## 22813                                             base
## 22814                                         baseball
## 22815                                         baseball
## 22816                                         baseball
## 22817                                         basement
## 22818                                             bash
## 22819                                             bash
## 22820                                             bash
## 22821                                             bash
## 22822                                            basic
## 22823                                            basic
## 22824                                            basic
## 22825                                            basic
## 22826                                            basic
## 22827                                            basic
## 22828                                            basic
## 22829                                            basic
## 22830                                            basic
## 22831                                            basic
## 22832                                            basic
## 22833                                            basic
## 22834                                            basic
## 22835                                            basic
## 22836                                            basic
## 22837                                            basic
## 22838                                            basic
## 22839                                        basically
## 22840                                        basically
## 22841                                        basically
## 22842                                        basically
## 22843                                        basically
## 22844                                        basically
## 22845                                        basically
## 22846                                        basically
## 22847                                        basically
## 22848                                        basically
## 22849                                        basically
## 22850                                        basically
## 22851                                        basically
## 22852                                        basically
## 22853                                        basically
## 22854                                        basically
## 22855                                        basically
## 22856                                        basically
## 22857                                        basically
## 22858                                        basically
## 22859                                        basically
## 22860                                        basically
## 22861                                        basically
## 22862                                        basically
## 22863                                        basically
## 22864                                        basically
## 22865                                        basically
## 22866                                        basically
## 22867                                        basically
## 22868                                        basically
## 22869                                        basically
## 22870                                     basicclassic
## 22871                                            basis
## 22872                                       basketball
## 22873                                       basketball
## 22874                                         bastante
## 22875                                          bastard
## 22876                                              bat
## 22877                                              bat
## 22878                                              bat
## 22879                                              bat
## 22880                                            batch
## 22881                                            batch
## 22882                                            batch
## 22883                                             bath
## 22884                                             bath
## 22885                                         bathroom
## 22886                                         bathroom
## 22887                                         bathroom
## 22888                                         bathroom
## 22889                                         bathroom
## 22890                                         bathroom
## 22891                                         bathroom
## 22892                                         bathroom
## 22893                                         bathroom
## 22894                                         bathroom
## 22895                                         bathroom
## 22896                                         bathroom
## 22897                                         bathroom
## 22898                                         bathroom
## 22899                                         bathroom
## 22900                                         bathroom
## 22901                                         bathroom
## 22902                                         bathroom
## 22903                                         bathroom
## 22904                                         bathroom
## 22905                                         bathroom
## 22906                                         bathroom
## 22907                                         bathroom
## 22908                                         bathroom
## 22909                                           batman
## 22910                                           battle
## 22911                                           battle
## 22912                                           battle
## 22913                                           battle
## 22914                                           battle
## 22915                                           battle
## 22916                                           battle
## 22917                                           battle
## 22918                                           battle
## 22919                                           battle
## 22920                                           battle
## 22921                                           battle
## 22922                                           battle
## 22923                                           battle
## 22924                                           battle
## 22925                                           battle
## 22926                                           battle
## 22927                                           battle
## 22928                                           battle
## 22929                                           battle
## 22930                                           battle
## 22931                                         battlegi
## 22932                                     battleground
## 22933                                            baugh
## 22934                                              bay
## 22935                                              bay
## 22936                                           baybay
## 22937                                            bball
## 22938                                              bbq
## 22939                                              bbq
## 22940                                              bbq
## 22941                                              bbq
## 22942                                              bbq
## 22943                                               bc
## 22944                                               bc
## 22945                                               bc
## 22946                                               bc
## 22947                                               bc
## 22948                                               bc
## 22949                                               bc
## 22950                                               bc
## 22951                                               bc
## 22952                                               bc
## 22953                                               bc
## 22954                                               bc
## 22955                                               bc
## 22956                                               bc
## 22957                                               bc
## 22958                                               bc
## 22959                                           bcause
## 22960                                               be
## 22961                                               be
## 22962                                           beacon
## 22963                                           beacon
## 22964                                            beall
## 22965                                             beam
## 22966                                             beam
## 22967                                             bear
## 22968                                             bear
## 22969                                             bear
## 22970                                             bear
## 22971                                             bear
## 22972                                             bear
## 22973                                             bear
## 22974                                             bear
## 22975                                             bear
## 22976                                             bear
## 22977                                             bear
## 22978                                             bear
## 22979                                             bear
## 22980                                         bearable
## 22981                                         bearable
## 22982                                            beard
## 22983                                            beast
## 22984                                            beast
## 22985                                            beast
## 22986                                            beast
## 22987                                             beat
## 22988                                             beat
## 22989                                             beat
## 22990                                             beat
## 22991                                             beat
## 22992                                             beat
## 22993                                             beat
## 22994                                             beat
## 22995                                             beat
## 22996                                             beat
## 22997                                             beat
## 22998                                             beat
## 22999                                             beat
## 23000                                             beat
## 23001                                             beat
## 23002                                             beat
## 23003                                             beat
## 23004                                             beat
## 23005                                             beat
## 23006                                             beat
## 23007                                             beat
## 23008                                             beat
## 23009                                             beat
## 23010                                             beat
## 23011                                             beat
## 23012                                         beatdown
## 23013                                         beatened
## 23014                                             beau
## 23015                                             beau
## 23016                                           beause
## 23017                                        beautiful
## 23018                                        beautiful
## 23019                                        beautiful
## 23020                                           beauty
## 23021                                           beauty
## 23022                                          becasue
## 23023                                       becausewhy
## 23024                                             beck
## 23025                                           become
## 23026                                           become
## 23027                                           become
## 23028                                           become
## 23029                                           become
## 23030                                           become
## 23031                                           become
## 23032                                           become
## 23033                                           become
## 23034                                           become
## 23035                                           become
## 23036                                           become
## 23037                                           become
## 23038                                           become
## 23039                                           become
## 23040                                           become
## 23041                                           become
## 23042                                           become
## 23043                                           become
## 23044                                           become
## 23045                                           become
## 23046                                           become
## 23047                                           become
## 23048                                           become
## 23049                                           become
## 23050                                           become
## 23051                                           become
## 23052                                           become
## 23053                                           become
## 23054                                           become
## 23055                                           become
## 23056                                              bee
## 23057                                              bee
## 23058                                             beef
## 23059                                             beef
## 23060                                             beef
## 23061                                             beef
## 23062                                             beef
## 23063                                             beef
## 23064                                             beef
## 23065                                             beef
## 23066                                             beef
## 23067                                             beef
## 23068                                             beef
## 23069                                             beef
## 23070                                             beef
## 23071                                             beef
## 23072                                             beef
## 23073                                             beef
## 23074                                             beef
## 23075                                             beef
## 23076                                             beef
## 23077                                             beef
## 23078                                             beef
## 23079                                             beef
## 23080                                             beef
## 23081                                             beef
## 23082                                             beef
## 23083                                             beef
## 23084                                             beef
## 23085                                             beef
## 23086                                             beef
## 23087                                             beef
## 23088                                             beef
## 23089                                             beef
## 23090                                             beef
## 23091                                             beef
## 23092                                             beef
## 23093                                             beef
## 23094                                             beef
## 23095                                             beef
## 23096                                             beef
## 23097                                             beef
## 23098                                             beef
## 23099                                             beef
## 23100                                             beef
## 23101                                             beef
## 23102                                             beef
## 23103                                             beef
## 23104                                             beef
## 23105                                             beef
## 23106                                             beef
## 23107                                             beef
## 23108                                             beef
## 23109                                             beef
## 23110                                             beef
## 23111                                             beef
## 23112                                             beef
## 23113                                             beef
## 23114                                             beef
## 23115                                             beef
## 23116                                             beef
## 23117                                             beef
## 23118                                             beef
## 23119                                             beef
## 23120                                             beef
## 23121                                             beef
## 23122                                             beef
## 23123                                             beef
## 23124                                             beef
## 23125                                             beef
## 23126                                             beef
## 23127                                             beef
## 23128                                             beef
## 23129                                             beef
## 23130                                             beef
## 23131                                             beef
## 23132                                             beef
## 23133                                             beef
## 23134                                             beef
## 23135                                             beef
## 23136                                             beef
## 23137                                             beef
## 23138                                          beefred
## 23139                                        beefsteak
## 23140                                          beefthe
## 23141                                            beefy
## 23142                                            beefy
## 23143                                            beefy
## 23144                                            beefy
## 23145                                            beefy
## 23146                   beenleftoutalldaynexttotheoven
## 23147                                        beenthere
## 23148                                             beer
## 23149                                             beer
## 23150                                             beer
## 23151                                             beer
## 23152                                             beer
## 23153                                             beer
## 23154                                             beer
## 23155                                             beer
## 23156                                             beer
## 23157                                             beer
## 23158                                             beer
## 23159                                             beer
## 23160                                             beer
## 23161                                             beer
## 23162                                             beer
## 23163                                             beer
## 23164                                             beer
## 23165                                             beer
## 23166                                             beer
## 23167                                             beer
## 23168                                            beeri
## 23169                                        beerwhich
## 23170                                       beforehand
## 23171                                       beforehand
## 23172                                       beforehand
## 23173                                       beforehand
## 23174                                       beforehand
## 23175                                       beforelike
## 23176                                      beforemaybe
## 23177                                         befriend
## 23178                                         befuddle
## 23179                                              beg
## 23180                                              beg
## 23181                                              beg
## 23182                                              beg
## 23183                                            begin
## 23184                                            begin
## 23185                                            begin
## 23186                                            begin
## 23187                                            begin
## 23188                                            begin
## 23189                                            begin
## 23190                                            begin
## 23191                                            begin
## 23192                                            begin
## 23193                                            begin
## 23194                                            begin
## 23195                                            begin
## 23196                                            begin
## 23197                                            begin
## 23198                                            begin
## 23199                                            begin
## 23200                                            begin
## 23201                                            begin
## 23202                                            begin
## 23203                                            begin
## 23204                                            begin
## 23205                                            begin
## 23206                                            begin
## 23207                                            begin
## 23208                                            begin
## 23209                                            begin
## 23210                                            begin
## 23211                                     begrudgingly
## 23212                                           behave
## 23213                                           behave
## 23214                                           behave
## 23215                                         behavior
## 23216                                         behavior
## 23217                                         behavior
## 23218                                         behavior
## 23219                                         behemoth
## 23220                                         behemoth
## 23221                                         behemoth
## 23222                                         behemoth
## 23223                                        behievour
## 23224                                           behind
## 23225                                           behind
## 23226                                           behind
## 23227                                           behind
## 23228                                           behind
## 23229                                           behind
## 23230                                           behind
## 23231                                           behind
## 23232                                           behind
## 23233                                           behind
## 23234                                           behind
## 23235                                           behind
## 23236                                           behind
## 23237                                           behind
## 23238                                           behind
## 23239                                           behind
## 23240                                           behind
## 23241                                           behind
## 23242                                           behind
## 23243                                           behind
## 23244                                           behind
## 23245                                           behind
## 23246                                           behind
## 23247                                           behind
## 23248                                           behind
## 23249                                           behind
## 23250                                           behind
## 23251                                           behind
## 23252                                           behind
## 23253                                           behold
## 23254                                           behold
## 23255                                         beignets
## 23256                                              bel
## 23257                                           belief
## 23258                                           belief
## 23259                                           belief
## 23260                                           belief
## 23261                                           belief
## 23262                                          believe
## 23263                                          believe
## 23264                                          believe
## 23265                                          believe
## 23266                                          believe
## 23267                                          believe
## 23268                                          believe
## 23269                                          believe
## 23270                                          believe
## 23271                                          believe
## 23272                                          believe
## 23273                                          believe
## 23274                                          believe
## 23275                                          believe
## 23276                                          believe
## 23277                                          believe
## 23278                                          believe
## 23279                                          believe
## 23280                                          believe
## 23281                                          believe
## 23282                                          believe
## 23283                                          believe
## 23284                                          believe
## 23285                                          believe
## 23286                                          believe
## 23287                                          believe
## 23288                                          believe
## 23289                                          believe
## 23290                                          believe
## 23291                                          believe
## 23292                                          believe
## 23293                                          believe
## 23294                                          believe
## 23295                                          believe
## 23296                                          believe
## 23297                                          believe
## 23298                                          believe
## 23299                                          believe
## 23300                                          believe
## 23301                                          believe
## 23302                                          believe
## 23303                                          believe
## 23304                                          believe
## 23305                                          believe
## 23306                                          believe
## 23307                                          believe
## 23308                                          believe
## 23309                                          believe
## 23310                                          believe
## 23311                                          believe
## 23312                                          believe
## 23313                                          believe
## 23314                                          believe
## 23315                                          believe
## 23316                                          believe
## 23317                                          believe
## 23318                                          believe
## 23319                                          believe
## 23320                                          believe
## 23321                                          believe
## 23322                                          believe
## 23323                                         believer
## 23324                                             bell
## 23325                                             bell
## 23326                                             bell
## 23327                                             bell
## 23328                                             bell
## 23329                                             bell
## 23330                                             bell
## 23331                                             bell
## 23332                                             bell
## 23333                                             bell
## 23334                                             bell
## 23335                                             bell
## 23336                                             bell
## 23337                                             bell
## 23338                                             bell
## 23339                                             bell
## 23340                                             bell
## 23341                                             bell
## 23342                                             bell
## 23343                                             bell
## 23344                                             bell
## 23345                                             bell
## 23346                                             bell
## 23347                                             bell
## 23348                                           belleh
## 23349                                       belleplain
## 23350                                      belligerent
## 23351                                    belligerently
## 23352                                          bellold
## 23353                                            belly
## 23354                                            belly
## 23355                                          belmont
## 23356                                           belong
## 23357                                           belong
## 23358                                           belong
## 23359                                           belong
## 23360                                           belong
## 23361                                           belong
## 23362                                          beloved
## 23363                                          beloved
## 23364                                          beloved
## 23365                                             belt
## 23366                                             belt
## 23367                                             bely
## 23368                                           bemore
## 23369                                            bench
## 23370                                            bench
## 23371                                            bench
## 23372                                            bench
## 23373                                            bench
## 23374                                            bench
## 23375                                            bench
## 23376                                            bench
## 23377                                            bench
## 23378                                            bench
## 23379                                            bench
## 23380                                            bench
## 23381                                            bench
## 23382                                             bend
## 23383                                          benefit
## 23384                                          benefit
## 23385                                          benefit
## 23386                                             bens
## 23387                                             bens
## 23388                                            bento
## 23389                                         berkeley
## 23390                                         berkeley
## 23391                                          bermuda
## 23392                                           beside
## 23393                                           beside
## 23394                                          besides
## 23395                                          besides
## 23396                                          besides
## 23397                                          besides
## 23398                                          besides
## 23399                                          besides
## 23400                                          besides
## 23401                                          besides
## 23402                                          besides
## 23403                                          besides
## 23404                                          besides
## 23405                                          besides
## 23406                                          besides
## 23407                                          besides
## 23408                                          besides
## 23409                                    besssssthands
## 23410                                             best
## 23411                                             best
## 23412                                            besti
## 23413                                          bestits
## 23414                                          bestive
## 23415                                           bestmy
## 23416                                              bet
## 23417                                              bet
## 23418                                              bet
## 23419                                              bet
## 23420                                              bet
## 23421                                              bet
## 23422                                              bet
## 23423                                              bet
## 23424                                              bet
## 23425                                              bet
## 23426                                              bet
## 23427                                              bet
## 23428                                              bet
## 23429                                              bet
## 23430                                              bet
## 23431                                              bet
## 23432                                           betray
## 23433                                            bette
## 23434                                           better
## 23435                                         betterer
## 23436                                    betterexactly
## 23437 betterhttpstaticpxyelpcombphotoeltlawetqpiuuafal
## 23438                                      bettersteak
## 23439                                      betteruntil
## 23440                                          bettter
## 23441                                         beverage
## 23442                                         beverage
## 23443                                         beverage
## 23444                                         beverage
## 23445                                         beverage
## 23446                                           beware
## 23447                                           beware
## 23448                                           beware
## 23449                                           beware
## 23450                                           beware
## 23451                                           beware
## 23452                                           beware
## 23453                                           beware
## 23454                                           beware
## 23455                                           beware
## 23456                                           beware
## 23457                                           beware
## 23458                                           beware
## 23459                                           beyond
## 23460                                           beyond
## 23461                                           beyond
## 23462                                           beyond
## 23463                                           beyond
## 23464                                           beyond
## 23465                                           beyond
## 23466                                           beyond
## 23467                                           beyond
## 23468                                           beyond
## 23469                                           beyond
## 23470                                           beyond
## 23471                                           beyond
## 23472                                           beyond
## 23473                                           beyond
## 23474                                           beyond
## 23475                                           beyond
## 23476                                           beyond
## 23477                                           beyond
## 23478                                           beyond
## 23479                                               bf
## 23480                                               bf
## 23481                                               bf
## 23482                                               bf
## 23483                                               bf
## 23484                                               bf
## 23485                                               bf
## 23486                                               bf
## 23487                                               bf
## 23488                                               bf
## 23489                                               bf
## 23490                                               bf
## 23491                                               bf
## 23492                                               bf
## 23493                                               bf
## 23494                                               bf
## 23495                                               bf
## 23496                                               bf
## 23497                                               bf
## 23498                                               bf
## 23499                                               bf
## 23500                                               bf
## 23501                                              bff
## 23502                                              bff
## 23503                                             bias
## 23504                                             bias
## 23505                                             bias
## 23506                                             bias
## 23507                                             biff
## 23508                                             biff
## 23509                                         biftecks
## 23510                                              big
## 23511                                              big
## 23512                                              big
## 23513                                              big
## 23514                                              big
## 23515                                              big
## 23516                                              big
## 23517                                              big
## 23518                                              big
## 23519                                              big
## 23520                                              big
## 23521                                              big
## 23522                                              big
## 23523                                              big
## 23524                                              big
## 23525                                              big
## 23526                                              big
## 23527                                              big
## 23528                                              big
## 23529                                              big
## 23530                                              big
## 23531                                              big
## 23532                                              big
## 23533                                              big
## 23534                                              big
## 23535                                              big
## 23536                                              big
## 23537                                              big
## 23538                                              big
## 23539                                              big
## 23540                                              big
## 23541                                              big
## 23542                                              big
## 23543                                              big
## 23544                                              big
## 23545                                              big
## 23546                                              big
## 23547                                              big
## 23548                                              big
## 23549                                              big
## 23550                                              big
## 23551                                              big
## 23552                                              big
## 23553                                              big
## 23554                                              big
## 23555                                              big
## 23556                                              big
## 23557                                              big
## 23558                                              big
## 23559                                              big
## 23560                                              big
## 23561                                              big
## 23562                                              big
## 23563                                              big
## 23564                                              big
## 23565                                              big
## 23566                                              big
## 23567                                              big
## 23568                                              big
## 23569                                              big
## 23570                                              big
## 23571                                              big
## 23572                                              big
## 23573                                              big
## 23574                                              big
## 23575                                              big
## 23576                                              big
## 23577                                              big
## 23578                                              big
## 23579                                              big
## 23580                                              big
## 23581                                              big
## 23582                                              big
## 23583                                              big
## 23584                                              big
## 23585                                              big
## 23586                                              big
## 23587                                              big
## 23588                                              big
## 23589                                              big
## 23590                                              big
## 23591                                              big
## 23592                                              big
## 23593                                              big
## 23594                                              big
## 23595                                              big
## 23596                                              big
## 23597                                              big
## 23598                                              big
## 23599                                              big
## 23600                                              big
## 23601                                            bight
## 23602                                            bigot
## 23603                                            bigot
## 23604                                            bigot
## 23605                                            bigot
## 23606                                            bigot
## 23607                                            bigot
## 23608                                            bigot
## 23609                                            bigot
## 23610                                            bigot
## 23611                                            bigot
## 23612                                            bigot
## 23613                                            bigot
## 23614                                          bigoted
## 23615                                          bigoted
## 23616                                          bigoted
## 23617                                          bigoted
## 23618                                          bigoted
## 23619                                          bigotry
## 23620                                          bigotry
## 23621                                          bigotry
## 23622                                          bigotry
## 23623                                          bigotry
## 23624                                          bigotry
## 23625                                          bigotry
## 23626                                          bigotry
## 23627                                          bigotry
## 23628                                             bike
## 23629                                             bike
## 23630                                             bike
## 23631                                             bike
## 23632                                             bike
## 23633                                             bike
## 23634                                             bike
## 23635                                             bike
## 23636                                            biker
## 23637                                            biker
## 23638                                            biker
## 23639                                        bilingual
## 23640                                             bill
## 23641                                             bill
## 23642                                             bill
## 23643                                             bill
## 23644                                             bill
## 23645                                             bill
## 23646                                             bill
## 23647                                             bill
## 23648                                             bill
## 23649                                             bill
## 23650                                             bill
## 23651                                             bill
## 23652                                             bill
## 23653                                             bill
## 23654                                             bill
## 23655                                        billboard
## 23656                                        billboard
## 23657                                            billy
## 23658                                            billy
## 23659                                            billy
## 23660                                            billy
## 23661                                            billy
## 23662                                            billy
## 23663                                            billy
## 23664                                            billy
## 23665                                            billy
## 23666                                              bin
## 23667                                              bin
## 23668                                             bind
## 23669                                             bind
## 23670                                             bind
## 23671                                             bing
## 23672                                            binge
## 23673                                            birch
## 23674                                             bird
## 23675                                             bird
## 23676                                             bird
## 23677                                             bird
## 23678                                             bird
## 23679                                            birth
## 23680                                            birth
## 23681                                         birthday
## 23682                                         birthday
## 23683                                         birthday
## 23684                                         birthday
## 23685                                     birthdaywhom
## 23686                                           bismol
## 23687                                              bit
## 23688                                              bit
## 23689                                              bit
## 23690                                              bit
## 23691                                              bit
## 23692                                              bit
## 23693                                              bit
## 23694                                              bit
## 23695                                              bit
## 23696                                            bitch
## 23697                                            bitch
## 23698                                            bitch
## 23699                                            bitch
## 23700                                            bitch
## 23701                                            bitch
## 23702                                         bitchshe
## 23703                                             bite
## 23704                                             bite
## 23705                                             bite
## 23706                                             bite
## 23707                                             bite
## 23708                                             bite
## 23709                                             bite
## 23710                                             bite
## 23711                                             bite
## 23712                                             bite
## 23713                                             bite
## 23714                                             bite
## 23715                                             bite
## 23716                                             bite
## 23717                                             bite
## 23718                                             bite
## 23719                                             bite
## 23720                                             bite
## 23721                                             bite
## 23722                                             bite
## 23723                                             bite
## 23724                                             bite
## 23725                                             bite
## 23726                                             bite
## 23727                                             bite
## 23728                                             bite
## 23729                                             bite
## 23730                                             bite
## 23731                                             bite
## 23732                                             bite
## 23733                                             bite
## 23734                                             bite
## 23735                                             bite
## 23736                                             bite
## 23737                                             bite
## 23738                                             bite
## 23739                                             bite
## 23740                                             bite
## 23741                                             bite
## 23742                                             bite
## 23743                                             bite
## 23744                                             bite
## 23745                                             bite
## 23746                                             bite
## 23747                                             bite
## 23748                                             bite
## 23749                                             bite
## 23750                                             bite
## 23751                                             bite
## 23752                                             bite
## 23753                                             bite
## 23754                                             bite
## 23755                                             bite
## 23756                                             bite
## 23757                                             bite
## 23758                                             bite
## 23759                                             bite
## 23760                                             bite
## 23761                                             bite
## 23762                                             bite
## 23763                                             bite
## 23764                                             bite
## 23765                                             bite
## 23766                                             bite
## 23767                                             bite
## 23768                                             bite
## 23769                                             bite
## 23770                                             bite
## 23771                                             bite
## 23772                                             bite
## 23773                                             bite
## 23774                                             bite
## 23775                                             bite
## 23776                                             bite
## 23777                                             bite
## 23778                                             bite
## 23779                                             bite
## 23780                                             bite
## 23781                                             bite
## 23782                                             bite
## 23783                                             bite
## 23784                                             bite
## 23785                                             bite
## 23786                                             bite
## 23787                                             bite
## 23788                                             bite
## 23789                                             bite
## 23790                                             bite
## 23791                                             bite
## 23792                                             bite
## 23793                                             bite
## 23794                                             bite
## 23795                                             bite
## 23796                                             bite
## 23797                                             bite
## 23798                                             bite
## 23799                                             bite
## 23800                                             bite
## 23801                                             bite
## 23802                                             bite
## 23803                                             bite
## 23804                                             bite
## 23805                                             bite
## 23806                                             bite
## 23807                                             bite
## 23808                                             bite
## 23809                                             bite
## 23810                                             bite
## 23811                                             bite
## 23812                                             bite
## 23813                                             bite
## 23814                                             bite
## 23815                                             bite
## 23816                                             bite
## 23817                                             bite
## 23818                                             bite
## 23819                                             bite
## 23820                                             bite
## 23821                                             bite
## 23822                                             bite
## 23823                                             bite
## 23824                                             bite
## 23825                                             bite
## 23826                                             bite
## 23827                                             bite
## 23828                                             bite
## 23829                                             bite
## 23830                                             bite
## 23831                                             bite
## 23832                                             bite
## 23833                                             bite
## 23834                                             bite
## 23835                                             bite
## 23836                                             bite
## 23837                                             bite
## 23838                                             bite
## 23839                                             bite
## 23840                                             bite
## 23841                                             bite
## 23842                                             bite
## 23843                                             bite
## 23844                                             bite
## 23845                                             bite
## 23846                                             bite
## 23847                                             bite
## 23848                                             bite
## 23849                                             bite
## 23850                                             bite
## 23851                                             bite
## 23852                                             bite
## 23853                                             bite
## 23854                                             bite
## 23855                                             bite
## 23856                                             bite
## 23857                                             bite
## 23858                                             bite
## 23859                                             bite
## 23860                                             bite
## 23861                                             bite
## 23862                                             bite
## 23863                                             bite
## 23864                                             bite
## 23865                                             bite
## 23866                                             bite
## 23867                                             bite
## 23868                                             bite
## 23869                                             bite
## 23870                                         bitesize
## 23871                                           bitter
## 23872                                      bittersweet
## 23873                                      bittersweet
## 23874                                              biz
## 23875                                              biz
## 23876                                          bizzare
## 23877                                          blabber
## 23878                                          blabber
## 23879                                            black
## 23880                                            black
## 23881                                            black
## 23882                                            black
## 23883                                            black
## 23884                                            black
## 23885                                            black
## 23886                                            black
## 23887                                         blackout
## 23888                                         blacktop
## 23889                                          bladder
## 23890                                          bladder
## 23891                                             blah
## 23892                                             blah
## 23893                                             blah
## 23894                                             blah
## 23895                                             blah
## 23896                                             blah
## 23897                                             blah
## 23898                                             blah
## 23899                                             blah
## 23900                                             blah
## 23901                                             blah
## 23902                                             blah
## 23903                                             blah
## 23904                                             blah
## 23905                                             blah
## 23906                                             blah
## 23907                                             blah
## 23908                                          blahand
## 23909                                      blahblandno
## 23910                                      blahcounter
## 23911                                            blame
## 23912                                            blame
## 23913                                            blame
## 23914                                            blame
## 23915                                            bland
## 23916                                            bland
## 23917                                            bland
## 23918                                            bland
## 23919                                            bland
## 23920                                            bland
## 23921                                            bland
## 23922                                            bland
## 23923                                            bland
## 23924                                            bland
## 23925                                            bland
## 23926                                            bland
## 23927                                            bland
## 23928                                            bland
## 23929                                            bland
## 23930                                            bland
## 23931                                            bland
## 23932                                            bland
## 23933                                            bland
## 23934                                            bland
## 23935                                            bland
## 23936                                            bland
## 23937                                            bland
## 23938                                            bland
## 23939                                            bland
## 23940                                            bland
## 23941                                            bland
## 23942                                            bland
## 23943                                            bland
## 23944                                            bland
## 23945                                            bland
## 23946                                            bland
## 23947                                            bland
## 23948                                            bland
## 23949                                            bland
## 23950                                            bland
## 23951                                            bland
## 23952                                            bland
## 23953                                            bland
## 23954                                            bland
## 23955                                            bland
## 23956                                            bland
## 23957                                            bland
## 23958                                            bland
## 23959                                            bland
## 23960                                            bland
## 23961                                            bland
## 23962                                            bland
## 23963                                            bland
## 23964                                            bland
## 23965                                            bland
## 23966                                            bland
## 23967                                            bland
## 23968                                            bland
## 23969                                            bland
## 23970                                            bland
## 23971                                            bland
## 23972                                            bland
## 23973                                            bland
## 23974                                            bland
## 23975                                            bland
## 23976                                            bland
## 23977                                            bland
## 23978                                            bland
## 23979                                            bland
## 23980                                            bland
## 23981                                            bland
## 23982                                            bland
## 23983                                            bland
## 23984                                            bland
## 23985                                            bland
## 23986                                            bland
## 23987                                            bland
## 23988                                         blandddd
## 23989                                           blandi
## 23990                                         blandthe
## 23991                                         blandthe
## 23992                                         blandyou
## 23993                                            blank
## 23994                                            blank
## 23995                                          blanket
## 23996                                         blantand
## 23997                                            blare
## 23998                                            blare
## 23999                                            blase
## 24000                                       blasphemer
## 24001                                      blasphemous
## 24002                                        blasphemy
## 24003                                            blast
## 24004                                            blasé
## 24005                                          blatant
## 24006                                          blatant
## 24007                                          blatant
## 24008                                          blatant
## 24009                                          blatant
## 24010                                          blatant
## 24011                                        blatantly
## 24012                                        blatantly
## 24013                                        blatantly
## 24014                                        blatantly
## 24015                                        blatantly
## 24016                                           blazin
## 24017                                           bleach
## 24018                                            bleak
## 24019                                            bleed
## 24020                                            bleed
## 24021                                            bleeh
## 24022                                             bleh
## 24023                                             bleh
## 24024                                            blend
## 24025                                            blend
## 24026                                            blend
## 24027                                            blend
## 24028                                            blend
## 24029                                            blend
## 24030                                            blend
## 24031                                            blend
## 24032                                            blend
## 24033                                            blend
## 24034                                            blend
## 24035                                            blend
## 24036                                            bless
## 24037                                            bless
## 24038                                            bless
## 24039                                            bless
## 24040                                            bless
## 24041                                            blind
## 24042                                            blind
## 24043                                            blind
## 24044                                            blind
## 24045                                            blind
## 24046                                          blindly
## 24047                                            bling
## 24048                                            bling
## 24049                                            bling
## 24050                                            bling
## 24051                                            bling
## 24052                                            blink
## 24053                                            blink
## 24054                                            blink
## 24055                                            blink
## 24056                                          blister
## 24057                                            bloat
## 24058                                             blob
## 24059                                            block
## 24060                                            block
## 24061                                            block
## 24062                                            block
## 24063                                            block
## 24064                                            block
## 24065                                            block
## 24066                                            block
## 24067                                            block
## 24068                                            block
## 24069                                            block
## 24070                                            block
## 24071                                            block
## 24072                                            block
## 24073                                            block
## 24074                                            block
## 24075                                            block
## 24076                                            block
## 24077                                            block
## 24078                                            block
## 24079                                            block
## 24080                                            block
## 24081                                            block
## 24082                                            block
## 24083                                            block
## 24084                                            block
## 24085                                            block
## 24086                                            block
## 24087                                            block
## 24088                                            block
## 24089                                            block
## 24090                                            block
## 24091                                            block
## 24092                                            block
## 24093                                            block
## 24094                                            block
## 24095                                            block
## 24096                                            block
## 24097                                            block
## 24098                                            block
## 24099                                            block
## 24100                                            block
## 24101                                            block
## 24102                                            block
## 24103                                            block
## 24104                                             blog
## 24105                                             blog
## 24106                                             blog
## 24107                                            blogs
## 24108                                            blogs
## 24109                                            blogs
## 24110                                           blonde
## 24111                                            blood
## 24112                                            blood
## 24113                                            blood
## 24114                                            blood
## 24115                                            blood
## 24116                                           bloody
## 24117                                             blot
## 24118                                             blow
## 24119                                             blow
## 24120                                             blow
## 24121                                             blow
## 24122                                             blow
## 24123                                             blow
## 24124                                             blow
## 24125                                             blow
## 24126                                             blow
## 24127                                             blow
## 24128                                             blow
## 24129                                             blow
## 24130                                             blow
## 24131                                             blow
## 24132                                             blow
## 24133                                             blow
## 24134                                             blow
## 24135                                          blownup
## 24136                                             blue
## 24137                                             blue
## 24138                                             blue
## 24139                                             blue
## 24140                                             blue
## 24141                                             blue
## 24142                                             blue
## 24143                                        blueberry
## 24144                                       bluecollar
## 24145                                       bluecollar
## 24146                                        bluetiled
## 24147                                            blunt
## 24148                                            blunt
## 24149                                            blunt
## 24150                                            blurt
## 24151                                            blurt
## 24152                                            bmore
## 24153                                             boar
## 24154                                            board
## 24155                                            board
## 24156                                            board
## 24157                                            board
## 24158                                            board
## 24159                                            board
## 24160                                            board
## 24161                                        boardwalk
## 24162                                        boardwalk
## 24163                                        boardwalk
## 24164                                        boardwalk
## 24165                                        boardwalk
## 24166                                            boast
## 24167                                            boast
## 24168                                            boast
## 24169                                             boat
## 24170                                             boat
## 24171                                              bob
## 24172                                            bobby
## 24173                                           bodega
## 24174                                           bodega
## 24175                                           bodega
## 24176                                           bodega
## 24177                                           bodega
## 24178                                           bodega
## 24179                                           bodega
## 24180                                           bodega
## 24181                                           bodega
## 24182                                             body
## 24183                                             body
## 24184                                             body
## 24185                                             body
## 24186                                             body
## 24187                                             body
## 24188                                             body
## 24189                                             body
## 24190                                           boggle
## 24191                                            bogus
## 24192                                             boil
## 24193                                             boil
## 24194                                             boil
## 24195                                             boil
## 24196                                             boil
## 24197                                             boil
## 24198                                             boil
## 24199                                             boil
## 24200                                             boil
## 24201                                             boil
## 24202                                             boil
## 24203                                             boil
## 24204                                             boil
## 24205                                             boil
## 24206                                       boisterous
## 24207                                       boisterous
## 24208                                             bold
## 24209                                             bold
## 24210                                             bold
## 24211                                             bold
## 24212                                           boldly
## 24213                                          bologna
## 24214                                             bolt
## 24215                                             bomb
## 24216                                             bomb
## 24217                                             bomb
## 24218                                             bomb
## 24219                                             bomb
## 24220                                             bomb
## 24221                                             bomb
## 24222                                             bomb
## 24223                                             bomb
## 24224                                          bombard
## 24225                                              bon
## 24226                                             bond
## 24227                                            bondo
## 24228                                             bone
## 24229                                             bone
## 24230                                             bone
## 24231                                            bonus
## 24232                                            bonus
## 24233                                            bonus
## 24234                                            bonus
## 24235                                      bonusdouble
## 24236                                              boo
## 24237                                              boo
## 24238                                              boo
## 24239                                              boo
## 24240                                              boo
## 24241                                              boo
## 24242                                             bood
## 24243                                             book
## 24244                                             book
## 24245                                             book
## 24246                                             book
## 24247                                             book
## 24248                                             book
## 24249                                             book
## 24250                                             book
## 24251                                             book
## 24252                                             book
## 24253                                             book
## 24254                                             book
## 24255                                             book
## 24256                                             book
## 24257                                             book
## 24258                                             book
## 24259                                             boom
## 24260                                             boom
## 24261                                             boom
## 24262                                             boom
## 24263                                          boonies
## 24264                                          boooooo
## 24265                                        boooooooo
## 24266                                            boost
## 24267                                             boot
## 24268                                             boot
## 24269                                             boot
## 24270                                             boot
## 24271                                            booth
## 24272                                            booth
## 24273                                            booty
## 24274                                            booze
## 24275                                            booze
## 24276                                            booze
## 24277                                            booze
## 24278                                            borat
## 24279                                           border
## 24280                                           border
## 24281                                           border
## 24282                                       borderline
## 24283                                       borderline
## 24284                                 borderlineghetto
## 24285                                             bore
## 24286                                             bore
## 24287                                             bore
## 24288                                             bore
## 24289                                             bore
## 24290                                             bore
## 24291                                             bore
## 24292                                             bore
## 24293                                             bore
## 24294                                             bore
## 24295                                             bore
## 24296                                             bore
## 24297                                             bore
## 24298                                             bose
## 24299                                             boss
## 24300                                            bossy
## 24301                                           boston
## 24302                                           boston
## 24303                                           boston
## 24304                                           boston
## 24305                                           boston
## 24306                                           boston
## 24307                                           boston
## 24308                                           boston
## 24309                                           boston
## 24310                                           boston
## 24311                                           boston
## 24312                                           boston
## 24313                                           boston
## 24314                                           boston
## 24315                                           boston
## 24316                                           boston
## 24317                                  bothcheesesteak
## 24318                                           bother
## 24319                                           bother
## 24320                                           bother
## 24321                                           bother
## 24322                                           bother
## 24323                                           bother
## 24324                                           bother
## 24325                                           bother
## 24326                                           bother
## 24327                                           bother
## 24328                                           bother
## 24329                                           bother
## 24330                                           bother
## 24331                                           bother
## 24332                                           bother
## 24333                                           bother
## 24334                                           bother
## 24335                                           bother
## 24336                                           bother
## 24337                                           bother
## 24338                                           bother
## 24339                                           bother
## 24340                                           bother
## 24341                                           bother
## 24342                                           bother
## 24343                                           bother
## 24344                                           bother
## 24345                                           bother
## 24346                                           bother
## 24347                                           bother
## 24348                                           bother
## 24349                                           bother
## 24350                                           bother
## 24351                                           bother
## 24352                                           bother
## 24353                                           bother
## 24354                                           bother
## 24355                                           bother
## 24356                                            boths
## 24357                                          boththe
## 24358                                           bottle
## 24359                                           bottle
## 24360                                           bottle
## 24361                                           bottle
## 24362                                           bottle
## 24363                                           bottle
## 24364                                    bottleinstead
## 24365                                           bottom
## 24366                                           bottom
## 24367                                           bottom
## 24368                                           bottom
## 24369                                           bottom
## 24370                                           bottom
## 24371                                           bottom
## 24372                                           bottom
## 24373                                           bottom
## 24374                                           bottom
## 24375                                           bottom
## 24376                                           bottom
## 24377                                           bottom
## 24378                                           bottom
## 24379                                           bottom
## 24380                                           bottom
## 24381                                           bottom
## 24382                                           bottom
## 24383                                           bottom
## 24384                                           bottom
## 24385                                           bottom
## 24386                                           bottom
## 24387                                           bottom
## 24388                                           bottom
## 24389                                           bottom
## 24390                                       bottomline
## 24391                                           bounce
## 24392                                           bouncy
## 24393                                            bound
## 24394                                         boundary
## 24395                                             bout
## 24396                                             bout
## 24397                                             bout
## 24398                                             bout
## 24399                                             bout
## 24400                                             bout
## 24401                                            bowel
## 24402                                            bowel
## 24403                                             bowl
## 24404                                             bowl
## 24405                                              box
## 24406                                              box
## 24407                                              box
## 24408                                              box
## 24409                                              box
## 24410                                              box
## 24411                                              box
## 24412                                              boy
## 24413                                              boy
## 24414                                              boy
## 24415                                              boy
## 24416                                              boy
## 24417                                              boy
## 24418                                              boy
## 24419                                              boy
## 24420                                              boy
## 24421                                              boy
## 24422                                              boy
## 24423                                              boy
## 24424                                              boy
## 24425                                              boy
## 24426                                              boy
## 24427                                              boy
## 24428                                              boy
## 24429                                         boyardee
## 24430                                          boycott
## 24431                                          boycott
## 24432                                        boyfriend
## 24433                                        boyfriend
## 24434                                        boyfriend
## 24435                                        boyfriend
## 24436                                        boyfriend
## 24437                                        boyfriend
## 24438                                        boyfriend
## 24439                                        boyfriend
## 24440                                        boyfriend
## 24441                                        boyfriend
## 24442                                        boyfriend
## 24443                                        boyfriend
## 24444                                        boyfriend
## 24445                                        boyfriend
## 24446                                        boyfriend
## 24447                                        boyfriend
## 24448                                        boyfriend
## 24449                                        boyfriend
## 24450                                        boyfriend
## 24451                                        boyfriend
## 24452                                        boyfriend
## 24453                                        boyfriend
## 24454                                        boyfriend
## 24455                                        boyfriend
## 24456                                        boyfriend
## 24457                                        boyfriend
## 24458                                        boyfriend
## 24459                                        boyfriend
## 24460                                       boysinblue
## 24461                                             boyz
## 24462                                            bozos
## 24463                                            brace
## 24464                                            brace
## 24465                                             brag
## 24466                                             brag
## 24467                                             brag
## 24468                                             brag
## 24469                                             brag
## 24470                                             brag
## 24471                                             brag
## 24472                                            brain
## 24473                                            brain
## 24474                                          brainer
## 24475                                          brainer
## 24476                                        brainwash
## 24477                                            brand
## 24478                                            brand
## 24479                                            brand
## 24480                                            brand
## 24481                                            brand
## 24482                                            brand
## 24483                                            brand
## 24484                                            brand
## 24485                                            brand
## 24486                                            brand
## 24487                                       brandywine
## 24488                                            brave
## 24489                                            brave
## 24490                                            brave
## 24491                                            brave
## 24492                                            brave
## 24493                                            bravo
## 24494                                            bread
## 24495                                            bread
## 24496                                            bread
## 24497                                            bread
## 24498                                            bread
## 24499                                            bread
## 24500                                            bread
## 24501                                            bread
## 24502                                            bread
## 24503                                            bread
## 24504                                            bread
## 24505                                            bread
## 24506                                            bread
## 24507                                            bread
## 24508                                            bread
## 24509                                            bread
## 24510                                            bread
## 24511                                            bread
## 24512                                            bread
## 24513                                            bread
## 24514                                            bread
## 24515                                            bread
## 24516                                            bread
## 24517                                            bread
## 24518                                            bread
## 24519                                            bread
## 24520                                            bread
## 24521                                            bread
## 24522                                            bread
## 24523                                            bread
## 24524                                            bread
## 24525                                            bread
## 24526                                            bread
## 24527                                            bread
## 24528                                            bread
## 24529                                            bread
## 24530                                            bread
## 24531                                            bread
## 24532                                            bread
## 24533                                            bread
## 24534                                            bread
## 24535                                            bread
## 24536                                            bread
## 24537                                            bread
## 24538                                            bread
## 24539                                            bread
## 24540                                            bread
## 24541                                            bread
## 24542                                            bread
## 24543                                            bread
## 24544                                            bread
## 24545                                            bread
## 24546                                            bread
## 24547                                            bread
## 24548                                            bread
## 24549                                            bread
## 24550                                            bread
## 24551                                            bread
## 24552                                            bread
## 24553                                            bread
## 24554                                            bread
## 24555                                            bread
## 24556                                            bread
## 24557                                            bread
## 24558                                            bread
## 24559                                            bread
## 24560                                            bread
## 24561                                            bread
## 24562                                            bread
## 24563                                            bread
## 24564                                            bread
## 24565                                            bread
## 24566                                            bread
## 24567                                            bread
## 24568                                            bread
## 24569                                            bread
## 24570                                            bread
## 24571                                            bread
## 24572                                            bread
## 24573                                            bread
## 24574                                            bread
## 24575                                            bread
## 24576                                            bread
## 24577                                            bread
## 24578                                            bread
## 24579                                            bread
## 24580                                            bread
## 24581                                            bread
## 24582                                            bread
## 24583                                            bread
## 24584                                            bread
## 24585                                            bread
## 24586                                            bread
## 24587                                            bread
## 24588                                            bread
## 24589                                            bread
## 24590                                            bread
## 24591                                            bread
## 24592                                            bread
## 24593                                            bread
## 24594                                            bread
## 24595                                            bread
## 24596                                            bread
## 24597                                            bread
## 24598                                            bread
## 24599                                            bread
## 24600                                            bread
## 24601                                            bread
## 24602                                            bread
## 24603                                            bread
## 24604                                            bread
## 24605                                            bread
## 24606                                            bread
## 24607                                            bread
## 24608                                            bread
## 24609                                            bread
## 24610                                            bread
## 24611                                            bread
## 24612                                            bread
## 24613                                            bread
## 24614                                            bread
## 24615                                            bread
## 24616                                            bread
## 24617                                            bread
## 24618                                            bread
## 24619                                            bread
## 24620                                            bread
## 24621                                            bread
## 24622                                            bread
## 24623                                            bread
## 24624                                            bread
## 24625                                            bread
## 24626                                            bread
## 24627                                            bread
## 24628                                            bread
## 24629                                            bread
## 24630                                            bread
## 24631                                            bread
## 24632                                            bread
## 24633                                            bread
## 24634                                            bread
## 24635                                            bread
## 24636                                            bread
## 24637                                            bread
## 24638                                            bread
## 24639                                            bread
## 24640                                            bread
## 24641                                            bread
## 24642                                            bread
## 24643                                            bread
## 24644                                            bread
## 24645                                            bread
## 24646                                            bread
## 24647                                            bread
## 24648                                            bread
## 24649                                            bread
## 24650                                            bread
## 24651                                            bread
## 24652                                            bread
## 24653                                            bread
## 24654                                            bread
## 24655                                            bread
## 24656                                            bread
## 24657                                            bread
## 24658                                            bread
## 24659                                            bread
## 24660                                            bread
## 24661                                            bread
## 24662                                            bread
## 24663                                            bread
## 24664                                            bread
## 24665                                            bread
## 24666                                            bread
## 24667                                            bread
## 24668                                            bread
## 24669                                            bread
## 24670                                            bread
## 24671                                            bread
## 24672                                            bread
## 24673                                            bread
## 24674                                            bread
## 24675                                            bread
## 24676                                            bread
## 24677                                            bread
## 24678                                            bread
## 24679                                            bread
## 24680                                            bread
## 24681                                            bread
## 24682                                            bread
## 24683                                            bread
## 24684                                            bread
## 24685                                            bread
## 24686                                            bread
## 24687                                            bread
## 24688                                            bread
## 24689                                            bread
## 24690                                            bread
## 24691                                            bread
## 24692                                            bread
## 24693                                            bread
## 24694                                            bread
## 24695                                            bread
## 24696                                            bread
## 24697                                            bread
## 24698                                            bread
## 24699                                            bread
## 24700                                            bread
## 24701                                            bread
## 24702                                            bread
## 24703                                            bread
## 24704                                            bread
## 24705                                            bread
## 24706                                            bread
## 24707                                            bread
## 24708                                            bread
## 24709                                            bread
## 24710                                            bread
## 24711                                            bread
## 24712                                            bread
## 24713                                            bread
## 24714                                  breadcheesemeat
## 24715                                         breadhad
## 24716                                           breadi
## 24717                                          breadif
## 24718                                          breadit
## 24719                                         breadits
## 24720                                        breadnice
## 24721                                          breadoh
## 24722                                         breadpat
## 24723                                        breadroll
## 24724                                        breadroll
## 24725                                           bready
## 24726                                           bready
## 24727                                           bready
## 24728                                            break
## 24729                                            break
## 24730                                            break
## 24731                                            break
## 24732                                            break
## 24733                                            break
## 24734                                            break
## 24735                                            break
## 24736                                            break
## 24737                                            break
## 24738                                            break
## 24739                                            break
## 24740                                            break
## 24741                                            break
## 24742                                            break
## 24743                                            break
## 24744                                            break
## 24745                                            break
## 24746                                            break
## 24747                                            break
## 24748                                            break
## 24749                                            break
## 24750                                            break
## 24751                                        breakdown
## 24752                                        breakdown
## 24753                                          breaker
## 24754                                        breakfast
## 24755                                        breakfast
## 24756                                        breakfast
## 24757                                        breakfast
## 24758                                        breakfast
## 24759                                        breakfast
## 24760                                        breakfast
## 24761                                        breakfast
## 24762                                        breakfast
## 24763                                        breakfast
## 24764                                        breakfast
## 24765                                        breakfast
## 24766                                        breakfast
## 24767                                        breakfast
## 24768                                           breast
## 24769                                           breast
## 24770                                           breath
## 24771                                           breath
## 24772                                          breathe
## 24773                                            breed
## 24774                                            breed
## 24775                                           breeze
## 24776                                          brewery
## 24777                                            brick
## 24778                                            brick
## 24779                                            brick
## 24780                                            brick
## 24781                                            brick
## 24782                                           bridge
## 24783                                           bridge
## 24784                                       bridgework
## 24785                                            brief
## 24786                                            brief
## 24787                                            brief
## 24788                                            brief
## 24789                                          briefly
## 24790                                          briefly
## 24791                                          briefly
## 24792                                          briefly
## 24793                                           bright
## 24794                                           bright
## 24795                                           bright
## 24796                                           bright
## 24797                                           bright
## 24798                                           bright
## 24799                                           bright
## 24800                                           bright
## 24801                                           bright
## 24802                                           bright
## 24803                                           bright
## 24804                                           bright
## 24805                                           bright
## 24806                                           bright
## 24807                                           bright
## 24808                                           bright
## 24809                                           bright
## 24810                                           bright
## 24811                                           bright
## 24812                                           bright
## 24813                                           bright
## 24814                                           bright
## 24815                                           bright
## 24816                                           bright
## 24817                                           bright
## 24818                                           bright
## 24819                                           bright
## 24820                                      brightasday
## 24821                                       brightness
## 24822                                            bring
## 24823                                            bring
## 24824                                            bring
## 24825                                            bring
## 24826                                            bring
## 24827                                            bring
## 24828                                            bring
## 24829                                            bring
## 24830                                            bring
## 24831                                            bring
## 24832                                            bring
## 24833                                            bring
## 24834                                            bring
## 24835                                            bring
## 24836                                            bring
## 24837                                            bring
## 24838                                            bring
## 24839                                            bring
## 24840                                            bring
## 24841                                            bring
## 24842                                            bring
## 24843                                            bring
## 24844                                            bring
## 24845                                            bring
## 24846                                            bring
## 24847                                            bring
## 24848                                            bring
## 24849                                            bring
## 24850                                            bring
## 24851                                            bring
## 24852                                            bring
## 24853                                            bring
## 24854                                            bring
## 24855                                            bring
## 24856                                            bring
## 24857                                            bring
## 24858                                            bring
## 24859                                            bring
## 24860                                            bring
## 24861                                            bring
## 24862                                            bring
## 24863                                            bring
## 24864                                            bring
## 24865                                            bring
## 24866                                            bring
## 24867                                            bring
## 24868                                            bring
## 24869                                            bring
## 24870                                            bring
## 24871                                            bring
## 24872                                            bring
## 24873                                            bring
## 24874                                            bring
## 24875                                            bring
## 24876                                            bring
## 24877                                            brisk
## 24878                                            brisk
## 24879                                          brisket
## 24880                                              bro
## 24881                                            broad
## 24882                                            broad
## 24883                                            broad
## 24884                                        broadcast
## 24885                                         broadway
## 24886                                         broccoli
## 24887                                          broiest
## 24888                                            bronx
## 24889                                            bronx
## 24890                                            bronx
## 24891                                            bronx
## 24892                                         brooklyn
## 24893                                         brooklyn
## 24894                                         brooklyn
## 24895                                         brooklyn
## 24896                                         brooklyn
## 24897                                         brooklyn
## 24898                                         brooklyn
## 24899                                         brooklyn
## 24900                                         brooklyn
## 24901                                         brooklyn
## 24902                                         brooklyn
## 24903                                         brooklyn
## 24904                                         brooklyn
## 24905                                         brooklyn
## 24906                                         brooklyn
## 24907                                         brooklyn
## 24908                                         brooklyn
## 24909                                             bros
## 24910                                            broth
## 24911                                          brother
## 24912                                          brother
## 24913                                          brother
## 24914                                          brother
## 24915                                          brother
## 24916                                          brother
## 24917                                          brother
## 24918                                          brother
## 24919                                          brother
## 24920                                          brother
## 24921                                          brother
## 24922                                          brother
## 24923                                          brother
## 24924                                          brother
## 24925                                          brother
## 24926                                          brother
## 24927                                          brother
## 24928                                          brother
## 24929                                          brother
## 24930                                          brother
## 24931                                          brother
## 24932                                          brother
## 24933                                          brother
## 24934                                          brother
## 24935                                          brother
## 24936                                          brother
## 24937                                        brotherly
## 24938                                            brown
## 24939                                            brown
## 24940                                            brown
## 24941                                            brown
## 24942                                            brown
## 24943                                            brown
## 24944                                            brown
## 24945                                       brownstone
## 24946                                       brownstone
## 24947                                           brunch
## 24948                                            brush
## 24949                                            brush
## 24950                                            brush
## 24951                                            brush
## 24952                                            brush
## 24953                                          brusque
## 24954                                          brusque
## 24955                                          brusque
## 24956                                          brusque
## 24957                                        brusquely
## 24958                                           brutal
## 24959                                           bsplus
## 24960                                              btw
## 24961                                              btw
## 24962                                              btw
## 24963                                              btw
## 24964                                              btw
## 24965                                              btw
## 24966                                              btw
## 24967                                              btw
## 24968                                              btw
## 24969                                              btw
## 24970                                              btw
## 24971                                              btw
## 24972                                              btw
## 24973                                              btw
## 24974                                              btw
## 24975                                              btw
## 24976                                             buck
## 24977                                             buck
## 24978                                             buck
## 24979                                             buck
## 24980                                             buck
## 24981                                             buck
## 24982                                             buck
## 24983                                             buck
## 24984                                             buck
## 24985                                             buck
## 24986                                             buck
## 24987                                             buck
## 24988                                             buck
## 24989                                             buck
## 24990                                             buck
## 24991                                             buck
## 24992                                             buck
## 24993                                             buck
## 24994                                             buck
## 24995                                             buck
## 24996                                             buck
## 24997                                             buck
## 24998                                             buck
## 24999                                             buck
## 25000                                             buck
## 25001                                             buck
## 25002                                             buck
## 25003                                             buck
## 25004                                             buck
## 25005                                             buck
## 25006                                             buck
## 25007                                             buck
## 25008                                             buck
## 25009                                             buck
## 25010                                             buck
## 25011                                             buck
## 25012                                             buck
## 25013                                             buck
## 25014                                             buck
## 25015                                             buck
## 25016                                             buck
## 25017                                             buck
## 25018                                             buck
## 25019                                             buck
## 25020                                             buck
## 25021                                       bucketlist
## 25022                                              bud
## 25023                                              bud
## 25024                                              bud
## 25025                                              bud
## 25026                                              bud
## 25027                                              bud
## 25028                                              bud
## 25029                                              bud
## 25030                                              bud
## 25031                                              bud
## 25032                                              bud
## 25033                                              bud
## 25034                                              bud
## 25035                                              bud
## 25036                                              bud
## 25037                                            buddy
## 25038                                            buddy
## 25039                                            buddy
## 25040                                            buddy
## 25041                                            buddy
## 25042                                            buddy
## 25043                                            buddy
## 25044                                            buddy
## 25045                                            buddy
## 25046                                            buddy
## 25047                                            buddy
## 25048                                            buddy
## 25049                                            buddy
## 25050                                            buddy
## 25051                                            buddy
## 25052                                            buddy
## 25053                                            buddy
## 25054                                            buddy
## 25055                                            buddy
## 25056                                            buddy
## 25057                                            buddy
## 25058                                            buddy
## 25059                                           budget
## 25060                                           budget
## 25061                                            bueno
## 25062                                          buffalo
## 25063                                          buffalo
## 25064                                           buffet
## 25065                                           buffet
## 25066                                           buford
## 25067                                              bug
## 25068                                              bug
## 25069                                              bug
## 25070                                              bug
## 25071                                              bug
## 25072                                              bug
## 25073                                              bug
## 25074                                              bug
## 25075                                              bug
## 25076                                            buggy
## 25077                                            buggy
## 25078                                            build
## 25079                                            build
## 25080                                            build
## 25081                                            build
## 25082                                            build
## 25083                                            build
## 25084                                            build
## 25085                                            build
## 25086                                            build
## 25087                                            build
## 25088                                            build
## 25089                                            build
## 25090                                            build
## 25091                                            build
## 25092                                            build
## 25093                                            build
## 25094                                            build
## 25095                                            build
## 25096                                            build
## 25097                                            build
## 25098                                            build
## 25099                                            build
## 25100                                            build
## 25101                                            build
## 25102                                            build
## 25103                                            build
## 25104                                            build
## 25105                                            build
## 25106                                            build
## 25107                                            build
## 25108                                            build
## 25109                                            build
## 25110                                            build
## 25111                                            build
## 25112                                            build
## 25113                                            build
## 25114                                            build
## 25115                                            build
## 25116                                            build
## 25117                                            build
## 25118                                            build
## 25119                                            build
## 25120                                            build
## 25121                                            build
## 25122                                            build
## 25123                                            build
## 25124                                            build
## 25125                                            build
## 25126                                            build
## 25127                                            build
## 25128                                            build
## 25129                                            build
## 25130                                            build
## 25131                                         building
## 25132                                         building
## 25133                                       buildingit
## 25134                                          buildup
## 25135                                             buis
## 25136                                             bulb
## 25137                                            bulge
## 25138                                            bulit
## 25139                                             bulk
## 25140                                            bulky
## 25141                                             bull
## 25142                                             bull
## 25143                                             bull
## 25144                                             bull
## 25145                                             bull
## 25146                                             bull
## 25147                                           bullet
## 25148                                         bullshit
## 25149                                         bullshit
## 25150                                         bullshit
## 25151                                         bullshit
## 25152                                         bullshit
## 25153                                            bully
## 25154                                              bum
## 25155                                              bum
## 25156                                           bummer
## 25157                                           bummer
## 25158                                             bump
## 25159                                             bump
## 25160                                           bumper
## 25161                                              bun
## 25162                                              bun
## 25163                                              bun
## 25164                                              bun
## 25165                                              bun
## 25166                                              bun
## 25167                                              bun
## 25168                                              bun
## 25169                                              bun
## 25170                                              bun
## 25171                                              bun
## 25172                                              bun
## 25173                                              bun
## 25174                                              bun
## 25175                                              bun
## 25176                                              bun
## 25177                                              bun
## 25178                                              bun
## 25179                                              bun
## 25180                                              bun
## 25181                                              bun
## 25182                                              bun
## 25183                                              bun
## 25184                                              bun
## 25185                                              bun
## 25186                                              bun
## 25187                                              bun
## 25188                                              bun
## 25189                                              bun
## 25190                                              bun
## 25191                                              bun
## 25192                                              bun
## 25193                                              bun
## 25194                                              bun
## 25195                                              bun
## 25196                                              bun
## 25197                                              bun
## 25198                                              bun
## 25199                                              bun
## 25200                                              bun
## 25201                                              bun
## 25202                                            bunch
## 25203                                            bunch
## 25204                                            bunch
## 25205                                            bunch
## 25206                                            bunch
## 25207                                            bunch
## 25208                                            bunch
## 25209                                            bunch
## 25210                                            bunch
## 25211                                            bunch
## 25212                                            bunch
## 25213                                            bunch
## 25214                                            bunch
## 25215                                            bunch
## 25216                                            bunch
## 25217                                            bunch
## 25218                                            bunch
## 25219                                            bunch
## 25220                                            bunch
## 25221                                            bunch
## 25222                                            bunch
## 25223                                            bunch
## 25224                                            bunch
## 25225                                        bunkeresq
## 25226                                          bunroll
## 25227                                        buntomeat
## 25228                                         bunwhats
## 25229                                           bupkis
## 25230                                            burbs
## 25231                                            burbs
## 25232                                           burger
## 25233                                          burgers
## 25234                                          burgers
## 25235                                             burn
## 25236                                             burn
## 25237                                             burn
## 25238                                             burn
## 25239                                             burn
## 25240                                             burn
## 25241                                             burn
## 25242                                             burn
## 25243                                             burn
## 25244                                             burn
## 25245                                             burn
## 25246                                             burn
## 25247                                             burn
## 25248                                             burn
## 25249                                          burrito
## 25250                                          burrito
## 25251                                          burrito
## 25252                                            burst
## 25253                                             bury
## 25254                                             bury
## 25255                                              bus
## 25256                                              bus
## 25257                                              bus
## 25258                                              bus
## 25259                                              bus
## 25260                                              bus
## 25261                                              bus
## 25262                                              bus
## 25263                                              bus
## 25264                                             bush
## 25265                                             bush
## 25266                                         business
## 25267                                         business
## 25268                                         business
## 25269                                         business
## 25270                                         business
## 25271                                         business
## 25272                                         business
## 25273                                         business
## 25274                                         business
## 25275                                         business
## 25276                                         business
## 25277                                         business
## 25278                                         business
## 25279                                         business
## 25280                                         business
## 25281                                         business
## 25282                                         business
## 25283                                         business
## 25284                                         business
## 25285                                         business
## 25286                                         business
## 25287                                         business
## 25288                                         business
## 25289                                         business
## 25290                                         business
## 25291                                         business
## 25292                                         business
## 25293                                         business
## 25294                                         business
## 25295                                         business
## 25296                                         business
## 25297                                         business
## 25298                                         business
## 25299                                         business
## 25300                                         business
## 25301                                         business
## 25302                                         business
## 25303                                         business
## 25304                                         business
## 25305                                         business
## 25306                                         business
## 25307                                         business
## 25308                                         business
## 25309                                         business
## 25310                                         business
## 25311                                         business
## 25312                                         business
## 25313                                         business
## 25314                                         business
## 25315                                         business
## 25316                                         business
## 25317                                         business
## 25318                                         business
## 25319                                         business
## 25320                                         business
## 25321                                         business
## 25322                                         business
## 25323                                         business
## 25324                                         business
## 25325                                         business
## 25326                                         business
## 25327                                         business
## 25328                                         business
## 25329                                         business
## 25330                                         business
## 25331                                         business
## 25332                                         business
## 25333                                         business
## 25334                                         business
## 25335                                         business
## 25336                                         business
## 25337                                         business
## 25338                                         business
## 25339                                         business
## 25340                                         business
## 25341                                         business
## 25342                                         business
## 25343                                         business
## 25344                                         business
## 25345                                         business
## 25346                                         business
## 25347                                         business
## 25348                                         business
## 25349                                         business
## 25350                                         business
## 25351                                         business
## 25352                                         business
## 25353                                         business
## 25354                                         business
## 25355                                         business
## 25356                                         business
## 25357                                         business
## 25358                                         business
## 25359                                         business
## 25360                                         business
## 25361                                         business
## 25362                                         business
## 25363                                         business
## 25364                                         business
## 25365                                  businessomgthis
## 25366                                             bust
## 25367                                             bust
## 25368                                             bust
## 25369                                             bust
## 25370                                             bust
## 25371                                       bustercant
## 25372                                           bustle
## 25373                                           bustle
## 25374                                           bustle
## 25375                                             busy
## 25376                                             busy
## 25377                                             busy
## 25378                                             busy
## 25379                                             busy
## 25380                                             busy
## 25381                                             busy
## 25382                                             busy
## 25383                                             busy
## 25384                                             busy
## 25385                                             busy
## 25386                                             busy
## 25387                                             busy
## 25388                                             busy
## 25389                                             busy
## 25390                                             busy
## 25391                                             busy
## 25392                                             busy
## 25393                                             busy
## 25394                                             busy
## 25395                                             busy
## 25396                                             busy
## 25397                                             busy
## 25398                                             busy
## 25399                                             busy
## 25400                                             busy
## 25401                                             busy
## 25402                                             busy
## 25403                                             busy
## 25404                                             busy
## 25405                                             busy
## 25406                                             busy
## 25407                                             busy
## 25408                                             busy
## 25409                                             busy
## 25410                                             busy
## 25411                                             buti
## 25412                                             buti
## 25413                                           butits
## 25414                                            butno
## 25415                                            butno
## 25416                                          butonly
## 25417                                         butquite
## 25418                                             butt
## 25419                                             butt
## 25420                                             butt
## 25421                                             butt
## 25422                                             butt
## 25423                                             butt
## 25424                                             butt
## 25425                                             butt
## 25426                                           butter
## 25427                                           butter
## 25428                                           butter
## 25429                                           butter
## 25430                                         butterly
## 25431                                          buttery
## 25432                                          buttery
## 25433                                          buttery
## 25434                                          buttery
## 25435                                          buttery
## 25436                                          buttery
## 25437                                       buttlicker
## 25438                                           button
## 25439                                        buttttttt
## 25440                                              bux
## 25441                                              buy
## 25442                                              buy
## 25443                                              buy
## 25444                                              buy
## 25445                                              buy
## 25446                                              buy
## 25447                                              buy
## 25448                                              buy
## 25449                                              buy
## 25450                                              buy
## 25451                                              buy
## 25452                                              buy
## 25453                                              buy
## 25454                                              buy
## 25455                                              buy
## 25456                                              buy
## 25457                                              buy
## 25458                                              buy
## 25459                                              buy
## 25460                                              buy
## 25461                                              buy
## 25462                                              buy
## 25463                                              buy
## 25464                                              buy
## 25465                                              buy
## 25466                                              buy
## 25467                                              buy
## 25468                                              buy
## 25469                                              buy
## 25470                                              buy
## 25471                                              buy
## 25472                                              buy
## 25473                                              buy
## 25474                                              buy
## 25475                                              buy
## 25476                                              buy
## 25477                                              buy
## 25478                                              buy
## 25479                                              buy
## 25480                                              buy
## 25481                                              buy
## 25482                                              buy
## 25483                                              buy
## 25484                                              buy
## 25485                                              buy
## 25486                                              buy
## 25487                                              buy
## 25488                                              buy
## 25489                                              buy
## 25490                                              buy
## 25491                                            buyer
## 25492                                             buzz
## 25493                                             buzz
## 25494                                             buzz
## 25495                                             buzz
## 25496                                             buzz
## 25497                                             buzz
## 25498                                               bv
## 25499                                              bws
## 25500                                              bye
## 25501                                           bypass
## 25502                                        byproduct
## 25503                                              bys
## 25504                                         bytheway
## 25505                                              byw
## 25506                                                c
## 25507                                                c
## 25508                                                c
## 25509                                                c
## 25510                                                c
## 25511                                                c
## 25512                                                c
## 25513                                                c
## 25514                                               ca
## 25515                                               ca
## 25516                                               ca
## 25517                                               ca
## 25518                                               ca
## 25519                                               ca
## 25520                                               ca
## 25521                                               ca
## 25522                                               ca
## 25523                                               ca
## 25524                                               ca
## 25525                                               ca
## 25526                                              cab
## 25527                                              cab
## 25528                                              cab
## 25529                                              cab
## 25530                                              cab
## 25531                                              cab
## 25532                                              cab
## 25533                                              cab
## 25534                                              cab
## 25535                                              cab
## 25536                                              cab
## 25537                                           cabbie
## 25538                                          cabbing
## 25539                                          cabinet
## 25540                                            cable
## 25541                                          caboose
## 25542                                          cadence
## 25543                                             cafe
## 25544                                             cafe
## 25545                                             cafe
## 25546                                             cafe
## 25547                                             cafe
## 25548                                             cafe
## 25549                                        cafeteria
## 25550                                        cafeteria
## 25551                                        cafeteria
## 25552                                        cafeteria
## 25553                                        cafeteria
## 25554                                        cafeteria
## 25555                                          caitlin
## 25556                                             cake
## 25557                                             cake
## 25558                                             cake
## 25559                                             cake
## 25560                                        calculate
## 25561                                             cali
## 25562                                             cali
## 25563                                             cali
## 25564                                             cali
## 25565                                             cali
## 25566                                             cali
## 25567                                             cali
## 25568                                             cali
## 25569                                             cali
## 25570                                             cali
## 25571                                             cali
## 25572                                          caliber
## 25573                                          caliber
## 25574                                       california
## 25575                                       california
## 25576                                       california
## 25577                                       california
## 25578                                       california
## 25579                                       california
## 25580                                       california
## 25581                                       california
## 25582                                       california
## 25583                                       california
## 25584                                       california
## 25585                                       california
## 25586                                       california
## 25587                                       california
## 25588                                       california
## 25589                                       california
## 25590                                       california
## 25591                                       california
## 25592                                       california
## 25593                                       california
## 25594                                       california
## 25595                                       california
## 25596                                       california
## 25597                                       california
## 25598                                       california
## 25599                                       california
## 25600                                       california
## 25601                                       california
## 25602                                       california
## 25603                                       california
## 25604                                       california
## 25605                                       california
## 25606                                       california
## 25607                                       california
## 25608                                      californian
## 25609                                             call
## 25610                                             call
## 25611                                             call
## 25612                                             call
## 25613                                             call
## 25614                                             call
## 25615                                             call
## 25616                                             call
## 25617                                             call
## 25618                                             call
## 25619                                             call
## 25620                                             call
## 25621                                             call
## 25622                                             call
## 25623                                             call
## 25624                                             call
## 25625                                             call
## 25626                                             call
## 25627                                             call
## 25628                                             call
## 25629                                             call
## 25630                                             call
## 25631                                             call
## 25632                                             call
## 25633                                             call
## 25634                                             call
## 25635                                             call
## 25636                                             call
## 25637                                             call
## 25638                                             call
## 25639                                             call
## 25640                                             call
## 25641                                             call
## 25642                                             call
## 25643                                             call
## 25644                                             call
## 25645                                             call
## 25646                                             call
## 25647                                             call
## 25648                                             call
## 25649                                             call
## 25650                                             call
## 25651                                             call
## 25652                                             call
## 25653                                             call
## 25654                                             call
## 25655                                             call
## 25656                                             call
## 25657                                             call
## 25658                                             call
## 25659                                             call
## 25660                                             calm
## 25661                                             calm
## 25662                                             calm
## 25663                                             calm
## 25664                                           calmly
## 25665                                          calorie
## 25666                                          calorie
## 25667                                          calorie
## 25668                                          calorie
## 25669                                          calorie
## 25670                                          calorie
## 25671                                    caloriefilled
## 25672                                      camaraderie
## 25673                                         cambodia
## 25674                                     camelization
## 25675                                           camera
## 25676                                           camera
## 25677                                             camp
## 25678                                             camp
## 25679                                         campaign
## 25680                                         campaign
## 25681                                           campos
## 25682                                           campos
## 25683                                           campos
## 25684                                           campos
## 25685                                           campos
## 25686                                           campos
## 25687                                           campus
## 25688                                              can
## 25689                                              can
## 25690                                              can
## 25691                                              can
## 25692                                              can
## 25693                                              can
## 25694                                              can
## 25695                                              can
## 25696                                              can
## 25697                                              can
## 25698                                              can
## 25699                                              can
## 25700                                              can
## 25701                                              can
## 25702                                              can
## 25703                                              can
## 25704                                              can
## 25705                                              can
## 25706                                              can
## 25707                                              can
## 25708                                              can
## 25709                                              can
## 25710                                              can
## 25711                                              can
## 25712                                              can
## 25713                                              can
## 25714                                              can
## 25715                                              can
## 25716                                              can
## 25717                                              can
## 25718                                              can
## 25719                                              can
## 25720                                              can
## 25721                                              can
## 25722                                              can
## 25723                                              can
## 25724                                              can
## 25725                                              can
## 25726                                              can
## 25727                                              can
## 25728                                              can
## 25729                                              can
## 25730                                              can
## 25731                                              can
## 25732                                              can
## 25733                                              can
## 25734                                              can
## 25735                                              can
## 25736                                              can
## 25737                                              can
## 25738                                              can
## 25739                                              can
## 25740                                              can
## 25741                                              can
## 25742                                              can
## 25743                                              can
## 25744                                              can
## 25745                                              can
## 25746                                              can
## 25747                                              can
## 25748                                              can
## 25749                                              can
## 25750                                              can
## 25751                                              can
## 25752                                              can
## 25753                                              can
## 25754                                              can
## 25755                                              can
## 25756                                              can
## 25757                                              can
## 25758                                              can
## 25759                                              can
## 25760                                              can
## 25761                                              can
## 25762                                              can
## 25763                                              can
## 25764                                              can
## 25765                                              can
## 25766                                              can
## 25767                                              can
## 25768                                              can
## 25769                                              can
## 25770                                              can
## 25771                                              can
## 25772                                              can
## 25773                                              can
## 25774                                              can
## 25775                                              can
## 25776                                              can
## 25777                                              can
## 25778                                              can
## 25779                                              can
## 25780                                              can
## 25781                                              can
## 25782                                              can
## 25783                                              can
## 25784                                              can
## 25785                                              can
## 25786                                              can
## 25787                                              can
## 25788                                              can
## 25789                                              can
## 25790                                              can
## 25791                                              can
## 25792                                              can
## 25793                                              can
## 25794                                              can
## 25795                                              can
## 25796                                              can
## 25797                                              can
## 25798                                              can
## 25799                                              can
## 25800                                              can
## 25801                                              can
## 25802                                              can
## 25803                                              can
## 25804                                              can
## 25805                                              can
## 25806                                              can
## 25807                                              can
## 25808                                              can
## 25809                                              can
## 25810                                              can
## 25811                                              can
## 25812                                              can
## 25813                                              can
## 25814                                              can
## 25815                                              can
## 25816                                              can
## 25817                                              can
## 25818                                              can
## 25819                                              can
## 25820                                              can
## 25821                                              can
## 25822                                              can
## 25823                                              can
## 25824                                              can
## 25825                                              can
## 25826                                              can
## 25827                                              can
## 25828                                              can
## 25829                                              can
## 25830                                              can
## 25831                                              can
## 25832                                              can
## 25833                                              can
## 25834                                              can
## 25835                                              can
## 25836                                              can
## 25837                                              can
## 25838                                              can
## 25839                                              can
## 25840                                              can
## 25841                                              can
## 25842                                              can
## 25843                                              can
## 25844                                              can
## 25845                                              can
## 25846                                              can
## 25847                                              can
## 25848                                              can
## 25849                                              can
## 25850                                              can
## 25851                                              can
## 25852                                              can
## 25853                                         canadian
## 25854                                           cancel
## 25855                                     cancellation
## 25856                                           cancer
## 25857                                           candle
## 25858                                           candle
## 25859                                            candy
## 25860                                            candy
## 25861                                            candy
## 25862                                        cannedjar
## 25863                                          cannoli
## 25864                                          cannoli
## 25865                                          cannoli
## 25866                                         cannolis
## 25867                                           cannon
## 25868                                           canoli
## 25869                                           canopy
## 25870                                           canopy
## 25871                                             cant
## 25872                                             cant
## 25873                                             cant
## 25874                                             cant
## 25875                                             cant
## 25876                                             cant
## 25877                                             cant
## 25878                                             cant
## 25879                                             cant
## 25880                                             cant
## 25881                                             cant
## 25882                                             cant
## 25883                                             cant
## 25884                                             cant
## 25885                                             cant
## 25886                                             cant
## 25887                                             cant
## 25888                                             cant
## 25889                                             cant
## 25890                                             cant
## 25891                                             cant
## 25892                                             cant
## 25893                                             cant
## 25894                                             cant
## 25895                                             cant
## 25896                                             cant
## 25897                                             cant
## 25898                                             cant
## 25899                                             cant
## 25900                                             cant
## 25901                                             cant
## 25902                                             cant
## 25903                                             cant
## 25904                                             cant
## 25905                                             cant
## 25906                                             cant
## 25907                                             cant
## 25908                                             cant
## 25909                                             cant
## 25910                                             cant
## 25911                                             cant
## 25912                                             cant
## 25913                                             cant
## 25914                                             cant
## 25915                                             cant
## 25916                                             cant
## 25917                                             cant
## 25918                                             cant
## 25919                                             cant
## 25920                                             cant
## 25921                                             cant
## 25922                                             cant
## 25923                                             cant
## 25924                                             cant
## 25925                                             cant
## 25926                                             cant
## 25927                                             cant
## 25928                                             cant
## 25929                                             cant
## 25930                                             cant
## 25931                                             cant
## 25932                                             cant
## 25933                                             cant
## 25934                                             cant
## 25935                                           canvas
## 25936                                          canvass
## 25937                                          canvass
## 25938                                              cap
## 25939                                         capacity
## 25940                                         capacity
## 25941                                         capacity
## 25942                                          capital
## 25943                                          capital
## 25944                                       capitalism
## 25945                                          capture
## 25946                                          capture
## 25947                                              car
## 25948                                              car
## 25949                                              car
## 25950                                              car
## 25951                                              car
## 25952                                              car
## 25953                                              car
## 25954                                              car
## 25955                                              car
## 25956                                              car
## 25957                                              car
## 25958                                              car
## 25959                                              car
## 25960                                              car
## 25961                                              car
## 25962                                              car
## 25963                                              car
## 25964                                              car
## 25965                                              car
## 25966                                              car
## 25967                                              car
## 25968                                              car
## 25969                                              car
## 25970                                              car
## 25971                                              car
## 25972                                              car
## 25973                                              car
## 25974                                              car
## 25975                                              car
## 25976                                              car
## 25977                                              car
## 25978                                              car
## 25979                                              car
## 25980                                              car
## 25981                                              car
## 25982                                   caramelization
## 25983                                       caramelize
## 25984                                       caramelize
## 25985                                      caramelized
## 25986                                      caramelized
## 25987                                      caramelized
## 25988                                      caramelized
## 25989                                      caramelized
## 25990                                      caramelizes
## 25991                                     caramelizing
## 25992                                             carb
## 25993                                       carboholic
## 25994                                        carbonate
## 25995                                      carbonation
## 25996                                            carbs
## 25997                                            carbs
## 25998                                         carcause
## 25999                                             card
## 26000                                             card
## 26001                                             card
## 26002                                             card
## 26003                                             card
## 26004                                             card
## 26005                                             card
## 26006                                             card
## 26007                                             card
## 26008                                             card
## 26009                                             card
## 26010                                             card
## 26011                                             card
## 26012                                             card
## 26013                                             card
## 26014                                             card
## 26015                                             card
## 26016                                             card
## 26017                                             card
## 26018                                             card
## 26019                                             card
## 26020                                             card
## 26021                                             card
## 26022                                             card
## 26023                                             card
## 26024                                             card
## 26025                                             card
## 26026                                             card
## 26027                                             card
## 26028                                             card
## 26029                                             card
## 26030                                             card
## 26031                                             card
## 26032                                             card
## 26033                                        cardboard
## 26034                                        cardboard
## 26035                                        cardboard
## 26036                                        cardboard
## 26037                                        cardboard
## 26038                                        cardboard
## 26039                                        cardboard
## 26040                                        cardboard
## 26041                                        cardboard
## 26042                                        cardboard
## 26043                                        cardboard
## 26044                                        cardboard
## 26045                                        cardboard
## 26046                                        cardboard
## 26047                                        cardboard
## 26048                                        cardboard
## 26049                                        cardboard
## 26050                                        cardboard
## 26051                                        cardboard
## 26052                                        cardboard
## 26053                                        cardboard
## 26054                                         cardinal
## 26055                                         cardinal
## 26056                                           cardno
## 26057                                             care
## 26058                                             care
## 26059                                             care
## 26060                                             care
## 26061                                             care
## 26062                                             care
## 26063                                             care
## 26064                                             care
## 26065                                             care
## 26066                                             care
## 26067                                             care
## 26068                                             care
## 26069                                             care
## 26070                                             care
## 26071                                             care
## 26072                                             care
## 26073                                             care
## 26074                                             care
## 26075                                             care
## 26076                                             care
## 26077                                             care
## 26078                                             care
## 26079                                             care
## 26080                                             care
## 26081                                             care
## 26082                                             care
## 26083                                             care
## 26084                                             care
## 26085                                             care
## 26086                                             care
## 26087                                             care
## 26088                                             care
## 26089                                             care
## 26090                                             care
## 26091                                             care
## 26092                                             care
## 26093                                             care
## 26094                                             care
## 26095                                             care
## 26096                                             care
## 26097                                             care
## 26098                                             care
## 26099                                             care
## 26100                                             care
## 26101                                             care
## 26102                                             care
## 26103                                             care
## 26104                                             care
## 26105                                             care
## 26106                                             care
## 26107                                             care
## 26108                                             care
## 26109                                             care
## 26110                                             care
## 26111                                             care
## 26112                                             care
## 26113                                             care
## 26114                                             care
## 26115                                             care
## 26116                                             care
## 26117                                          careful
## 26118                                          careful
## 26119                                          careful
## 26120                                          careful
## 26121                                          careful
## 26122                                          careful
## 26123                                          careful
## 26124                                          careful
## 26125                                          careful
## 26126                                          careful
## 26127                                          careful
## 26128                                        carefully
## 26129                                        carefully
## 26130                                         careless
## 26131                                         careless
## 26132                                       carepeople
## 26133                                           caresi
## 26134                                          carethe
## 26135                                        caribbean
## 26136                                        caribbean
## 26137                                        caribbean
## 26138                                             carl
## 26139                                            carls
## 26140                                            carls
## 26141                                            carls
## 26142                                       carmalized
## 26143                                       carmelized
## 26144                                       carmelized
## 26145                                       carmelized
## 26146                                          carmens
## 26147                                          carmens
## 26148                                          carmens
## 26149                                          carmens
## 26150                                         carmines
## 26151                                            carne
## 26152                                           carnie
## 26153                                           carnie
## 26154                                         carnival
## 26155                                         carnival
## 26156                                         carnival
## 26157                                         carnival
## 26158                                         carnival
## 26159                                        carnivore
## 26160                                        carnivore
## 26161                                         carolina
## 26162                                         carolina
## 26163                                          carouse
## 26164                                           carpet
## 26165                                     carpetbagger
## 26166                                            carry
## 26167                                            carry
## 26168                                            carry
## 26169                                            carry
## 26170                                            carry
## 26171                                            carry
## 26172                                            carry
## 26173                                         carryout
## 26174                                         carryout
## 26175                                        carryouts
## 26176                                             cart
## 26177                                             cart
## 26178                                             cart
## 26179                                             cart
## 26180                                             cart
## 26181                                             cart
## 26182                                             cart
## 26183                                             cart
## 26184                                             cart
## 26185                                             cart
## 26186                                             cart
## 26187                                             cart
## 26188                                            carte
## 26189                                            carve
## 26190                                             case
## 26191                                             case
## 26192                                             case
## 26193                                             case
## 26194                                             case
## 26195                                             case
## 26196                                             case
## 26197                                             case
## 26198                                             case
## 26199                                             case
## 26200                                             case
## 26201                                             case
## 26202                                             case
## 26203                                             case
## 26204                                             case
## 26205                                             case
## 26206                                             case
## 26207                                             case
## 26208                                             case
## 26209                                             case
## 26210                                             case
## 26211                                             case
## 26212                                             case
## 26213                                             case
## 26214                                             case
## 26215                                             case
## 26216                                             case
## 26217                                             cash
## 26218                                             cash
## 26219                                             cash
## 26220                                             cash
## 26221                                             cash
## 26222                                             cash
## 26223                                             cash
## 26224                                             cash
## 26225                                             cash
## 26226                                             cash
## 26227                                             cash
## 26228                                             cash
## 26229                                             cash
## 26230                                             cash
## 26231                                             cash
## 26232                                             cash
## 26233                                             cash
## 26234                                             cash
## 26235                                             cash
## 26236                                             cash
## 26237                                             cash
## 26238                                             cash
## 26239                                             cash
## 26240                                             cash
## 26241                                             cash
## 26242                                             cash
## 26243                                             cash
## 26244                                             cash
## 26245                                             cash
## 26246                                             cash
## 26247                                             cash
## 26248                                             cash
## 26249                                             cash
## 26250                                             cash
## 26251                                             cash
## 26252                                             cash
## 26253                                             cash
## 26254                                             cash
## 26255                                             cash
## 26256                                             cash
## 26257                                             cash
## 26258                                             cash
## 26259                                             cash
## 26260                                             cash
## 26261                                             cash
## 26262                                             cash
## 26263                                             cash
## 26264                                             cash
## 26265                                             cash
## 26266                                             cash
## 26267                                             cash
## 26268                                             cash
## 26269                                             cash
## 26270                                             cash
## 26271                                             cash
## 26272                                             cash
## 26273                                             cash
## 26274                                             cash
## 26275                                             cash
## 26276                                             cash
## 26277                                             cash
## 26278                                             cash
## 26279                                             cash
## 26280                                             cash
## 26281                                             cash
## 26282                                             cash
## 26283                                             cash
## 26284                                             cash
## 26285                                             cash
## 26286                                             cash
## 26287                                             cash
## 26288                                             cash
## 26289                                             cash
## 26290                                             cash
## 26291                                             cash
## 26292                                             cash
## 26293                                             cash
## 26294                                             cash
## 26295                                             cash
## 26296                                             cash
## 26297                                             cash
## 26298                                             cash
## 26299                                             cash
## 26300                                             cash
## 26301                                             cash
## 26302                                             cash
## 26303                                             cash
## 26304                                             cash
## 26305                                             cash
## 26306                                             cash
## 26307                                             cash
## 26308                                             cash
## 26309                                             cash
## 26310                                             cash
## 26311                                             cash
## 26312                                             cash
## 26313                                             cash
## 26314                                             cash
## 26315                                             cash
## 26316                                             cash
## 26317                                             cash
## 26318                                             cash
## 26319                                             cash
## 26320                                             cash
## 26321                                             cash
## 26322                                             cash
## 26323                                             cash
## 26324                                             cash
## 26325                                             cash
## 26326                                             cash
## 26327                                             cash
## 26328                                             cash
## 26329                                             cash
## 26330                                             cash
## 26331                                             cash
## 26332                                             cash
## 26333                                             cash
## 26334                                             cash
## 26335                                             cash
## 26336                                             cash
## 26337                                             cash
## 26338                                             cash
## 26339                                             cash
## 26340                                             cash
## 26341                                             cash
## 26342                                             cash
## 26343                                             cash
## 26344                                             cash
## 26345                                             cash
## 26346                                             cash
## 26347                                             cash
## 26348                                             cash
## 26349                                             cash
## 26350                                             cash
## 26351                                             cash
## 26352                                             cash
## 26353                                             cash
## 26354                                          cashand
## 26355                                          cashier
## 26356                                          cashier
## 26357                                          cashier
## 26358                                          cashier
## 26359                                          cashier
## 26360                                          cashier
## 26361                                          cashier
## 26362                                          cashier
## 26363                                          cashier
## 26364                                          cashier
## 26365                                          cashier
## 26366                                          cashier
## 26367                                          cashier
## 26368                                          cashier
## 26369                                          cashier
## 26370                                          cashier
## 26371                                          cashier
## 26372                                          cashier
## 26373                                          cashier
## 26374                                          cashier
## 26375                                          cashier
## 26376                                          cashier
## 26377                                          cashier
## 26378                                          cashier
## 26379                                          cashier
## 26380                                          cashier
## 26381                                          cashier
## 26382                                          cashier
## 26383                                          cashier
## 26384                                          cashier
## 26385                                          cashier
## 26386                                          cashier
## 26387                                          cashier
## 26388                                          cashier
## 26389                                          cashier
## 26390                                     cashierfolks
## 26391                                    cashierscooks
## 26392                                         cashonly
## 26393                                         cashonly
## 26394                                         cashonly
## 26395                                         cashonly
## 26396                                         cashonly
## 26397                                           casino
## 26398                                           casino
## 26399                                           casino
## 26400                                           casino
## 26401                                           casino
## 26402                                           casino
## 26403                                             cast
## 26404                                             cast
## 26405                                             cast
## 26406                                             cast
## 26407                                             cast
## 26408                                           casted
## 26409                                           castle
## 26410                                           castle
## 26411                                           castle
## 26412                                           castle
## 26413                                           castor
## 26414                                         castrate
## 26415                                           casual
## 26416                                           casual
## 26417                                           casual
## 26418                                           casual
## 26419                                           casual
## 26420                                           casual
## 26421                                           casual
## 26422                                           casual
## 26423                                              cat
## 26424                                              cat
## 26425                                              cat
## 26426                                            catch
## 26427                                            catch
## 26428                                            catch
## 26429                                            catch
## 26430                                            catch
## 26431                                            catch
## 26432                                            catch
## 26433                                            catch
## 26434                                            catch
## 26435                                            catch
## 26436                                            catch
## 26437                                            catch
## 26438                                            catch
## 26439                                            catch
## 26440                                            catch
## 26441                                            catch
## 26442                                            catch
## 26443                                            catch
## 26444                                            catch
## 26445                                         category
## 26446                                         category
## 26447                                         category
## 26448                                         category
## 26449                                         category
## 26450                                            cater
## 26451                                            cater
## 26452                                            cater
## 26453                                         catholic
## 26454                                           cattle
## 26455                                           cattle
## 26456                                            catty
## 26457                                        caucasian
## 26458                                        caucasian
## 26459                                        caucasian
## 26460                                            cause
## 26461                                            cause
## 26462                                            cause
## 26463                                            cause
## 26464                                            cause
## 26465                                            cause
## 26466                                            cause
## 26467                                            cause
## 26468                                            cause
## 26469                                            cause
## 26470                                            cause
## 26471                                            cause
## 26472                                            cause
## 26473                                            cause
## 26474                                            cause
## 26475                                            cause
## 26476                                            cause
## 26477                                            cause
## 26478                                            cause
## 26479                                            cause
## 26480                                            cause
## 26481                                            cause
## 26482                                            cause
## 26483                                            cause
## 26484                                            cause
## 26485                                            cause
## 26486                                            cause
## 26487                                            cause
## 26488                                            cause
## 26489                                            cause
## 26490                                            cause
## 26491                                            cause
## 26492                                            cause
## 26493                                            cause
## 26494                                            cause
## 26495                                            cause
## 26496                                            cause
## 26497                                            cause
## 26498                                            cause
## 26499                                            cause
## 26500                                            cause
## 26501                                            cause
## 26502                                            cause
## 26503                                            cause
## 26504                                       causegenos
## 26505                                          caution
## 26506                                          caution
## 26507                                           caviar
## 26508                                               cc
## 26509                                            cease
## 26510                                             ceil
## 26511                                             ceil
## 26512                                             ceil
## 26513                                             ceil
## 26514                                          ceiling
## 26515                                            celeb
## 26516                                            celeb
## 26517                                            celeb
## 26518                                        celebrate
## 26519                                        celebrate
## 26520                                        celebrate
## 26521                                        celebrity
## 26522                                        celebrity
## 26523                                        celebrity
## 26524                                        celebrity
## 26525                                        celebrity
## 26526                                        celebrity
## 26527                                        celebrity
## 26528                                        celebrity
## 26529                                        celebrity
## 26530                                        celebrity
## 26531                                        celebrity
## 26532                                        celebrity
## 26533                                        celebrity
## 26534                                        celebrity
## 26535                                        celebrity
## 26536                                        celebrity
## 26537                                        celebrity
## 26538                                        celebrity
## 26539                                        celebrity
## 26540                                        celebrity
## 26541                                celebrityemployee
## 26542                                           celebs
## 26543                                           celebs
## 26544                                           celebs
## 26545                                           celebs
## 26546                                           celebs
## 26547                                           celebs
## 26548                                           celebs
## 26549                                           celebs
## 26550                                           celina
## 26551                                        cellulose
## 26552                                           cement
## 26553                                           cement
## 26554                                           cement
## 26555                                         cemetary
## 26556                                             cent
## 26557                                             cent
## 26558                                             cent
## 26559                                             cent
## 26560                                             cent
## 26561                                             cent
## 26562                                             cent
## 26563                                             cent
## 26564                                             cent
## 26565                                             cent
## 26566                                             cent
## 26567                                             cent
## 26568                                             cent
## 26569                                           center
## 26570                                           center
## 26571                                           center
## 26572                                           center
## 26573                                           center
## 26574                                           center
## 26575                                           center
## 26576                                           center
## 26577                                           center
## 26578                                           center
## 26579                                           center
## 26580                                           center
## 26581                                           center
## 26582                                           center
## 26583                                           center
## 26584                                           center
## 26585                                           center
## 26586                                          century
## 26587                                          century
## 26588                                          century
## 26589                                          century
## 26590                                          century
## 26591                                          century
## 26592                                          century
## 26593                                          century
## 26594                                          certain
## 26595                                          certain
## 26596                                          certain
## 26597                                          certain
## 26598                                          certain
## 26599                                          certain
## 26600                                        certainly
## 26601                                        certainly
## 26602                                        certainly
## 26603                                        certainly
## 26604                                        certainly
## 26605                                        certainly
## 26606                                        certainly
## 26607                                        certainly
## 26608                                        certainly
## 26609                                        certainly
## 26610                                        certainly
## 26611                                        certainly
## 26612                                        certainly
## 26613                                        certainly
## 26614                                        certainly
## 26615                                        certainly
## 26616                                        certainly
## 26617                                        certainly
## 26618                                        certainly
## 26619                                        certainly
## 26620                                        certainly
## 26621                                        certainly
## 26622                                        certainly
## 26623                                        certainly
## 26624                                        certainly
## 26625                                        certainly
## 26626                                        certainly
## 26627                                        certainly
## 26628                                        certainly
## 26629                                        certainly
## 26630                                        certainly
## 26631                                        certainly
## 26632                                        certainly
## 26633                                        certainly
## 26634                                        certainty
## 26635                                          certify
## 26636                                         cesspool
## 26637                                               ch
## 26638                                               ch
## 26639                                          chagrin
## 26640                                            chain
## 26641                                            chain
## 26642                                            chain
## 26643                                            chain
## 26644                                            chain
## 26645                                            chain
## 26646                                            chain
## 26647                                            chain
## 26648                                            chain
## 26649                                            chain
## 26650                                            chain
## 26651                                            chain
## 26652                                  chainrestaurant
## 26653                                            chair
## 26654                                        challenge
## 26655                                        challenge
## 26656                                        challenge
## 26657                                        challenge
## 26658                                        challenge
## 26659                                        challenge
## 26660                                        challenge
## 26661                                        challenge
## 26662                                        challenge
## 26663                                        challenge
## 26664                                        challenge
## 26665                                        challenge
## 26666                                        challenge
## 26667                                        challenge
## 26668                                        challenge
## 26669                                        challenge
## 26670                                        challenge
## 26671                                        challenge
## 26672                                        challenge
## 26673                                        challenge
## 26674                                        challenge
## 26675                                        challenge
## 26676                                        challenge
## 26677                                        challenge
## 26678                                        challenge
## 26679                                        challenge
## 26680                                        challenge
## 26681                                        challenge
## 26682                                        challenge
## 26683                                        challenge
## 26684                                        challenge
## 26685                                        challenge
## 26686                                        challenge
## 26687                                        challenge
## 26688                                        challenge
## 26689                                        challenge
## 26690                                        challenge
## 26691                                        challenge
## 26692                                        challenge
## 26693                                        challenge
## 26694                                        challenge
## 26695                                challengehorrible
## 26696                                            champ
## 26697                                     champagneits
## 26698                                         champion
## 26699                                     championship
## 26700                                           chance
## 26701                                           chance
## 26702                                           chance
## 26703                                           chance
## 26704                                           chance
## 26705                                           chance
## 26706                                           chance
## 26707                                           chance
## 26708                                           chance
## 26709                                           chance
## 26710                                           chance
## 26711                                           chance
## 26712                                           chance
## 26713                                           chance
## 26714                                           chance
## 26715                                           chance
## 26716                                           chance
## 26717                                           chance
## 26718                                           chance
## 26719                                           chance
## 26720                                           chance
## 26721                                           chance
## 26722                                           chance
## 26723                                           chance
## 26724                                           chance
## 26725                                           chance
## 26726                                           chance
## 26727                                           chance
## 26728                                           chance
## 26729                                           chanel
## 26730                                           change
## 26731                                           change
## 26732                                           change
## 26733                                           change
## 26734                                           change
## 26735                                           change
## 26736                                           change
## 26737                                           change
## 26738                                           change
## 26739                                           change
## 26740                                           change
## 26741                                           change
## 26742                                           change
## 26743                                           change
## 26744                                           change
## 26745                                           change
## 26746                                           change
## 26747                                           change
## 26748                                           change
## 26749                                           change
## 26750                                           change
## 26751                                           change
## 26752                                           change
## 26753                                           change
## 26754                                           change
## 26755                                           change
## 26756                                           change
## 26757                                           change
## 26758                                           change
## 26759                                           change
## 26760                                           change
## 26761                                           change
## 26762                                           change
## 26763                                           change
## 26764                                           change
## 26765                                           change
## 26766                                           change
## 26767                                          channel
## 26768                                          channel
## 26769                                          channel
## 26770                                          channel
## 26771                                          channel
## 26772                                          channel
## 26773                                          channel
## 26774                                          channel
## 26775                                          channel
## 26776                                          channel
## 26777                                          channel
## 26778                                          channel
## 26779                                          channel
## 26780                                          channel
## 26781                                          channel
## 26782                                          channel
## 26783                                          channel
## 26784                                          channel
## 26785                                          channel
## 26786                                          channel
## 26787                                          channel
## 26788                                          channel
## 26789                                          channel
## 26790                                          channel
## 26791                                      channellets
## 26792                                       channelyou
## 26793                                            chaos
## 26794                                            chaos
## 26795                                            chaos
## 26796                                          chaotic
## 26797                                           chapel
## 26798                                        character
## 26799                                        character
## 26800                                        character
## 26801                                        character
## 26802                                        character
## 26803                                        character
## 26804                                        character
## 26805                                        character
## 26806                                        character
## 26807                                        character
## 26808                                   characteristic
## 26809                                           charge
## 26810                                           charge
## 26811                                           charge
## 26812                                           charge
## 26813                                           charge
## 26814                                           charge
## 26815                                           charge
## 26816                                           charge
## 26817                                           charge
## 26818                                           charge
## 26819                                           charge
## 26820                                           charge
## 26821                                           charge
## 26822                                           charge
## 26823                                           charge
## 26824                                           charge
## 26825                                           charge
## 26826                                           charge
## 26827                                           charge
## 26828                                           charge
## 26829                                           charge
## 26830                                           charge
## 26831                                           charge
## 26832                                           charge
## 26833                                           charge
## 26834                                           charge
## 26835                                           charge
## 26836                                           charge
## 26837                                           charge
## 26838                                           charge
## 26839                                           charge
## 26840                                           charge
## 26841                                       charitable
## 26842                                         charleys
## 26843                                         charleys
## 26844                                         charlies
## 26845                                  charlottesville
## 26846                                            charm
## 26847                                            charm
## 26848                                            charm
## 26849                                            charm
## 26850                                            charm
## 26851                                            charm
## 26852                                            charm
## 26853                                          charmer
## 26854                                            chart
## 26855                                            chase
## 26856                                            chase
## 26857                                         chastise
## 26858                                             chat
## 26859                                             chat
## 26860                                             chat
## 26861                                             chat
## 26862                                          chatter
## 26863                                          chattin
## 26864                                            cheap
## 26865                                            cheap
## 26866                                            cheap
## 26867                                            cheap
## 26868                                            cheap
## 26869                                            cheap
## 26870                                            cheap
## 26871                                            cheap
## 26872                                            cheap
## 26873                                            cheap
## 26874                                            cheap
## 26875                                            cheap
## 26876                                            cheap
## 26877                                            cheap
## 26878                                            cheap
## 26879                                            cheap
## 26880                                            cheap
## 26881                                            cheap
## 26882                                            cheap
## 26883                                            cheap
## 26884                                            cheap
## 26885                                            cheap
## 26886                                            cheap
## 26887                                            cheap
## 26888                                            cheap
## 26889                                            cheap
## 26890                                            cheap
## 26891                                            cheap
## 26892                                            cheap
## 26893                                            cheap
## 26894                                            cheap
## 26895                                            cheap
## 26896                                            cheap
## 26897                                            cheap
## 26898                                            cheap
## 26899                                            cheap
## 26900                                            cheap
## 26901                                            cheap
## 26902                                            cheap
## 26903                                            cheap
## 26904                                            cheap
## 26905                                            cheap
## 26906                                            cheap
## 26907                                            cheap
## 26908                                            cheap
## 26909                                            cheap
## 26910                                            cheap
## 26911                                          cheapen
## 26912                                      cheasesteak
## 26913                                      cheasesteak
## 26914                                        cheasteak
## 26915                                            cheat
## 26916                                            cheat
## 26917                                            cheat
## 26918                                            cheat
## 26919                                            cheat
## 26920                                            check
## 26921                                            check
## 26922                                            check
## 26923                                            check
## 26924                                            check
## 26925                                            check
## 26926                                            check
## 26927                                            check
## 26928                                            check
## 26929                                            check
## 26930                                            check
## 26931                                            check
## 26932                                            check
## 26933                                            check
## 26934                                            check
## 26935                                            check
## 26936                                            check
## 26937                                            check
## 26938                                            check
## 26939                                            check
## 26940                                            check
## 26941                                            check
## 26942                                            check
## 26943                                            check
## 26944                                            check
## 26945                                            check
## 26946                                            check
## 26947                                            check
## 26948                                            check
## 26949                                            check
## 26950                                            check
## 26951                                            check
## 26952                                            check
## 26953                                            check
## 26954                                            check
## 26955                                            check
## 26956                                            check
## 26957                                            check
## 26958                                            check
## 26959                                            check
## 26960                                            check
## 26961                                            check
## 26962                                            check
## 26963                                            check
## 26964                                            check
## 26965                                            check
## 26966                                            check
## 26967                                            check
## 26968                                            check
## 26969                                            check
## 26970                                            check
## 26971                                            check
## 26972                                            check
## 26973                                            check
## 26974                                            check
## 26975                                            check
## 26976                                            check
## 26977                                            check
## 26978                                            check
## 26979                                            check
## 26980                                            check
## 26981                                            check
## 26982                                            check
## 26983                                            check
## 26984                                            check
## 26985                                          checker
## 26986                                          checker
## 26987                                          checker
## 26988                                          cheddar
## 26989                                          cheddar
## 26990                                          cheddar
## 26991                                          cheddar
## 26992                                          chedder
## 26993                                          cheeese
## 26994                                     cheeesesteak
## 26995                                     cheeesesteak
## 26996                                            cheek
## 26997                                          cheeper
## 26998                                            cheer
## 26999                                            cheer
## 27000                                         cheerful
## 27001                                           cheery
## 27002                                            chees
## 27003                                      cheesburger
## 27004                                           cheese
## 27005                                           cheese
## 27006                                           cheese
## 27007                                           cheese
## 27008                                           cheese
## 27009                                           cheese
## 27010                                           cheese
## 27011                                           cheese
## 27012                                           cheese
## 27013                                           cheese
## 27014                                           cheese
## 27015                                           cheese
## 27016                                           cheese
## 27017                                           cheese
## 27018                                           cheese
## 27019                                           cheese
## 27020                                           cheese
## 27021                                           cheese
## 27022                                           cheese
## 27023                                           cheese
## 27024                                           cheese
## 27025                                           cheese
## 27026                                           cheese
## 27027                                           cheese
## 27028                                           cheese
## 27029                                           cheese
## 27030                                           cheese
## 27031                                           cheese
## 27032                                           cheese
## 27033                                           cheese
## 27034                                           cheese
## 27035                                           cheese
## 27036                                           cheese
## 27037                                           cheese
## 27038                                           cheese
## 27039                                           cheese
## 27040                                           cheese
## 27041                                           cheese
## 27042                                           cheese
## 27043                                           cheese
## 27044                                           cheese
## 27045                                           cheese
## 27046                                           cheese
## 27047                                           cheese
## 27048                                           cheese
## 27049                                           cheese
## 27050                                           cheese
## 27051                                           cheese
## 27052                                           cheese
## 27053                                           cheese
## 27054                                           cheese
## 27055                                           cheese
## 27056                                           cheese
## 27057                                           cheese
## 27058                                           cheese
## 27059                                           cheese
## 27060                                           cheese
## 27061                                           cheese
## 27062                                           cheese
## 27063                                           cheese
## 27064                                           cheese
## 27065                                           cheese
## 27066                                           cheese
## 27067                                           cheese
## 27068                                           cheese
## 27069                                           cheese
## 27070                                           cheese
## 27071                                           cheese
## 27072                                           cheese
## 27073                                           cheese
## 27074                                           cheese
## 27075                                           cheese
## 27076                                           cheese
## 27077                                           cheese
## 27078                                           cheese
## 27079                                           cheese
## 27080                                           cheese
## 27081                                           cheese
## 27082                                           cheese
## 27083                                           cheese
## 27084                                           cheese
## 27085                                           cheese
## 27086                                           cheese
## 27087                                           cheese
## 27088                                           cheese
## 27089                                           cheese
## 27090                                           cheese
## 27091                                           cheese
## 27092                                           cheese
## 27093                                           cheese
## 27094                                           cheese
## 27095                                           cheese
## 27096                                           cheese
## 27097                                           cheese
## 27098                                           cheese
## 27099                                           cheese
## 27100                                           cheese
## 27101                                           cheese
## 27102                                           cheese
## 27103                                           cheese
## 27104                                           cheese
## 27105                                           cheese
## 27106                                           cheese
## 27107                                           cheese
## 27108                                           cheese
## 27109                                           cheese
## 27110                                           cheese
## 27111                                           cheese
## 27112                                           cheese
## 27113                                           cheese
## 27114                                           cheese
## 27115                                           cheese
## 27116                                           cheese
## 27117                                           cheese
## 27118                                           cheese
## 27119                                           cheese
## 27120                                           cheese
## 27121                                           cheese
## 27122                                           cheese
## 27123                                           cheese
## 27124                                           cheese
## 27125                                           cheese
## 27126                                           cheese
## 27127                                           cheese
## 27128                                           cheese
## 27129                                           cheese
## 27130                                           cheese
## 27131                                           cheese
## 27132                                           cheese
## 27133                                           cheese
## 27134                                           cheese
## 27135                                           cheese
## 27136                                           cheese
## 27137                                           cheese
## 27138                                           cheese
## 27139                                           cheese
## 27140                                           cheese
## 27141                                           cheese
## 27142                                           cheese
## 27143                                           cheese
## 27144                                           cheese
## 27145                                           cheese
## 27146                                           cheese
## 27147                                           cheese
## 27148                                           cheese
## 27149                                           cheese
## 27150                                           cheese
## 27151                                           cheese
## 27152                                           cheese
## 27153                                           cheese
## 27154                                           cheese
## 27155                                           cheese
## 27156                                           cheese
## 27157                                           cheese
## 27158                                           cheese
## 27159                                           cheese
## 27160                                           cheese
## 27161                                           cheese
## 27162                                           cheese
## 27163                                           cheese
## 27164                                           cheese
## 27165                                           cheese
## 27166                                           cheese
## 27167                                           cheese
## 27168                                           cheese
## 27169                                           cheese
## 27170                                           cheese
## 27171                                           cheese
## 27172                                           cheese
## 27173                                           cheese
## 27174                                           cheese
## 27175                                           cheese
## 27176                                           cheese
## 27177                                           cheese
## 27178                                           cheese
## 27179                                           cheese
## 27180                                           cheese
## 27181                                           cheese
## 27182                                           cheese
## 27183                                           cheese
## 27184                                           cheese
## 27185                                           cheese
## 27186                                           cheese
## 27187                                           cheese
## 27188                                           cheese
## 27189                                           cheese
## 27190                                           cheese
## 27191                                           cheese
## 27192                                           cheese
## 27193                                           cheese
## 27194                                           cheese
## 27195                                           cheese
## 27196                                           cheese
## 27197                                           cheese
## 27198                                           cheese
## 27199                                           cheese
## 27200                                           cheese
## 27201                                           cheese
## 27202                                           cheese
## 27203                                           cheese
## 27204                                           cheese
## 27205                                           cheese
## 27206                                           cheese
## 27207                                           cheese
## 27208                                           cheese
## 27209                                           cheese
## 27210                                           cheese
## 27211                                           cheese
## 27212                                           cheese
## 27213                                           cheese
## 27214                                           cheese
## 27215                                           cheese
## 27216                                           cheese
## 27217                                           cheese
## 27218                                           cheese
## 27219                                           cheese
## 27220                                           cheese
## 27221                                           cheese
## 27222                                           cheese
## 27223                                           cheese
## 27224                                           cheese
## 27225                                           cheese
## 27226                                           cheese
## 27227                                           cheese
## 27228                                           cheese
## 27229                                           cheese
## 27230                                           cheese
## 27231                                           cheese
## 27232                                           cheese
## 27233                                           cheese
## 27234                                           cheese
## 27235                                           cheese
## 27236                                           cheese
## 27237                                           cheese
## 27238                                           cheese
## 27239                                           cheese
## 27240                                           cheese
## 27241                                           cheese
## 27242                                           cheese
## 27243                                           cheese
## 27244                                           cheese
## 27245                                           cheese
## 27246                                           cheese
## 27247                                           cheese
## 27248                                           cheese
## 27249                                           cheese
## 27250                                           cheese
## 27251                                           cheese
## 27252                                           cheese
## 27253                                           cheese
## 27254                                           cheese
## 27255                                           cheese
## 27256                                           cheese
## 27257                                           cheese
## 27258                                           cheese
## 27259                                           cheese
## 27260                                           cheese
## 27261                                           cheese
## 27262                                           cheese
## 27263                                           cheese
## 27264                                           cheese
## 27265                                           cheese
## 27266                                           cheese
## 27267                                           cheese
## 27268                                           cheese
## 27269                                           cheese
## 27270                                           cheese
## 27271                                           cheese
## 27272                                           cheese
## 27273                                           cheese
## 27274                                           cheese
## 27275                                           cheese
## 27276                                           cheese
## 27277                                           cheese
## 27278                                           cheese
## 27279                                           cheese
## 27280                                           cheese
## 27281                                           cheese
## 27282                                           cheese
## 27283                                           cheese
## 27284                                           cheese
## 27285                                           cheese
## 27286                                           cheese
## 27287                                           cheese
## 27288                                           cheese
## 27289                                           cheese
## 27290                                           cheese
## 27291                                           cheese
## 27292                                           cheese
## 27293                                           cheese
## 27294                                           cheese
## 27295                                   cheeseamerican
## 27296                                     cheeseburger
## 27297                                     cheeseburger
## 27298                                       cheesecake
## 27299                                       cheesecake
## 27300                                       cheesecake
## 27301                                       cheesecake
## 27302                                       cheesecake
## 27303                                       cheesecake
## 27304                                       cheesecake
## 27305                                          cheesed
## 27306                                       cheeseeeee
## 27307                                      cheesefries
## 27308                                      cheesefries
## 27309                                      cheesefries
## 27310                                      cheesefries
## 27311                                      cheesefries
## 27312                                      cheesefries
## 27313                                      cheesefries
## 27314                                      cheesefries
## 27315                                      cheesefries
## 27316                                      cheesefries
## 27317                                      cheesegravy
## 27318                                          cheesei
## 27319                                         cheeseif
## 27320                                        cheeseits
## 27321                                       cheeseless
## 27322                                      cheeselight
## 27323                                       cheeselike
## 27324                                       cheeselike
## 27325                                       cheesenice
## 27326                                        cheesenot
## 27327                                       cheeseonly
## 27328                                       cheesesnot
## 27329                                      cheesestaek
## 27330                                      cheesestake
## 27331                                      cheesestake
## 27332                                      cheesestake
## 27333                                     cheesestakes
## 27334                                      cheesesteak
## 27335                                      cheesesteak
## 27336                                      cheesesteak
## 27337                                      cheesesteak
## 27338                                      cheesesteak
## 27339                                      cheesesteak
## 27340                                      cheesesteak
## 27341                                      cheesesteak
## 27342                                      cheesesteak
## 27343                                      cheesesteak
## 27344                                      cheesesteak
## 27345                                      cheesesteak
## 27346                                      cheesesteak
## 27347                                      cheesesteak
## 27348                                      cheesesteak
## 27349                                      cheesesteak
## 27350                                      cheesesteak
## 27351                                      cheesesteak
## 27352                                      cheesesteak
## 27353                                      cheesesteak
## 27354                                      cheesesteak
## 27355                                      cheesesteak
## 27356                                      cheesesteak
## 27357                                      cheesesteak
## 27358                                      cheesesteak
## 27359                                      cheesesteak
## 27360                                      cheesesteak
## 27361                                      cheesesteak
## 27362                                      cheesesteak
## 27363                                      cheesesteak
## 27364                                      cheesesteak
## 27365                                      cheesesteak
## 27366                                      cheesesteak
## 27367                                      cheesesteak
## 27368                                      cheesesteak
## 27369                                      cheesesteak
## 27370                                      cheesesteak
## 27371                                      cheesesteak
## 27372                                      cheesesteak
## 27373                                      cheesesteak
## 27374                                      cheesesteak
## 27375                                      cheesesteak
## 27376                                      cheesesteak
## 27377                                      cheesesteak
## 27378                                      cheesesteak
## 27379                                      cheesesteak
## 27380                                      cheesesteak
## 27381                                      cheesesteak
## 27382                                      cheesesteak
## 27383                                      cheesesteak
## 27384                                      cheesesteak
## 27385                                      cheesesteak
## 27386                                      cheesesteak
## 27387                                      cheesesteak
## 27388                                      cheesesteak
## 27389                                      cheesesteak
## 27390                                      cheesesteak
## 27391                                      cheesesteak
## 27392                                      cheesesteak
## 27393                                      cheesesteak
## 27394                                      cheesesteak
## 27395                                      cheesesteak
## 27396                                      cheesesteak
## 27397                                      cheesesteak
## 27398                                      cheesesteak
## 27399                                      cheesesteak
## 27400                                      cheesesteak
## 27401                                      cheesesteak
## 27402                                      cheesesteak
## 27403                                      cheesesteak
## 27404                                      cheesesteak
## 27405                                      cheesesteak
## 27406                                      cheesesteak
## 27407                                      cheesesteak
## 27408                                      cheesesteak
## 27409                                      cheesesteak
## 27410                                      cheesesteak
## 27411                                      cheesesteak
## 27412                                      cheesesteak
## 27413                                      cheesesteak
## 27414                                      cheesesteak
## 27415                                      cheesesteak
## 27416                                      cheesesteak
## 27417                                      cheesesteak
## 27418                                      cheesesteak
## 27419                                      cheesesteak
## 27420                                      cheesesteak
## 27421                                      cheesesteak
## 27422                                      cheesesteak
## 27423                                      cheesesteak
## 27424                                      cheesesteak
## 27425                                      cheesesteak
## 27426                                      cheesesteak
## 27427                                      cheesesteak
## 27428                                      cheesesteak
## 27429                                      cheesesteak
## 27430                                      cheesesteak
## 27431                                      cheesesteak
## 27432                                      cheesesteak
## 27433                                      cheesesteak
## 27434                                      cheesesteak
## 27435                                      cheesesteak
## 27436                                      cheesesteak
## 27437                                      cheesesteak
## 27438                                      cheesesteak
## 27439                                      cheesesteak
## 27440                                      cheesesteak
## 27441                                      cheesesteak
## 27442                                      cheesesteak
## 27443                                      cheesesteak
## 27444                                      cheesesteak
## 27445                                      cheesesteak
## 27446                                      cheesesteak
## 27447                                      cheesesteak
## 27448                                      cheesesteak
## 27449                                      cheesesteak
## 27450                                      cheesesteak
## 27451                                      cheesesteak
## 27452                                      cheesesteak
## 27453                                      cheesesteak
## 27454                                      cheesesteak
## 27455                                      cheesesteak
## 27456                                      cheesesteak
## 27457                                      cheesesteak
## 27458                                      cheesesteak
## 27459                                      cheesesteak
## 27460                                      cheesesteak
## 27461                                      cheesesteak
## 27462                                      cheesesteak
## 27463                                      cheesesteak
## 27464                                      cheesesteak
## 27465                                      cheesesteak
## 27466                                      cheesesteak
## 27467                                      cheesesteak
## 27468                                      cheesesteak
## 27469                                      cheesesteak
## 27470                                      cheesesteak
## 27471                                      cheesesteak
## 27472                                      cheesesteak
## 27473                                      cheesesteak
## 27474                                      cheesesteak
## 27475                                      cheesesteak
## 27476                                      cheesesteak
## 27477                                      cheesesteak
## 27478                                      cheesesteak
## 27479                                      cheesesteak
## 27480                                      cheesesteak
## 27481                                      cheesesteak
## 27482                                      cheesesteak
## 27483                                      cheesesteak
## 27484                                      cheesesteak
## 27485                                      cheesesteak
## 27486                                      cheesesteak
## 27487                                      cheesesteak
## 27488                                      cheesesteak
## 27489                                      cheesesteak
## 27490                                      cheesesteak
## 27491                                      cheesesteak
## 27492                                      cheesesteak
## 27493                                      cheesesteak
## 27494                                      cheesesteak
## 27495                                      cheesesteak
## 27496                                      cheesesteak
## 27497                                      cheesesteak
## 27498                                      cheesesteak
## 27499                                      cheesesteak
## 27500                                      cheesesteak
## 27501                                      cheesesteak
## 27502                                      cheesesteak
## 27503                                      cheesesteak
## 27504                                      cheesesteak
## 27505                                      cheesesteak
## 27506                                      cheesesteak
## 27507                                      cheesesteak
## 27508                                      cheesesteak
## 27509                                      cheesesteak
## 27510                                      cheesesteak
## 27511                                      cheesesteak
## 27512                                      cheesesteak
## 27513                                      cheesesteak
## 27514                                      cheesesteak
## 27515                                      cheesesteak
## 27516                                      cheesesteak
## 27517                                      cheesesteak
## 27518                                      cheesesteak
## 27519                                      cheesesteak
## 27520                                      cheesesteak
## 27521                                      cheesesteak
## 27522                                      cheesesteak
## 27523                                      cheesesteak
## 27524                                      cheesesteak
## 27525                                      cheesesteak
## 27526                                      cheesesteak
## 27527                                      cheesesteak
## 27528                                      cheesesteak
## 27529                                      cheesesteak
## 27530                                      cheesesteak
## 27531                                      cheesesteak
## 27532                                      cheesesteak
## 27533                                      cheesesteak
## 27534                                      cheesesteak
## 27535                                      cheesesteak
## 27536                                      cheesesteak
## 27537                                      cheesesteak
## 27538                                      cheesesteak
## 27539                                      cheesesteak
## 27540                                      cheesesteak
## 27541                                      cheesesteak
## 27542                                      cheesesteak
## 27543                                      cheesesteak
## 27544                                      cheesesteak
## 27545                                      cheesesteak
## 27546                                      cheesesteak
## 27547                                      cheesesteak
## 27548                                      cheesesteak
## 27549                                      cheesesteak
## 27550                                      cheesesteak
## 27551                                      cheesesteak
## 27552                                      cheesesteak
## 27553                                      cheesesteak
## 27554                                      cheesesteak
## 27555                                      cheesesteak
## 27556                                      cheesesteak
## 27557                                      cheesesteak
## 27558                                      cheesesteak
## 27559                                      cheesesteak
## 27560                                      cheesesteak
## 27561                                      cheesesteak
## 27562                                      cheesesteak
## 27563                                      cheesesteak
## 27564                                      cheesesteak
## 27565                                      cheesesteak
## 27566                                      cheesesteak
## 27567                                      cheesesteak
## 27568                                      cheesesteak
## 27569                                      cheesesteak
## 27570                                      cheesesteak
## 27571                                      cheesesteak
## 27572                                      cheesesteak
## 27573                                      cheesesteak
## 27574                                      cheesesteak
## 27575                                      cheesesteak
## 27576                                      cheesesteak
## 27577                                      cheesesteak
## 27578                                      cheesesteak
## 27579                                      cheesesteak
## 27580                                      cheesesteak
## 27581                                      cheesesteak
## 27582                                      cheesesteak
## 27583                                      cheesesteak
## 27584                                      cheesesteak
## 27585                                      cheesesteak
## 27586                                      cheesesteak
## 27587                                      cheesesteak
## 27588                                      cheesesteak
## 27589                                      cheesesteak
## 27590                                      cheesesteak
## 27591                                      cheesesteak
## 27592                                      cheesesteak
## 27593                                      cheesesteak
## 27594                                      cheesesteak
## 27595                                      cheesesteak
## 27596                                      cheesesteak
## 27597                                      cheesesteak
## 27598                                      cheesesteak
## 27599                                      cheesesteak
## 27600                                      cheesesteak
## 27601                                      cheesesteak
## 27602                                      cheesesteak
## 27603                                      cheesesteak
## 27604                                      cheesesteak
## 27605                                      cheesesteak
## 27606                                      cheesesteak
## 27607                                      cheesesteak
## 27608                                      cheesesteak
## 27609                                      cheesesteak
## 27610                                      cheesesteak
## 27611                                      cheesesteak
## 27612                                      cheesesteak
## 27613                                      cheesesteak
## 27614                                      cheesesteak
## 27615                                      cheesesteak
## 27616                                      cheesesteak
## 27617                                      cheesesteak
## 27618                                      cheesesteak
## 27619                                      cheesesteak
## 27620                                      cheesesteak
## 27621                                      cheesesteak
## 27622                                      cheesesteak
## 27623                                      cheesesteak
## 27624                                      cheesesteak
## 27625                                      cheesesteak
## 27626                                      cheesesteak
## 27627                                      cheesesteak
## 27628                                      cheesesteak
## 27629                                      cheesesteak
## 27630                                      cheesesteak
## 27631                                      cheesesteak
## 27632                                      cheesesteak
## 27633                                      cheesesteak
## 27634                                      cheesesteak
## 27635                                      cheesesteak
## 27636                                      cheesesteak
## 27637                                      cheesesteak
## 27638                                      cheesesteak
## 27639                                      cheesesteak
## 27640                                      cheesesteak
## 27641                                      cheesesteak
## 27642                                      cheesesteak
## 27643                                      cheesesteak
## 27644                                      cheesesteak
## 27645                                      cheesesteak
## 27646                                      cheesesteak
## 27647                                      cheesesteak
## 27648                                      cheesesteak
## 27649                                      cheesesteak
## 27650                                      cheesesteak
## 27651                                      cheesesteak
## 27652                                      cheesesteak
## 27653                                      cheesesteak
## 27654                                      cheesesteak
## 27655                                      cheesesteak
## 27656                                      cheesesteak
## 27657                                      cheesesteak
## 27658                                      cheesesteak
## 27659                                      cheesesteak
## 27660                                      cheesesteak
## 27661                                      cheesesteak
## 27662                                      cheesesteak
## 27663                                      cheesesteak
## 27664                                      cheesesteak
## 27665                                      cheesesteak
## 27666                                      cheesesteak
## 27667                                      cheesesteak
## 27668                                      cheesesteak
## 27669                                      cheesesteak
## 27670                                      cheesesteak
## 27671                                      cheesesteak
## 27672                                      cheesesteak
## 27673                                      cheesesteak
## 27674                                      cheesesteak
## 27675                                      cheesesteak
## 27676                                      cheesesteak
## 27677                                      cheesesteak
## 27678                                      cheesesteak
## 27679                                      cheesesteak
## 27680                                      cheesesteak
## 27681                                      cheesesteak
## 27682                                      cheesesteak
## 27683                                      cheesesteak
## 27684                                      cheesesteak
## 27685                                      cheesesteak
## 27686                                      cheesesteak
## 27687                                      cheesesteak
## 27688                                      cheesesteak
## 27689                                      cheesesteak
## 27690                                      cheesesteak
## 27691                                      cheesesteak
## 27692                                      cheesesteak
## 27693                                      cheesesteak
## 27694                                      cheesesteak
## 27695                                      cheesesteak
## 27696                                      cheesesteak
## 27697                                      cheesesteak
## 27698                                      cheesesteak
## 27699                                      cheesesteak
## 27700                                      cheesesteak
## 27701                                      cheesesteak
## 27702                                      cheesesteak
## 27703                                      cheesesteak
## 27704                                      cheesesteak
## 27705                                      cheesesteak
## 27706                                      cheesesteak
## 27707                                      cheesesteak
## 27708                                      cheesesteak
## 27709                                      cheesesteak
## 27710                                      cheesesteak
## 27711                                      cheesesteak
## 27712                                      cheesesteak
## 27713                                      cheesesteak
## 27714                                      cheesesteak
## 27715                                      cheesesteak
## 27716                                      cheesesteak
## 27717                                      cheesesteak
## 27718                                      cheesesteak
## 27719                                      cheesesteak
## 27720                                      cheesesteak
## 27721                                      cheesesteak
## 27722                                      cheesesteak
## 27723                                      cheesesteak
## 27724                                      cheesesteak
## 27725                                      cheesesteak
## 27726                                      cheesesteak
## 27727                                      cheesesteak
## 27728                                      cheesesteak
## 27729                                      cheesesteak
## 27730                                      cheesesteak
## 27731                                      cheesesteak
## 27732                                      cheesesteak
## 27733                                      cheesesteak
## 27734                                      cheesesteak
## 27735                                      cheesesteak
## 27736                                      cheesesteak
## 27737                                      cheesesteak
## 27738                                      cheesesteak
## 27739                                      cheesesteak
## 27740                                      cheesesteak
## 27741                                      cheesesteak
## 27742                                      cheesesteak
## 27743                                      cheesesteak
## 27744                                      cheesesteak
## 27745                                      cheesesteak
## 27746                                      cheesesteak
## 27747                                      cheesesteak
## 27748                                      cheesesteak
## 27749                                      cheesesteak
## 27750                                      cheesesteak
## 27751                                      cheesesteak
## 27752                                      cheesesteak
## 27753                                   cheesesteakand
## 27754                                   cheesesteakand
## 27755                               cheesesteakbecause
## 27756                                   cheesesteakbut
## 27757                                   cheesesteakbut
## 27758                                     cheesesteake
## 27759                                     cheesesteake
## 27760                                     cheesesteake
## 27761                                  cheesesteakerys
## 27762                                  cheesesteakfrom
## 27763                                    cheesesteakif
## 27764                                     cheesesteaks
## 27765                                     cheesesteaks
## 27766                                     cheesesteaks
## 27767                                     cheesesteaks
## 27768                                     cheesesteaks
## 27769                                     cheesesteaks
## 27770                                     cheesesteaks
## 27771                                     cheesesteaks
## 27772                                     cheesesteaks
## 27773                                     cheesesteaks
## 27774                                     cheesesteaks
## 27775                                     cheesesteaks
## 27776                                     cheesesteaks
## 27777                                     cheesesteaks
## 27778                                     cheesesteaks
## 27779                                     cheesesteaks
## 27780                                     cheesesteaks
## 27781                                     cheesesteaks
## 27782                                     cheesesteaks
## 27783                                     cheesesteaks
## 27784                                     cheesesteaks
## 27785                                     cheesesteaks
## 27786                                     cheesesteaks
## 27787                                     cheesesteaks
## 27788                                     cheesesteaks
## 27789                                     cheesesteaks
## 27790                                     cheesesteaks
## 27791                                     cheesesteaks
## 27792                                     cheesesteaks
## 27793                                     cheesesteaks
## 27794                                     cheesesteaks
## 27795                                     cheesesteaks
## 27796                                     cheesesteaks
## 27797                                     cheesesteaks
## 27798                                     cheesesteaks
## 27799                                     cheesesteaks
## 27800                                     cheesesteaks
## 27801                                     cheesesteaks
## 27802                                     cheesesteaks
## 27803                                     cheesesteaks
## 27804                                     cheesesteaks
## 27805                                     cheesesteaks
## 27806                                     cheesesteaks
## 27807                                     cheesesteaks
## 27808                                     cheesesteaks
## 27809                                     cheesesteaks
## 27810                                     cheesesteaks
## 27811                                     cheesesteaks
## 27812                                     cheesesteaks
## 27813                                     cheesesteaks
## 27814                                     cheesesteaks
## 27815                                     cheesesteaks
## 27816                                     cheesesteaks
## 27817                                     cheesesteaks
## 27818                                     cheesesteaks
## 27819                                     cheesesteaks
## 27820                                     cheesesteaks
## 27821                                     cheesesteaks
## 27822                                     cheesesteaks
## 27823                                     cheesesteaks
## 27824                                     cheesesteaks
## 27825                                     cheesesteaks
## 27826                                     cheesesteaks
## 27827                                     cheesesteaks
## 27828                                     cheesesteaks
## 27829                                     cheesesteaks
## 27830                                     cheesesteaks
## 27831                                     cheesesteaks
## 27832                                     cheesesteaks
## 27833                                     cheesesteaks
## 27834                                     cheesesteaks
## 27835                                     cheesesteaks
## 27836                                     cheesesteaks
## 27837                                     cheesesteaks
## 27838                                     cheesesteaks
## 27839                                     cheesesteaks
## 27840                                     cheesesteaks
## 27841                                     cheesesteaks
## 27842                                     cheesesteaks
## 27843                                     cheesesteaks
## 27844                                     cheesesteaks
## 27845                                     cheesesteaks
## 27846                                     cheesesteaks
## 27847                                     cheesesteaks
## 27848                                     cheesesteaks
## 27849                                     cheesesteaks
## 27850                                     cheesesteaks
## 27851                                     cheesesteaks
## 27852                                     cheesesteaks
## 27853                                     cheesesteaks
## 27854                                     cheesesteaks
## 27855                                     cheesesteaks
## 27856                                     cheesesteaks
## 27857                                     cheesesteaks
## 27858                                     cheesesteaks
## 27859                                     cheesesteaks
## 27860                                     cheesesteaks
## 27861                                     cheesesteaks
## 27862                                     cheesesteaks
## 27863                                     cheesesteaks
## 27864                                     cheesesteaks
## 27865                                     cheesesteaks
## 27866                                     cheesesteaks
## 27867                                     cheesesteaks
## 27868                                     cheesesteaks
## 27869                                     cheesesteaks
## 27870                                     cheesesteaks
## 27871                                     cheesesteaks
## 27872                                     cheesesteaks
## 27873                                     cheesesteaks
## 27874                                     cheesesteaks
## 27875                                     cheesesteaks
## 27876                                     cheesesteaks
## 27877                                     cheesesteaks
## 27878                                     cheesesteaks
## 27879                                     cheesesteaks
## 27880                                     cheesesteaks
## 27881                                     cheesesteaks
## 27882                                     cheesesteaks
## 27883                                     cheesesteaks
## 27884                                     cheesesteaks
## 27885                                     cheesesteaks
## 27886                                     cheesesteaks
## 27887                                     cheesesteaks
## 27888                                     cheesesteaks
## 27889                                     cheesesteaks
## 27890                                     cheesesteaks
## 27891                                     cheesesteaks
## 27892                                     cheesesteaks
## 27893                                     cheesesteaks
## 27894                                     cheesesteaks
## 27895                                     cheesesteaks
## 27896                                     cheesesteaks
## 27897                                     cheesesteaks
## 27898                                     cheesesteaks
## 27899                                     cheesesteaks
## 27900                                     cheesesteaks
## 27901                                     cheesesteaks
## 27902                                     cheesesteaks
## 27903                                     cheesesteaks
## 27904                                     cheesesteaks
## 27905                                     cheesesteaks
## 27906                                     cheesesteaks
## 27907                                     cheesesteaks
## 27908                                     cheesesteaks
## 27909                                     cheesesteaks
## 27910                                     cheesesteaks
## 27911                                     cheesesteaks
## 27912                                     cheesesteaks
## 27913                                     cheesesteaks
## 27914                                     cheesesteaks
## 27915                                     cheesesteaks
## 27916                                     cheesesteaks
## 27917                                     cheesesteaks
## 27918                                     cheesesteaks
## 27919                                     cheesesteaks
## 27920                                     cheesesteaks
## 27921                                     cheesesteaks
## 27922                                     cheesesteaks
## 27923                                     cheesesteaks
## 27924                                     cheesesteaks
## 27925                                     cheesesteaks
## 27926                                     cheesesteaks
## 27927                                     cheesesteaks
## 27928                                     cheesesteaks
## 27929                                     cheesesteaks
## 27930                                     cheesesteaks
## 27931                                     cheesesteaks
## 27932                                     cheesesteaks
## 27933                                     cheesesteaks
## 27934                                     cheesesteaks
## 27935                                     cheesesteaks
## 27936                                     cheesesteaks
## 27937                                     cheesesteaks
## 27938                                     cheesesteaks
## 27939                                     cheesesteaks
## 27940                                     cheesesteaks
## 27941                                     cheesesteaks
## 27942                                     cheesesteaks
## 27943                                     cheesesteaks
## 27944                                     cheesesteaks
## 27945                                     cheesesteaks
## 27946                                     cheesesteaks
## 27947                                     cheesesteaks
## 27948                                     cheesesteaks
## 27949                                     cheesesteaks
## 27950                                     cheesesteaks
## 27951                                     cheesesteaks
## 27952                                     cheesesteaks
## 27953                                     cheesesteaks
## 27954                                     cheesesteaks
## 27955                                     cheesesteaks
## 27956                                     cheesesteaks
## 27957                                     cheesesteaks
## 27958                                     cheesesteaks
## 27959                                     cheesesteaks
## 27960                                     cheesesteaks
## 27961                                     cheesesteaks
## 27962                                     cheesesteaks
## 27963                                     cheesesteaks
## 27964                                     cheesesteaks
## 27965                                     cheesesteaks
## 27966                                     cheesesteaks
## 27967                                     cheesesteaks
## 27968                                     cheesesteaks
## 27969                                     cheesesteaks
## 27970                                     cheesesteaks
## 27971                                     cheesesteaks
## 27972                                     cheesesteaks
## 27973                                     cheesesteaks
## 27974                                     cheesesteaks
## 27975                                     cheesesteaks
## 27976                                     cheesesteaks
## 27977                                     cheesesteaks
## 27978                                     cheesesteaks
## 27979                                     cheesesteaks
## 27980                                     cheesesteaks
## 27981                                     cheesesteaks
## 27982                                     cheesesteaks
## 27983                                     cheesesteaks
## 27984                                     cheesesteaks
## 27985                                     cheesesteaks
## 27986                                     cheesesteaks
## 27987                                     cheesesteaks
## 27988                                     cheesesteaks
## 27989                                     cheesesteaks
## 27990                                     cheesesteaks
## 27991                                     cheesesteaks
## 27992                                     cheesesteaks
## 27993                                     cheesesteaks
## 27994                                     cheesesteaks
## 27995                                     cheesesteaks
## 27996                                     cheesesteaks
## 27997                                     cheesesteaks
## 27998                                     cheesesteaks
## 27999                                     cheesesteaks
## 28000                                     cheesesteaks
## 28001                                     cheesesteaks
## 28002                                     cheesesteaks
## 28003                                     cheesesteaks
## 28004                                     cheesesteaks
## 28005                                     cheesesteaks
## 28006                                     cheesesteaks
## 28007                                     cheesesteaks
## 28008                                   cheesesteaksat
## 28009                                  cheesesteaksbut
## 28010                                    cheesesteaksi
## 28011                               cheesesteaksimilar
## 28012                                  cheesesteaksits
## 28013                              cheesesteaksoutside
## 28014                                  cheesesteakthey
## 28015                                  cheesesteakthis
## 28016                                  cheesesteakthis
## 28017                                      cheesetakes
## 28018                                       cheeseteak
## 28019                                       cheeseteak
## 28020                                       cheeseteak
## 28021                                       cheeseteak
## 28022                                       cheeseteak
## 28023                                       cheeseteak
## 28024                                       cheeseteak
## 28025                                       cheeseteak
## 28026                                      cheeseteakk
## 28027                                      cheeseteaks
## 28028                                      cheeseteaks
## 28029                                      cheeseteaks
## 28030                                      cheeseteaks
## 28031                                      cheeseteaks
## 28032                                      cheeseteaks
## 28033                                      cheeseteaks
## 28034                                       cheesewell
## 28035                                      cheesewhich
## 28036                                       cheesewhiz
## 28037                                       cheesewhiz
## 28038                                       cheesewhiz
## 28039                                       cheesewhiz
## 28040                                       cheesewhiz
## 28041                                       cheesewhiz
## 28042                                        cheesewiz
## 28043                                        cheesewiz
## 28044                                        cheesewiz
## 28045                                      cheesexteak
## 28046                                          cheesey
## 28047                                          cheesey
## 28048                                          cheesie
## 28049                                       cheesiness
## 28050                                       cheesiness
## 28051                                       cheessteak
## 28052                                       cheessteak
## 28053                                       cheessteak
## 28054                                        cheesteak
## 28055                                        cheesteak
## 28056                                        cheesteak
## 28057                                        cheesteak
## 28058                                        cheesteak
## 28059                                        cheesteak
## 28060                                        cheesteak
## 28061                                        cheesteak
## 28062                                        cheesteak
## 28063                                        cheesteak
## 28064                                        cheesteak
## 28065                                        cheesteak
## 28066                                        cheesteak
## 28067                                        cheesteak
## 28068                                        cheesteak
## 28069                                        cheesteak
## 28070                                      cheesteakrs
## 28071                                       cheesteaks
## 28072                                       cheesteaks
## 28073                                       cheesteaks
## 28074                                       cheesteaks
## 28075                                       cheesteaks
## 28076                                       cheesteeak
## 28077                                      cheeststeak
## 28078                                           cheesy
## 28079                                           cheesy
## 28080                                           cheesy
## 28081                                           cheesy
## 28082                                           cheesy
## 28083                                           cheesy
## 28084                                           cheesy
## 28085                                           cheesy
## 28086                                           cheesy
## 28087                                           cheesy
## 28088                                           cheesy
## 28089                                           cheesy
## 28090                                           cheesy
## 28091                                           cheesy
## 28092                                           cheesy
## 28093                                           cheesy
## 28094                                           cheesy
## 28095                                           cheesy
## 28096                                           cheesy
## 28097                                           cheesy
## 28098                                           cheesy
## 28099                                           cheesy
## 28100                                           cheesy
## 28101                                           cheesy
## 28102                                           cheesy
## 28103                                           cheesy
## 28104                                           cheesy
## 28105                                  cheesysaltiness
## 28106                                            cheez
## 28107                                            cheez
## 28108                                            cheez
## 28109                                           cheeze
## 28110                                       cheezewhiz
## 28111                                        cheezewiz
## 28112                                        cheezewiz
## 28113                                        cheezwhiz
## 28114                                        cheezwhiz
## 28115                                        cheezwhiz
## 28116                                        cheezwhiz
## 28117                                        cheezwhiz
## 28118                                        cheezwhiz
## 28119                                         cheezwit
## 28120                                         cheezwiz
## 28121                                         cheezwiz
## 28122                                             chef
## 28123                                             chef
## 28124                                             chef
## 28125                                       cheltenham
## 28126                                       chemically
## 28127                                           cherry
## 28128                                           cherry
## 28129                                           cherry
## 28130                                           cherry
## 28131                                           cherry
## 28132                                            chese
## 28133                                            chese
## 28134                                       chesesteak
## 28135                                            chess
## 28136                                           chesse
## 28137                                           chesse
## 28138                                           chesse
## 28139                                      chessesteak
## 28140                                          chester
## 28141                                      chestheight
## 28142                                      chestheight
## 28143                                         chestnut
## 28144                                         chestnut
## 28145                                            chevy
## 28146                                            chevy
## 28147                                            chevy
## 28148                                           chevys
## 28149                                             chew
## 28150                                             chew
## 28151                                             chew
## 28152                                             chew
## 28153                                             chew
## 28154                                             chew
## 28155                                             chew
## 28156                                             chew
## 28157                                             chew
## 28158                                             chew
## 28159                                             chew
## 28160                                             chew
## 28161                                             chew
## 28162                                             chew
## 28163                                             chew
## 28164                                             chew
## 28165                                             chew
## 28166                                             chew
## 28167                                             chew
## 28168                                             chew
## 28169                                             chew
## 28170                                             chew
## 28171                                             chew
## 28172                                             chew
## 28173                                             chew
## 28174                                            chewi
## 28175                                           chewie
## 28176                                           chewie
## 28177                                        chewiness
## 28178                                        chewiness
## 28179                                            chewy
## 28180                                            chewy
## 28181                                            chewy
## 28182                                            chewy
## 28183                                            chewy
## 28184                                            chewy
## 28185                                            chewy
## 28186                                            chewy
## 28187                                            chewy
## 28188                                            chewy
## 28189                                            chewy
## 28190                                            chewy
## 28191                                            chewy
## 28192                                            chewy
## 28193                                            chewy
## 28194                                            chewy
## 28195                                            chewy
## 28196                                            chewy
## 28197                                            chewy
## 28198                                            chewy
## 28199                                            chewy
## 28200                                            chewy
## 28201                                            chewy
## 28202                                            chewy
## 28203                                            chewy
## 28204                                            chewy
## 28205                                            chewy
## 28206                                            chewy
## 28207                                            chewy
## 28208                                            chewy
## 28209                                            chewy
## 28210                                            chewy
## 28211                                            chewy
## 28212                                            chewy
## 28213                                            chewy
## 28214                                            chewy
## 28215                                            chewy
## 28216                                            chewy
## 28217                                            chewy
## 28218                                            chewy
## 28219                                            chewy
## 28220                                            chewy
## 28221                                            chewy
## 28222                                            chewy
## 28223                                            chewy
## 28224                                            chewy
## 28225                                            chewy
## 28226                                            chewy
## 28227                                            chewy
## 28228                                            chewy
## 28229                                            chewy
## 28230                                            chewy
## 28231                                            chewy
## 28232                                            chewy
## 28233                                            chewy
## 28234                                            chewy
## 28235                                            chewy
## 28236                                            chewy
## 28237                                            chewy
## 28238                                            chewy
## 28239                                            chewy
## 28240                                            chewy
## 28241                                            chewy
## 28242                                            chewy
## 28243                                            chewy
## 28244                                            chewy
## 28245                                            chewy
## 28246                                            chewy
## 28247                                            chewy
## 28248                                            chewy
## 28249                                        chewyhard
## 28250                                              chi
## 28251                                          chicago
## 28252                                          chicago
## 28253                                          chicago
## 28254                                          chicago
## 28255                                          chicago
## 28256                                          chicago
## 28257                                          chicago
## 28258                                          chicago
## 28259                                          chicago
## 28260                                          chicago
## 28261                                          chicago
## 28262                                          chicago
## 28263                                          chicago
## 28264                                          chicago
## 28265                                          chicago
## 28266                                          chicago
## 28267                                          chicago
## 28268                                          chicago
## 28269                                        chicagoan
## 28270                                    chicagonative
## 28271                                         chicagos
## 28272                                     chicagostyle
## 28273                                       chichester
## 28274                                            chick
## 28275                                            chick
## 28276                                          chicken
## 28277                                          chicken
## 28278                                          chicken
## 28279                                          chicken
## 28280                                          chicken
## 28281                                          chicken
## 28282                                          chicken
## 28283                                          chicken
## 28284                                          chicken
## 28285                                          chicken
## 28286                                          chicken
## 28287                                          chicken
## 28288                                          chicken
## 28289                                         chickies
## 28290                                        chicklets
## 28291                                        chihuahua
## 28292                                            child
## 28293                                            child
## 28294                                            child
## 28295                                            child
## 28296                                            child
## 28297                                            child
## 28298                                            child
## 28299                                        childhood
## 28300                                        childhood
## 28301                                            chile
## 28302                                            chili
## 28303                                            chili
## 28304                                            chili
## 28305                                            chill
## 28306                                            chill
## 28307                                           chilli
## 28308                                           chilly
## 28309                                           chilly
## 28310                                           chilly
## 28311                                           chilly
## 28312                                             chin
## 28313                                            china
## 28314                                        chinatown
## 28315                                        chinatown
## 28316                                        chinatown
## 28317                                        chinatown
## 28318                                          chinese
## 28319                                          chinese
## 28320                                          chinese
## 28321                                          chinese
## 28322                                          chinese
## 28323                                          chinese
## 28324                                          chinese
## 28325                                          chinese
## 28326                                      chineseonly
## 28327                                            chink
## 28328                                            chink
## 28329                                            chink
## 28330                                            chink
## 28331                                            chink
## 28332                                            chink
## 28333                                            chink
## 28334                                            chink
## 28335                                       chinksjoes
## 28336                                          chintzy
## 28337                                             chip
## 28338                                             chip
## 28339                                             chip
## 28340                                             chip
## 28341                                             chip
## 28342                                             chip
## 28343                                             chip
## 28344                                             chip
## 28345                                     chitchatting
## 28346                                            chnks
## 28347                                        chocolate
## 28348                                        chocolate
## 28349                                        chocolate
## 28350                                        chocolate
## 28351                                        chocolate
## 28352                                        chocolate
## 28353                                        chocolate
## 28354                                        chocolate
## 28355                                           choice
## 28356                                           choice
## 28357                                           choice
## 28358                                           choice
## 28359                                           choice
## 28360                                           choice
## 28361                                           choice
## 28362                                           choice
## 28363                                           choice
## 28364                                           choice
## 28365                                           choice
## 28366                                           choice
## 28367                                           choice
## 28368                                           choice
## 28369                                           choice
## 28370                                           choice
## 28371                                           choice
## 28372                                           choice
## 28373                                           choice
## 28374                                           choice
## 28375                                           choice
## 28376                                           choice
## 28377                                           choice
## 28378                                           choice
## 28379                                           choice
## 28380                                           choice
## 28381                                           choice
## 28382                                           choice
## 28383                                           choice
## 28384                                           choice
## 28385                                           choice
## 28386                                           choice
## 28387                                           choice
## 28388                                           choice
## 28389                                           choice
## 28390                                           choice
## 28391                                           choice
## 28392                                           choice
## 28393                                            choke
## 28394                                            choke
## 28395                                            choke
## 28396                                            choke
## 28397                                            choke
## 28398                                            choke
## 28399                                            choke
## 28400                                            choke
## 28401                                      cholesterol
## 28402                                      cholesterol
## 28403                                      cholesterol
## 28404                                      cholesterol
## 28405                                      cholesterol
## 28406                                  cholesterolfest
## 28407                                            chomp
## 28408                                            chomp
## 28409                                            chomp
## 28410                                           choose
## 28411                                           choose
## 28412                                           choose
## 28413                                           choose
## 28414                                           choose
## 28415                                           choose
## 28416                                           choose
## 28417                                           choose
## 28418                                           choose
## 28419                                           choose
## 28420                                           choose
## 28421                                           choose
## 28422                                           choose
## 28423                                           choose
## 28424                                           choose
## 28425                                           choose
## 28426                                           choose
## 28427                                           choose
## 28428                                           choose
## 28429                                           choose
## 28430                                           choose
## 28431                                           choose
## 28432                                           choose
## 28433                                           choose
## 28434                                           choose
## 28435                                           choose
## 28436                                           choose
## 28437                                           choose
## 28438                                           choose
## 28439                                           choose
## 28440                                           choose
## 28441                                           choose
## 28442                                           choose
## 28443                                           choose
## 28444                                           choose
## 28445                                           choose
## 28446                                           choose
## 28447                                           choose
## 28448                                           choose
## 28449                                           choosy
## 28450                                             chop
## 28451                                             chop
## 28452                                             chop
## 28453                                             chop
## 28454                                             chop
## 28455                                             chop
## 28456                                             chop
## 28457                                             chop
## 28458                                             chop
## 28459                                             chop
## 28460                                             chop
## 28461                                             chop
## 28462                                             chop
## 28463                                             chop
## 28464                                             chop
## 28465                                             chop
## 28466                                             chop
## 28467                                             chop
## 28468                                             chop
## 28469                                             chop
## 28470                                             chop
## 28471                                             chop
## 28472                                             chop
## 28473                                             chop
## 28474                                             chop
## 28475                                             chop
## 28476                                             chop
## 28477                                             chop
## 28478                                             chop
## 28479                                             chop
## 28480                                             chop
## 28481                                             chop
## 28482                                             chop
## 28483                                             chop
## 28484                                             chop
## 28485                                             chop
## 28486                                             chop
## 28487                                             chop
## 28488                                             chop
## 28489                                             chop
## 28490                                             chop
## 28491                                             chop
## 28492                                             chop
## 28493                                             chop
## 28494                                             chop
## 28495                                             chop
## 28496                                             chop
## 28497                                             chop
## 28498                                             chop
## 28499                                             chop
## 28500                                             chop
## 28501                                             chop
## 28502                                             chop
## 28503                                             chop
## 28504                                             chop
## 28505                                             chop
## 28506                                             chop
## 28507                                             chop
## 28508                                             chop
## 28509                                             chop
## 28510                                             chop
## 28511                                             chop
## 28512                                             chop
## 28513                                             chop
## 28514                                             chop
## 28515                                             chop
## 28516                                             chop
## 28517                                             chop
## 28518                                             chop
## 28519                                             chop
## 28520                                             chop
## 28521                                             chop
## 28522                                             chop
## 28523                                             chop
## 28524                                             chop
## 28525                                             chop
## 28526                                             chop
## 28527                                             chop
## 28528                                             chop
## 28529                                             chop
## 28530                                             chop
## 28531                                             chop
## 28532                                             chop
## 28533                                             chop
## 28534                                             chop
## 28535                                             chop
## 28536                                             chop
## 28537                                    choppedcheese
## 28538                                           choppy
## 28539                                             chow
## 28540                                         chowdown
## 28541                                          chowing
## 28542                                            chris
## 28543                                           christ
## 28544                                         christen
## 28545                                          christi
## 28546                                        christian
## 28547                                        christmas
## 28548                                        christmas
## 28549                                        christmas
## 28550                                        christmas
## 28551                                        christmas
## 28552                                           chrome
## 28553                                         chubbies
## 28554                                           chubby
## 28555                                          chubbys
## 28556                                          chubbys
## 28557                                            chuck
## 28558                                            chuck
## 28559                                          chuckle
## 28560                                          chuckle
## 28561                                            chump
## 28562                                            chunk
## 28563                                            chunk
## 28564                                            chunk
## 28565                                            chunk
## 28566                                            chunk
## 28567                                            chunk
## 28568                                            chunk
## 28569                                            chunk
## 28570                                            chunk
## 28571                                            chunk
## 28572                                            chunk
## 28573                                            chunk
## 28574                                            chunk
## 28575                                           chunky
## 28576                                           chunky
## 28577                                           chunky
## 28578                                           chunky
## 28579                                           chunky
## 28580                                           chunky
## 28581                                           church
## 28582                                           church
## 28583                                           church
## 28584                                            churn
## 28585                                            churn
## 28586                                            churn
## 28587                                              chz
## 28588                                              chz
## 28589                                         ciabatta
## 28590                                        cigarette
## 28591                                        cigarette
## 28592                                           circle
## 28593                                           circle
## 28594                                     circumstance
## 28595                                     circumstance
## 28596                                           circus
## 28597                                           circus
## 28598                                           circus
## 28599                                          citadel
## 28600                                          citizen
## 28601                                          citizen
## 28602                                          citizen
## 28603                                          citizen
## 28604                                          citizen
## 28605                                          citizen
## 28606                                             city
## 28607                                             city
## 28608                                             city
## 28609                                             city
## 28610                                             city
## 28611                                             city
## 28612                                             city
## 28613                                             city
## 28614                                             city
## 28615                                             city
## 28616                                             city
## 28617                                             city
## 28618                                             city
## 28619                                             city
## 28620                                             city
## 28621                                             city
## 28622                                             city
## 28623                                             city
## 28624                                             city
## 28625                                             city
## 28626                                             city
## 28627                                             city
## 28628                                             city
## 28629                                             city
## 28630                                             city
## 28631                                             city
## 28632                                             city
## 28633                                             city
## 28634                                             city
## 28635                                             city
## 28636                                             city
## 28637                                             city
## 28638                                             city
## 28639                                             city
## 28640                                             city
## 28641                                             city
## 28642                                             city
## 28643                                             city
## 28644                                             city
## 28645                                             city
## 28646                                             city
## 28647                                             city
## 28648                                             city
## 28649                                             city
## 28650                                             city
## 28651                                             city
## 28652                                             city
## 28653                                             city
## 28654                                             city
## 28655                                             city
## 28656                                             city
## 28657                                             city
## 28658                                             city
## 28659                                             city
## 28660                                             city
## 28661                                             city
## 28662                                             city
## 28663                                             city
## 28664                                             city
## 28665                                             city
## 28666                                             city
## 28667                                             city
## 28668                                             city
## 28669                                             city
## 28670                                             city
## 28671                                             city
## 28672                                             city
## 28673                                             city
## 28674                                             city
## 28675                                             city
## 28676                                             city
## 28677                                             city
## 28678                                             city
## 28679                                             city
## 28680                                             city
## 28681                                             city
## 28682                                             city
## 28683                                             city
## 28684                                             city
## 28685                                             city
## 28686                                             city
## 28687                                             city
## 28688                                             city
## 28689                                             city
## 28690                                             city
## 28691                                             city
## 28692                                             city
## 28693                                             city
## 28694                                             city
## 28695                                             city
## 28696                                             city
## 28697                                             city
## 28698                                             city
## 28699                                             city
## 28700                                             city
## 28701                                             city
## 28702                                             city
## 28703                                             city
## 28704                                             city
## 28705                                             city
## 28706                                             city
## 28707                                             city
## 28708                                             city
## 28709                                             city
## 28710                                             city
## 28711                                             city
## 28712                                             city
## 28713                                             city
## 28714                                             city
## 28715                                             city
## 28716                                             city
## 28717                                             city
## 28718                                             city
## 28719                                             city
## 28720                                             city
## 28721                                             city
## 28722                                             city
## 28723                                             city
## 28724                                             city
## 28725                                             city
## 28726                                 citydalessandros
## 28727                                          citygit
## 28728                                      cityhoboken
## 28729                                            citys
## 28730                                            citys
## 28731                                        citysince
## 28732                                       cityunless
## 28733                                           ciudad
## 28734                                              civ
## 28735                                            civic
## 28736                                            civil
## 28737                                            civil
## 28738                                               ck
## 28739                                            claim
## 28740                                            claim
## 28741                                            claim
## 28742                                            claim
## 28743                                            claim
## 28744                                            claim
## 28745                                            claim
## 28746                                            claim
## 28747                                            claim
## 28748                                            claim
## 28749                                            claim
## 28750                                            claim
## 28751                                            claim
## 28752                                            claim
## 28753                                            claim
## 28754                                            claim
## 28755                                            claim
## 28756                                            claim
## 28757                                            claim
## 28758                                            claim
## 28759                                            claim
## 28760                                            claim
## 28761                                            claim
## 28762                                         clampett
## 28763                                         clampett
## 28764                                             clap
## 28765                                          clarify
## 28766                                          clarify
## 28767                                            class
## 28768                                            class
## 28769                                            class
## 28770                                            class
## 28771                                            class
## 28772                                            class
## 28773                                            class
## 28774                                            class
## 28775                                            class
## 28776                                          classic
## 28777                                          classic
## 28778                                          classic
## 28779                                          classic
## 28780                                          classic
## 28781                                          classic
## 28782                                          classic
## 28783                                          classic
## 28784                                          classic
## 28785                                          classic
## 28786                                          classic
## 28787                                          classic
## 28788                                          classic
## 28789                                          classic
## 28790                                          classic
## 28791                                          classic
## 28792                                          classic
## 28793                                          classic
## 28794                                          classic
## 28795                                          classic
## 28796                                          classic
## 28797                                          classic
## 28798                                          classic
## 28799                                          classic
## 28800                                          classic
## 28801                                          classic
## 28802                                          classic
## 28803                                          classic
## 28804                                        classless
## 28805                                        classmate
## 28806                                        classmate
## 28807                                           classy
## 28808                                           classy
## 28809                                           classy
## 28810                                           classy
## 28811                                           classy
## 28812                                           classy
## 28813                                           classy
## 28814                                            clean
## 28815                                            clean
## 28816                                            clean
## 28817                                            clean
## 28818                                            clean
## 28819                                            clean
## 28820                                            clean
## 28821                                            clean
## 28822                                            clean
## 28823                                            clean
## 28824                                            clean
## 28825                                            clean
## 28826                                            clean
## 28827                                            clean
## 28828                                            clean
## 28829                                            clean
## 28830                                            clean
## 28831                                            clean
## 28832                                            clean
## 28833                                            clean
## 28834                                            clean
## 28835                                            clean
## 28836                                            clean
## 28837                                            clean
## 28838                                            clean
## 28839                                            clean
## 28840                                            clean
## 28841                                            clean
## 28842                                            clean
## 28843                                            clean
## 28844                                            clean
## 28845                                            clean
## 28846                                            clean
## 28847                                            clean
## 28848                                            clean
## 28849                                            clean
## 28850                                            clean
## 28851                                            clean
## 28852                                            clean
## 28853                                            clean
## 28854                                            clean
## 28855                                            clean
## 28856                                            clean
## 28857                                            clean
## 28858                                            clean
## 28859                                            clean
## 28860                                            clean
## 28861                                            clean
## 28862                                            clean
## 28863                                            clean
## 28864                                            clean
## 28865                                            clean
## 28866                                            clean
## 28867                                            clean
## 28868                                            clean
## 28869                                            clean
## 28870                                            clean
## 28871                                            clean
## 28872                                            clean
## 28873                                         cleancut
## 28874                                   cleanestnewest
## 28875                                      cleanliness
## 28876                                      cleanliness
## 28877                                      cleanliness
## 28878                                      cleanliness
## 28879                                      cleanliness
## 28880                                      cleanliness
## 28881                                      cleanliness
## 28882                                      cleanliness
## 28883                                            clear
## 28884                                            clear
## 28885                                            clear
## 28886                                            clear
## 28887                                            clear
## 28888                                            clear
## 28889                                            clear
## 28890                                            clear
## 28891                                            clear
## 28892                                            clear
## 28893                                            clear
## 28894                                            clear
## 28895                                            clear
## 28896                                            clear
## 28897                                            clear
## 28898                                            clear
## 28899                                            clear
## 28900                                            clear
## 28901                                            clear
## 28902                                            clear
## 28903                                            clear
## 28904                                            clear
## 28905                                            clear
## 28906                                            clear
## 28907                                            clear
## 28908                                            clear
## 28909                                            clear
## 28910                                            clear
## 28911                                            clear
## 28912                                            clear
## 28913                                            clear
## 28914                                            clear
## 28915                                            clear
## 28916                                            clear
## 28917                                          clearly
## 28918                                          clearly
## 28919                                          clearly
## 28920                                          clearly
## 28921                                          clearly
## 28922                                          clearly
## 28923                                          clearly
## 28924                                          clearly
## 28925                                          clearly
## 28926                                          clearly
## 28927                                          clearly
## 28928                                          clearly
## 28929                                          clearly
## 28930                                          clearly
## 28931                                          clearly
## 28932                                          clearly
## 28933                                          clearly
## 28934                                          clearly
## 28935                                          clearly
## 28936                                          clearly
## 28937                                          clearly
## 28938                                          clearly
## 28939                                          clearly
## 28940                                          clearly
## 28941                                          clearly
## 28942                                          clearly
## 28943                                          clearly
## 28944                                          clearly
## 28945                                          clearly
## 28946                                          cleaver
## 28947                                          cleaver
## 28948                                          cleaver
## 28949                                          cleaver
## 28950                                          cleaver
## 28951                                          cleaver
## 28952                                           clench
## 28953                                            clerk
## 28954                                            clerk
## 28955                                        cleveland
## 28956                                        cleveland
## 28957                                           clever
## 28958                                           clever
## 28959                                           cliche
## 28960                                           cliche
## 28961                                           client
## 28962                                           client
## 28963                                         cliental
## 28964                                        clientele
## 28965                                        clientele
## 28966                                            cling
## 28967                                           clinic
## 28968                                           clique
## 28969                                            clock
## 28970                                             clog
## 28971                                             clog
## 28972                                             clog
## 28973                                             clog
## 28974                                             clog
## 28975                                             clog
## 28976                                          clogger
## 28977                                           clorox
## 28978                                            close
## 28979                                            close
## 28980                                            close
## 28981                                            close
## 28982                                            close
## 28983                                            close
## 28984                                            close
## 28985                                            close
## 28986                                            close
## 28987                                            close
## 28988                                            close
## 28989                                            close
## 28990                                            close
## 28991                                            close
## 28992                                            close
## 28993                                            close
## 28994                                            close
## 28995                                            close
## 28996                                            close
## 28997                                            close
## 28998                                            close
## 28999                                            close
## 29000                                            close
## 29001                                            close
## 29002                                            close
## 29003                                            close
## 29004                                            close
## 29005                                            close
## 29006                                            close
## 29007                                            close
## 29008                                            close
## 29009                                            close
## 29010                                            close
## 29011                                            close
## 29012                                            close
## 29013                                            close
## 29014                                            close
## 29015                                            close
## 29016                                            close
## 29017                                            close
## 29018                                            close
## 29019                                            close
## 29020                                            close
## 29021                                            close
## 29022                                            close
## 29023                                            close
## 29024                                            close
## 29025                                            close
## 29026                                            close
## 29027                                            close
## 29028                                            close
## 29029                                            close
## 29030                                            close
## 29031                                            close
## 29032                                            close
## 29033                                            close
## 29034                                            close
## 29035                                            close
## 29036                                            close
## 29037                                            close
## 29038                                            close
## 29039                                            close
## 29040                                            close
## 29041                                            close
## 29042                                            close
## 29043                                            close
## 29044                                            close
## 29045                                            close
## 29046                                            close
## 29047                                            close
## 29048                                            close
## 29049                                            close
## 29050                                            close
## 29051                                            close
## 29052                                            close
## 29053                                            close
## 29054                                            close
## 29055                                            close
## 29056                                            close
## 29057                                            close
## 29058                                            close
## 29059                                 closedmindedness
## 29060                                          closely
## 29061                                   closelyrelated
## 29062                                           closet
## 29063                                           clothe
## 29064                                           clothe
## 29065                                           clothe
## 29066                                           clothe
## 29067                                            cloud
## 29068                                            cloud
## 29069                                           cloudy
## 29070                                           cloudy
## 29071                                            clown
## 29072                                            clown
## 29073                                            clown
## 29074                                            clown
## 29075                                             club
## 29076                                             club
## 29077                                             club
## 29078                                             club
## 29079                                             club
## 29080                                             club
## 29081                                             club
## 29082                                             club
## 29083                                             club
## 29084                                             club
## 29085                                             club
## 29086                                             club
## 29087                                             club
## 29088                                             clue
## 29089                                             clue
## 29090                                             clue
## 29091                                             clue
## 29092                                             clue
## 29093                                         clueless
## 29094                                         clueless
## 29095                                         clueless
## 29096                                            clump
## 29097                                            clump
## 29098                                            clump
## 29099                                           clumpy
## 29100                                           clumpy
## 29101                                          cluster
## 29102                                          cluster
## 29103                                           clutch
## 29104                                          clutter
## 29105                                          clásico
## 29106                                             cmon
## 29107                                             cmon
## 29108                                             cmon
## 29109                                             cmon
## 29110                                             cmon
## 29111                                             cmon
## 29112                                             cmon
## 29113                                             cmon
## 29114                                             cmon
## 29115                                               co
## 29116                                               co
## 29117                                            coach
## 29118                                            coast
## 29119                                            coast
## 29120                                            coast
## 29121                                            coast
## 29122                                            coast
## 29123                                            coast
## 29124                                            coast
## 29125                                            coast
## 29126                                            coast
## 29127                                            coast
## 29128                                            coast
## 29129                                            coast
## 29130                                            coast
## 29131                                            coast
## 29132                                            coast
## 29133                                            coast
## 29134                                            coast
## 29135                                            coast
## 29136                                            coast
## 29137                                            coast
## 29138                                            coast
## 29139                                            coast
## 29140                                            coast
## 29141                                          coaster
## 29142                                          coaster
## 29143                                          coaster
## 29144                                           coastr
## 29145                                             coat
## 29146                                             coat
## 29147                                             coat
## 29148                                             coat
## 29149                                             coat
## 29150                                        coattails
## 29151                                        coattails
## 29152                                          cocaine
## 29153                                       cockamayme
## 29154                                        cockroach
## 29155                                      cocksuckers
## 29156                                         cocktail
## 29157                                            cocky
## 29158                                            cocky
## 29159                                            cocky
## 29160                                             code
## 29161                                             cody
## 29162                                           coffee
## 29163                                           coffee
## 29164                                           coffee
## 29165                                           coffee
## 29166                                           coffee
## 29167                                           coffee
## 29168                                           coffee
## 29169                                           coffee
## 29170                                           coffee
## 29171                                           coffee
## 29172                                           coffee
## 29173                                             coin
## 29174                                             coin
## 29175                                             coin
## 29176                                             coin
## 29177                                             coin
## 29178                                         coinflip
## 29179                                             coke
## 29180                                             coke
## 29181                                             coke
## 29182                                             coke
## 29183                                             coke
## 29184                                             coke
## 29185                                             coke
## 29186                                             coke
## 29187                                             coke
## 29188                                             coke
## 29189                                             coke
## 29190                                             coke
## 29191                                             coke
## 29192                                           cokemy
## 29193                                        cokepepsi
## 29194                                             cola
## 29195                                             cold
## 29196                                             cold
## 29197                                             cold
## 29198                                             cold
## 29199                                             cold
## 29200                                             cold
## 29201                                             cold
## 29202                                             cold
## 29203                                             cold
## 29204                                             cold
## 29205                                             cold
## 29206                                             cold
## 29207                                             cold
## 29208                                             cold
## 29209                                             cold
## 29210                                             cold
## 29211                                             cold
## 29212                                             cold
## 29213                                             cold
## 29214                                             cold
## 29215                                             cold
## 29216                                             cold
## 29217                                             cold
## 29218                                             cold
## 29219                                             cold
## 29220                                             cold
## 29221                                             cold
## 29222                                             cold
## 29223                                             cold
## 29224                                             cold
## 29225                                             cold
## 29226                                             cold
## 29227                                             cold
## 29228                                             cold
## 29229                                             cold
## 29230                                             cold
## 29231                                             cold
## 29232                                             cold
## 29233                                             cold
## 29234                                             cold
## 29235                                             cold
## 29236                                             cold
## 29237                                             cold
## 29238                                             cold
## 29239                                             cold
## 29240                                             cold
## 29241                                             cold
## 29242                                             cold
## 29243                                             cold
## 29244                                             cold
## 29245                                             cold
## 29246                                             cold
## 29247                                             cold
## 29248                                             cold
## 29249                                             cold
## 29250                                             cold
## 29251                                             cold
## 29252                                             cold
## 29253                                             cold
## 29254                                             cold
## 29255                                             cold
## 29256                                             cold
## 29257                                             cold
## 29258                                             cold
## 29259                                             cold
## 29260                                             cold
## 29261                                             cold
## 29262                                             cold
## 29263                                             cold
## 29264                                             cold
## 29265                                             cold
## 29266                                             cold
## 29267                                             cold
## 29268                                             cold
## 29269                                             cold
## 29270                                             cold
## 29271                                             cold
## 29272                                             cold
## 29273                                             cold
## 29274                                             cold
## 29275                                             cold
## 29276                                             cold
## 29277                                             cold
## 29278                                             cold
## 29279                                             cold
## 29280                                             cold
## 29281                                             cold
## 29282                                      coldblooded
## 29283                                        coldrainy
## 29284                                          coldthe
## 29285                                    collaboration
## 29286                                          collage
## 29287                                           collar
## 29288                                           collar
## 29289                                           collar
## 29290                                        colleague
## 29291                                        colleague
## 29292                                        colleague
## 29293                                        colleague
## 29294                                          collect
## 29295                                       collection
## 29296                                       collection
## 29297                                       collection
## 29298                                          college
## 29299                                          college
## 29300                                          college
## 29301                                          college
## 29302                                          college
## 29303                                          college
## 29304                                          college
## 29305                                           collge
## 29306                                            colon
## 29307                                            colon
## 29308                                            color
## 29309                                            color
## 29310                                            color
## 29311                                            color
## 29312                                            color
## 29313                                            color
## 29314                                            color
## 29315                                            color
## 29316                                            color
## 29317                                            color
## 29318                                            color
## 29319                                            color
## 29320                                            color
## 29321                                            color
## 29322                                            color
## 29323                                            color
## 29324                                            color
## 29325                                            color
## 29326                                            color
## 29327                                         colorado
## 29328                                         colorado
## 29329                                         colorado
## 29330                                         colorful
## 29331                                         colorful
## 29332                                         colorful
## 29333                                         colorful
## 29334                                         colorful
## 29335                                           colour
## 29336                                         columbus
## 29337                                         columbus
## 29338                                             coma
## 29339                                             coma
## 29340                                      combination
## 29341                                      combination
## 29342                                      combination
## 29343                                      combination
## 29344                                      combination
## 29345                                      combination
## 29346                                      combination
## 29347                                      combination
## 29348                                      combination
## 29349                                      combination
## 29350                                          combine
## 29351                                          combine
## 29352                                          combine
## 29353                                          combine
## 29354                                          combine
## 29355                                          combine
## 29356                                          combine
## 29357                                          combine
## 29358                                          combine
## 29359                                          combine
## 29360                                          combine
## 29361                                            combo
## 29362                                            combo
## 29363                                            combo
## 29364                                            combo
## 29365                                            combo
## 29366                                             come
## 29367                                             come
## 29368                                             come
## 29369                                             come
## 29370                                             come
## 29371                                             come
## 29372                                             come
## 29373                                             come
## 29374                                             come
## 29375                                             come
## 29376                                             come
## 29377                                             come
## 29378                                             come
## 29379                                             come
## 29380                                             come
## 29381                                             come
## 29382                                             come
## 29383                                             come
## 29384                                             come
## 29385                                             come
## 29386                                             come
## 29387                                             come
## 29388                                             come
## 29389                                             come
## 29390                                             come
## 29391                                             come
## 29392                                             come
## 29393                                             come
## 29394                                             come
## 29395                                             come
## 29396                                             come
## 29397                                             come
## 29398                                             come
## 29399                                             come
## 29400                                             come
## 29401                                             come
## 29402                                             come
## 29403                                             come
## 29404                                             come
## 29405                                             come
## 29406                                             come
## 29407                                             come
## 29408                                             come
## 29409                                             come
## 29410                                             come
## 29411                                             come
## 29412                                             come
## 29413                                             come
## 29414                                             come
## 29415                                             come
## 29416                                             come
## 29417                                             come
## 29418                                             come
## 29419                                             come
## 29420                                             come
## 29421                                             come
## 29422                                             come
## 29423                                             come
## 29424                                             come
## 29425                                             come
## 29426                                             come
## 29427                                             come
## 29428                                             come
## 29429                                             come
## 29430                                             come
## 29431                                             come
## 29432                                             come
## 29433                                             come
## 29434                                             come
## 29435                                             come
## 29436                                             come
## 29437                                             come
## 29438                                             come
## 29439                                             come
## 29440                                             come
## 29441                                             come
## 29442                                             come
## 29443                                             come
## 29444                                             come
## 29445                                             come
## 29446                                             come
## 29447                                             come
## 29448                                             come
## 29449                                             come
## 29450                                             come
## 29451                                             come
## 29452                                             come
## 29453                                             come
## 29454                                             come
## 29455                                             come
## 29456                                             come
## 29457                                             come
## 29458                                             come
## 29459                                             come
## 29460                                             come
## 29461                                             come
## 29462                                             come
## 29463                                             come
## 29464                                             come
## 29465                                             come
## 29466                                             come
## 29467                                             come
## 29468                                             come
## 29469                                             come
## 29470                                             come
## 29471                                             come
## 29472                                             come
## 29473                                             come
## 29474                                             come
## 29475                                             come
## 29476                                             come
## 29477                                             come
## 29478                                             come
## 29479                                             come
## 29480                                             come
## 29481                                             come
## 29482                                             come
## 29483                                             come
## 29484                                             come
## 29485                                             come
## 29486                                             come
## 29487                                             come
## 29488                                             come
## 29489                                             come
## 29490                                             come
## 29491                                             come
## 29492                                             come
## 29493                                             come
## 29494                                             come
## 29495                                             come
## 29496                                             come
## 29497                                             come
## 29498                                             come
## 29499                                             come
## 29500                                             come
## 29501                                             come
## 29502                                             come
## 29503                                             come
## 29504                                             come
## 29505                                             come
## 29506                                             come
## 29507                                             come
## 29508                                             come
## 29509                                             come
## 29510                                             come
## 29511                                             come
## 29512                                             come
## 29513                                             come
## 29514                                             come
## 29515                                             come
## 29516                                             come
## 29517                                             come
## 29518                                             come
## 29519                                             come
## 29520                                             come
## 29521                                             come
## 29522                                             come
## 29523                                             come
## 29524                                             come
## 29525                                             come
## 29526                                             come
## 29527                                             come
## 29528                                             come
## 29529                                             come
## 29530                                             come
## 29531                                             come
## 29532                                             come
## 29533                                             come
## 29534                                             come
## 29535                                             come
## 29536                                             come
## 29537                                             come
## 29538                                             come
## 29539                                             come
## 29540                                             come
## 29541                                             come
## 29542                                             come
## 29543                                             come
## 29544                                             come
## 29545                                             come
## 29546                                             come
## 29547                                             come
## 29548                                             come
## 29549                                             come
## 29550                                             come
## 29551                                             come
## 29552                                             come
## 29553                                             come
## 29554                                             come
## 29555                                             come
## 29556                                             come
## 29557                                             come
## 29558                                             come
## 29559                                             come
## 29560                                             come
## 29561                                             come
## 29562                                             come
## 29563                                             come
## 29564                                             come
## 29565                                             come
## 29566                                             come
## 29567                                             come
## 29568                                             come
## 29569                                             come
## 29570                                             come
## 29571                                             come
## 29572                                             come
## 29573                                             come
## 29574                                             come
## 29575                                             come
## 29576                                             come
## 29577                                             come
## 29578                                             come
## 29579                                             come
## 29580                                             come
## 29581                                             come
## 29582                                             come
## 29583                                             come
## 29584                                             come
## 29585                                             come
## 29586                                             come
## 29587                                             come
## 29588                                             come
## 29589                                             come
## 29590                                             come
## 29591                                             come
## 29592                                             come
## 29593                                             come
## 29594                                             come
## 29595                                             come
## 29596                                             come
## 29597                                             come
## 29598                                             come
## 29599                                             come
## 29600                                             come
## 29601                                             come
## 29602                                             come
## 29603                                             come
## 29604                                             come
## 29605                                             come
## 29606                                             come
## 29607                                         comeback
## 29608                                          comfort
## 29609                                          comfort
## 29610                                          comfort
## 29611                                      comfortable
## 29612                                      comfortable
## 29613                                      comfortable
## 29614                                      comfortable
## 29615                                      comfortable
## 29616                                            comic
## 29617                                        comically
## 29618                                           coming
## 29619                                          commend
## 29620                                      commendable
## 29621                                          comment
## 29622                                          comment
## 29623                                          comment
## 29624                                          comment
## 29625                                          comment
## 29626                                          comment
## 29627                                          comment
## 29628                                          comment
## 29629                                          comment
## 29630                                          comment
## 29631                                          comment
## 29632                                          comment
## 29633                                          comment
## 29634                                          comment
## 29635                                          comment
## 29636                                          comment
## 29637                                          comment
## 29638                                          comment
## 29639                                          comment
## 29640                                          comment
## 29641                                          comment
## 29642                                          comment
## 29643                                          comment
## 29644                                          comment
## 29645                                          comment
## 29646                                       commentary
## 29647                                       commentary
## 29648                                        commenter
## 29649                                       commercial
## 29650                                       commercial
## 29651                                       commercial
## 29652                                       commercial
## 29653                                       commercial
## 29654                                       commercial
## 29655                                       commercial
## 29656                                       commercial
## 29657                                       commercial
## 29658                                       commercial
## 29659                                       commercial
## 29660                                    commercialize
## 29661                                    commercialize
## 29662                                    commercialize
## 29663                                    commercialize
## 29664                                    commercialize
## 29665                                    commercialize
## 29666                                    commercialize
## 29667                                    commercialize
## 29668                                       commission
## 29669                                           commit
## 29670                                           common
## 29671                                           common
## 29672                                           common
## 29673                                           common
## 29674                                           common
## 29675                                           common
## 29676                                           common
## 29677                                           common
## 29678                                         commoner
## 29679                                      communicate
## 29680                                      communicate
## 29681                                        community
## 29682                                        community
## 29683                                        community
## 29684                                        community
## 29685                                        community
## 29686                                        community
## 29687                                        community
## 29688                                        community
## 29689                                        community
## 29690                                        community
## 29691                                        community
## 29692                                        community
## 29693                                        community
## 29694                                        community
## 29695                                          commute
## 29696                                          commute
## 29697                                        companion
## 29698                                        companion
## 29699                                        companion
## 29700                                        companion
## 29701                                        companion
## 29702                                          company
## 29703                                          company
## 29704                                          company
## 29705                                          company
## 29706                                          company
## 29707                                          company
## 29708                                          company
## 29709                                          company
## 29710                                          company
## 29711                                          company
## 29712                                          company
## 29713                                          company
## 29714                                          company
## 29715                                          company
## 29716                                       comparable
## 29717                                       comparable
## 29718                                       comparable
## 29719                                       comparable
## 29720                                       comparable
## 29721                                       comparable
## 29722                                       comparable
## 29723                                       comparable
## 29724                                       comparable
## 29725                                       comparable
## 29726                                       comparable
## 29727                                       comparably
## 29728                                       comparably
## 29729                                      comparative
## 29730                                    comparatively
## 29731                                    comparatively
## 29732                                    comparatively
## 29733                                          compare
## 29734                                          compare
## 29735                                          compare
## 29736                                          compare
## 29737                                          compare
## 29738                                          compare
## 29739                                          compare
## 29740                                          compare
## 29741                                          compare
## 29742                                          compare
## 29743                                          compare
## 29744                                          compare
## 29745                                          compare
## 29746                                          compare
## 29747                                          compare
## 29748                                          compare
## 29749                                          compare
## 29750                                          compare
## 29751                                          compare
## 29752                                          compare
## 29753                                          compare
## 29754                                          compare
## 29755                                          compare
## 29756                                          compare
## 29757                                          compare
## 29758                                          compare
## 29759                                          compare
## 29760                                          compare
## 29761                                          compare
## 29762                                          compare
## 29763                                          compare
## 29764                                          compare
## 29765                                          compare
## 29766                                          compare
## 29767                                          compare
## 29768                                          compare
## 29769                                          compare
## 29770                                          compare
## 29771                                          compare
## 29772                                          compare
## 29773                                          compare
## 29774                                          compare
## 29775                                          compare
## 29776                                          compare
## 29777                                          compare
## 29778                                          compare
## 29779                                          compare
## 29780                                          compare
## 29781                                          compare
## 29782                                          compare
## 29783                                          compare
## 29784                                          compare
## 29785                                          compare
## 29786                                          compare
## 29787                                          compare
## 29788                                          compare
## 29789                                          compare
## 29790                                          compare
## 29791                                          compare
## 29792                                          compare
## 29793                                          compare
## 29794                                          compare
## 29795                                          compare
## 29796                                          compare
## 29797                                          compare
## 29798                                          compare
## 29799                                      compareable
## 29800                                       compareits
## 29801                                     comparethere
## 29802                                      comparewell
## 29803                                       comparison
## 29804                                       comparison
## 29805                                       comparison
## 29806                                       comparison
## 29807                                       comparison
## 29808                                       comparison
## 29809                                       comparison
## 29810                                       comparison
## 29811                                       comparison
## 29812                                       comparison
## 29813                                       comparison
## 29814                                       comparison
## 29815                                       comparison
## 29816                                       comparison
## 29817                                       comparison
## 29818                                       comparison
## 29819                                       comparison
## 29820                                       comparison
## 29821                                       comparison
## 29822                                       comparison
## 29823                                       comparison
## 29824                                       comparison
## 29825                                       comparison
## 29826                                       comparison
## 29827                                       comparison
## 29828                                       comparison
## 29829                                       comparison
## 29830                                       comparison
## 29831                                       comparison
## 29832                                       comparison
## 29833                                       comparison
## 29834                                       comparison
## 29835                                       comparison
## 29836                                       comparison
## 29837                                       comparsion
## 29838                                    compassionate
## 29839                                       compeition
## 29840                                           compel
## 29841                                           compel
## 29842                                           compel
## 29843                                      compeletely
## 29844                                       compensate
## 29845                                       compensate
## 29846                                       compensate
## 29847                                       compensate
## 29848                                       compensate
## 29849                                          compete
## 29850                                          compete
## 29851                                          compete
## 29852                                          compete
## 29853                                          compete
## 29854                                          compete
## 29855                                      competetion
## 29856                                      competetion
## 29857                                        competion
## 29858                                      competition
## 29859                                      competition
## 29860                                      competition
## 29861                                      competition
## 29862                                      competition
## 29863                                      competition
## 29864                                      competition
## 29865                                      competition
## 29866                                      competition
## 29867                                      competition
## 29868                                      competition
## 29869                                      competition
## 29870                                      competition
## 29871                                      competition
## 29872                                      competition
## 29873                                      competition
## 29874                                      competition
## 29875                                      competition
## 29876                                      competition
## 29877                                      competition
## 29878                                      competition
## 29879                                      competition
## 29880                                      competition
## 29881                              competitionfavorite
## 29882                                      competitive
## 29883                                       competitor
## 29884                                       competitor
## 29885                                       competitor
## 29886                                       competitor
## 29887                                       competitor
## 29888                                       competitor
## 29889                                       competitor
## 29890                                       competitor
## 29891                                       competitor
## 29892                                       competitor
## 29893                                       competitor
## 29894                                       competitor
## 29895                                       competitor
## 29896                                       competitor
## 29897                                       competitor
## 29898                                       competitor
## 29899                                       competitor
## 29900                                       complacent
## 29901                                         complain
## 29902                                         complain
## 29903                                         complain
## 29904                                         complain
## 29905                                         complain
## 29906                                         complain
## 29907                                         complain
## 29908                                         complain
## 29909                                         complain
## 29910                                         complain
## 29911                                         complain
## 29912                                         complain
## 29913                                         complain
## 29914                                         complain
## 29915                                         complain
## 29916                                         complain
## 29917                                         complain
## 29918                                        complaint
## 29919                                        complaint
## 29920                                        complaint
## 29921                                        complaint
## 29922                                        complaint
## 29923                                        complaint
## 29924                                        complaint
## 29925                                        complaint
## 29926                                        complaint
## 29927                                        complaint
## 29928                                        complaint
## 29929                                        complaint
## 29930                                        complaint
## 29931                                        complaint
## 29932                                        complaint
## 29933                                        complaint
## 29934                                        complaint
## 29935                                        complaint
## 29936                                       complement
## 29937                                       complement
## 29938                                       complement
## 29939                                         complete
## 29940                                         complete
## 29941                                         complete
## 29942                                         complete
## 29943                                         complete
## 29944                                         complete
## 29945                                         complete
## 29946                                         complete
## 29947                                         complete
## 29948                                         complete
## 29949                                         complete
## 29950                                         complete
## 29951                                         complete
## 29952                                         complete
## 29953                                         complete
## 29954                                         complete
## 29955                                         complete
## 29956                                         complete
## 29957                                         complete
## 29958                                         complete
## 29959                                         complete
## 29960                                         complete
## 29961                                         complete
## 29962                                         complete
## 29963                                         complete
## 29964                                         complete
## 29965                                         complete
## 29966                                         complete
## 29967                                         complete
## 29968                                       completely
## 29969                                       completely
## 29970                                       completely
## 29971                                       completely
## 29972                                       completely
## 29973                                       completely
## 29974                                       completely
## 29975                                       completely
## 29976                                       completely
## 29977                                       completely
## 29978                                       completely
## 29979                                       completely
## 29980                                       completely
## 29981                                       completely
## 29982                                       completely
## 29983                                       completely
## 29984                                       completely
## 29985                                       completely
## 29986                                       completely
## 29987                                       completely
## 29988                                       completely
## 29989                                       completely
## 29990                                       completely
## 29991                                       completely
## 29992                                       completely
## 29993                                       completely
## 29994                                       completely
## 29995                                       completely
## 29996                                       completely
## 29997                                       completely
## 29998                                       completely
## 29999                                       completely
## 30000                                       completely
## 30001                                       completely
## 30002                                       completely
## 30003                                       completely
## 30004                                       completely
## 30005                                       completely
## 30006                                       completely
## 30007                                       completely
## 30008                                       completely
## 30009                                       completely
## 30010                                        completly
## 30011                                        compliant
## 30012                                        compliant
## 30013                                       compliment
## 30014                                       compliment
## 30015                                       compliment
## 30016                                       compliment
## 30017                                       compliment
## 30018                                       compliment
## 30019                                       compliment
## 30020                                    complimentary
## 30021                                    complimentary
## 30022                                           comply
## 30023                                        component
## 30024                                        component
## 30025                                          compose
## 30026                                          compose
## 30027                                          compose
## 30028                                        composite
## 30029                                      composition
## 30030                                      composition
## 30031                                          compost
## 30032                                    comprehension
## 30033                                    comprehension
## 30034                                    comprehension
## 30035                                       compromise
## 30036                                  compromisethats
## 30037                                          comrade
## 30038                                        comradery
## 30039                                              con
## 30040                                              con
## 30041                                              con
## 30042                                              con
## 30043                                              con
## 30044                                              con
## 30045                                              con
## 30046                                              con
## 30047                                              con
## 30048                                              con
## 30049                                              con
## 30050                                              con
## 30051                                              con
## 30052                                              con
## 30053                                              con
## 30054                                      conceivable
## 30055                                      concentrate
## 30056                                      concentrate
## 30057                                      concentrate
## 30058                                    concentration
## 30059                                          concept
## 30060                                          concept
## 30061                                          concept
## 30062                                          concept
## 30063                                          concept
## 30064                                          concept
## 30065                                          concept
## 30066                                          concept
## 30067                                          concept
## 30068                                          concern
## 30069                                          concern
## 30070                                          concern
## 30071                                          concern
## 30072                                          concern
## 30073                                          concern
## 30074                                          concern
## 30075                                          concern
## 30076                                          concern
## 30077                                          concern
## 30078                                          concern
## 30079                                          concert
## 30080                                          concert
## 30081                                          concert
## 30082                                          concert
## 30083                                          concert
## 30084                                       concession
## 30085                                         conclude
## 30086                                       conclusion
## 30087                                       conclusion
## 30088                                       conclusion
## 30089                                       conclusion
## 30090                                       conclusion
## 30091                                       conclusion
## 30092                                       conclusion
## 30093                                       conclusion
## 30094                                       conclusion
## 30095                                       conclusion
## 30096                                          concoct
## 30097                                       concoction
## 30098                                         concrete
## 30099                                  concretecolored
## 30100                                       condescend
## 30101                                        condiment
## 30102                                        condiment
## 30103                                        condiment
## 30104                                        condiment
## 30105                                        condiment
## 30106                                        condiment
## 30107                                        condiment
## 30108                                        condiment
## 30109                                        condiment
## 30110                                        condiment
## 30111                                        condiment
## 30112                                        condiment
## 30113                                        condiment
## 30114                                        condiment
## 30115                                        condiment
## 30116                                        condiment
## 30117                                        condiment
## 30118                                        condiment
## 30119                                        condiment
## 30120                                        condiment
## 30121                                        condiment
## 30122                                        condiment
## 30123                                        condiment
## 30124                                        condiment
## 30125                                        condiment
## 30126                                        condiment
## 30127                                        condiment
## 30128                                        condiment
## 30129                                        condiment
## 30130                                        condiment
## 30131                                        condiment
## 30132                                        condiment
## 30133                                        condiment
## 30134                                        condiment
## 30135                                        condiment
## 30136                                        condiment
## 30137                                        condiment
## 30138                                        condiment
## 30139                                        condiment
## 30140                                        condiment
## 30141                                        condiment
## 30142                                        condition
## 30143                                        condition
## 30144                                        condition
## 30145                                        condition
## 30146                                     condocounter
## 30147                                          conduct
## 30148                                 coneyislandesque
## 30149                                             conf
## 30150                                       conference
## 30151                                       conference
## 30152                                       conference
## 30153                                       conference
## 30154                                          confess
## 30155                                       confession
## 30156                                       confidence
## 30157                                       confidence
## 30158                                    configuration
## 30159                                          confirm
## 30160                                          confirm
## 30161                                    confirmedpats
## 30162                                          conform
## 30163                                         confront
## 30164                                  confrontational
## 30165                                          confuse
## 30166                                          confuse
## 30167                                          confuse
## 30168                                          confuse
## 30169                                          confuse
## 30170                                          confuse
## 30171                                          confuse
## 30172                                          confuse
## 30173                                          confuse
## 30174                                          confuse
## 30175                                          confuse
## 30176                                        confusion
## 30177                                        confusion
## 30178                                          congeal
## 30179                                          congeal
## 30180                                          congeal
## 30181                                          congeal
## 30182                                          congeal
## 30183                                       congestion
## 30184                                     congratulate
## 30185                                   congratulation
## 30186                                         congress
## 30187                                         congress
## 30188                                      conjunction
## 30189                                          connect
## 30190                                      connecticut
## 30191                                       connection
## 30192                                      connoisseur
## 30193                                      connoisseur
## 30194                                   connoisseurbut
## 30195                                      connotation
## 30196                                          conquer
## 30197                                          conquer
## 30198                                       conscience
## 30199                                        conscious
## 30200                                      consciously
## 30201                                    consciousness
## 30202                                      consecutive
## 30203                                    consecutively
## 30204                                        consensus
## 30205                                        consensus
## 30206                                        consensus
## 30207                                      consequence
## 30208                                      consequence
## 30209                                     conservative
## 30210                                     conservative
## 30211                                     conservative
## 30212                                     conservative
## 30213                                     conservative
## 30214                                     conservative
## 30215                                         consider
## 30216                                         consider
## 30217                                         consider
## 30218                                         consider
## 30219                                         consider
## 30220                                         consider
## 30221                                         consider
## 30222                                         consider
## 30223                                         consider
## 30224                                         consider
## 30225                                         consider
## 30226                                         consider
## 30227                                         consider
## 30228                                         consider
## 30229                                         consider
## 30230                                         consider
## 30231                                         consider
## 30232                                         consider
## 30233                                         consider
## 30234                                         consider
## 30235                                         consider
## 30236                                         consider
## 30237                                         consider
## 30238                                         consider
## 30239                                         consider
## 30240                                         consider
## 30241                                         consider
## 30242                                         consider
## 30243                                         consider
## 30244                                         consider
## 30245                                         consider
## 30246                                         consider
## 30247                                         consider
## 30248                                         consider
## 30249                                         consider
## 30250                                         consider
## 30251                                     considerable
## 30252                                     considerably
## 30253                                     considerably
## 30254                                    consideration
## 30255                                    consideration
## 30256                                          consist
## 30257                                          consist
## 30258                                          consist
## 30259                                      consistency
## 30260                                      consistency
## 30261                                      consistency
## 30262                                      consistency
## 30263                                      consistency
## 30264                                      consistency
## 30265                                      consistency
## 30266                                     consistencys
## 30267                                       consistent
## 30268                                       consistent
## 30269                                       consistent
## 30270                                       consistent
## 30271                                       consistent
## 30272                                       consistent
## 30273                                       consistent
## 30274                                       consistent
## 30275                                       consistent
## 30276                                     consistently
## 30277                                     consistently
## 30278                                     consistently
## 30279                                     consistently
## 30280                                     consistently
## 30281                                     consistently
## 30282                                      consolation
## 30283                                          console
## 30284                                       conspiracy
## 30285                                         constant
## 30286                                         constant
## 30287                                         constant
## 30288                                         constant
## 30289                                       constantly
## 30290                                       constantly
## 30291                                       constantly
## 30292                                       constipate
## 30293                                     constitution
## 30294                                     constitution
## 30295                                     construction
## 30296                                     constructive
## 30297                                         construe
## 30298                                          consume
## 30299                                          consume
## 30300                                          consume
## 30301                                          consume
## 30302                                          consume
## 30303                                          consume
## 30304                                          consume
## 30305                                          consume
## 30306                                      consumption
## 30307                                      consumption
## 30308                                      consumption
## 30309                                      consumption
## 30310                                          contact
## 30311                                          contact
## 30312                                          contact
## 30313                                          contact
## 30314                                          contact
## 30315                                          contact
## 30316                                          contact
## 30317                                          contain
## 30318                                          contain
## 30319                                          contain
## 30320                                        container
## 30321                                        container
## 30322                                        container
## 30323                                        container
## 30324                                      contemplate
## 30325                                     contemporary
## 30326                                     contemporary
## 30327                                         contempt
## 30328                                         contempt
## 30329                                        contender
## 30330                                        contender
## 30331                                        contender
## 30332                                          content
## 30333                                          content
## 30334                                          content
## 30335                                          content
## 30336                                          content
## 30337                                          content
## 30338                                          content
## 30339                                       contention
## 30340                                          contest
## 30341                                          contest
## 30342                                          contest
## 30343                                       contestant
## 30344                                          context
## 30345                                          context
## 30346                                          context
## 30347                                        continent
## 30348                                         continue
## 30349                                         continue
## 30350                                         continue
## 30351                                         continue
## 30352                                         continue
## 30353                                         continue
## 30354                                         continue
## 30355                                         continue
## 30356                                         continue
## 30357                                         continue
## 30358                                         continue
## 30359                                         continue
## 30360                                         continue
## 30361                                         continue
## 30362                                         continue
## 30363                                         continue
## 30364                                         continue
## 30365                                         continue
## 30366                                         continue
## 30367                                         continue
## 30368                                         continue
## 30369                                         continue
## 30370                                         continue
## 30371                                         continue
## 30372                                         continue
## 30373                                         continue
## 30374                                       continuous
## 30375                                           contra
## 30376                                         contrary
## 30377                                         contrary
## 30378                                         contrast
## 30379                                         contrast
## 30380                                         contrast
## 30381                                         contrast
## 30382                                         contrast
## 30383                                       contribute
## 30384                                       contribute
## 30385                                       contribute
## 30386                                       contribute
## 30387                                         contrive
## 30388                                          control
## 30389                                          control
## 30390                                          control
## 30391                                          control
## 30392                                          control
## 30393                                          control
## 30394                                          control
## 30395                                    controversial
## 30396                                    controversial
## 30397                                    controversial
## 30398                                    controversial
## 30399                                    controversial
## 30400                                      controversy
## 30401                                      controversy
## 30402                                      controversy
## 30403                                      controversy
## 30404                                      controversy
## 30405                                      controversy
## 30406                                      controversy
## 30407                                      convenience
## 30408                                      convenience
## 30409                                      convenience
## 30410                                       convenient
## 30411                                       convenient
## 30412                                     conveniently
## 30413                                     conveniently
## 30414                                     conveniently
## 30415                                       convention
## 30416                                       convention
## 30417                                       convention
## 30418                                       conversant
## 30419                                      conversated
## 30420                                     conversation
## 30421                                     conversation
## 30422                                     conversation
## 30423                                     conversation
## 30424                                     conversation
## 30425                                     conversation
## 30426                                     conversation
## 30427                                     conversation
## 30428                                     conversation
## 30429                                     conversation
## 30430                                          convert
## 30431                                          convert
## 30432                                          convert
## 30433                                           convey
## 30434                                         convince
## 30435                                         convince
## 30436                                         convince
## 30437                                         convince
## 30438                                         convince
## 30439                                         convince
## 30440                                         convince
## 30441                                         convince
## 30442                                         convince
## 30443                                         convince
## 30444                                         convince
## 30445                                            convo
## 30446                                        convolute
## 30447                                             cook
## 30448                                             cook
## 30449                                             cook
## 30450                                             cook
## 30451                                             cook
## 30452                                             cook
## 30453                                             cook
## 30454                                             cook
## 30455                                             cook
## 30456                                             cook
## 30457                                             cook
## 30458                                             cook
## 30459                                             cook
## 30460                                             cook
## 30461                                             cook
## 30462                                             cook
## 30463                                             cook
## 30464                                             cook
## 30465                                             cook
## 30466                                             cook
## 30467                                             cook
## 30468                                             cook
## 30469                                             cook
## 30470                                             cook
## 30471                                             cook
## 30472                                             cook
## 30473                                             cook
## 30474                                             cook
## 30475                                             cook
## 30476                                             cook
## 30477                                             cook
## 30478                                             cook
## 30479                                             cook
## 30480                                             cook
## 30481                                             cook
## 30482                                             cook
## 30483                                             cook
## 30484                                             cook
## 30485                                             cook
## 30486                                             cook
## 30487                                             cook
## 30488                                             cook
## 30489                                             cook
## 30490                                             cook
## 30491                                             cook
## 30492                                             cook
## 30493                                             cook
## 30494                                             cook
## 30495                                             cook
## 30496                                             cook
## 30497                                             cook
## 30498                                             cook
## 30499                                             cook
## 30500                                             cook
## 30501                                             cook
## 30502                                             cook
## 30503                                             cook
## 30504                                             cook
## 30505                                             cook
## 30506                                             cook
## 30507                                             cook
## 30508                                             cook
## 30509                                             cook
## 30510                                             cook
## 30511                                             cook
## 30512                                             cook
## 30513                                             cook
## 30514                                             cook
## 30515                                             cook
## 30516                                             cook
## 30517                                             cook
## 30518                                             cook
## 30519                                             cook
## 30520                                             cook
## 30521                                          cookand
## 30522                                           cooker
## 30523                                           cookie
## 30524                                        cookuntil
## 30525                                             cool
## 30526                                             cool
## 30527                                             cool
## 30528                                             cool
## 30529                                             cool
## 30530                                             cool
## 30531                                             cool
## 30532                                             cool
## 30533                                             cool
## 30534                                             cool
## 30535                                             cool
## 30536                                             cool
## 30537                                             cool
## 30538                                             cool
## 30539                                             cool
## 30540                                             cool
## 30541                                             cool
## 30542                                             cool
## 30543                                             cool
## 30544                                             cool
## 30545                                             cool
## 30546                                             cool
## 30547                                             cool
## 30548                                             cool
## 30549                                             cool
## 30550                                             cool
## 30551                                             cool
## 30552                                             cool
## 30553                                             cool
## 30554                                             cool
## 30555                                             cool
## 30556                                             cool
## 30557                                             cool
## 30558                                             cool
## 30559                                             cool
## 30560                                             cool
## 30561                                             cool
## 30562                                             cool
## 30563                                             cool
## 30564                                             cool
## 30565                                             cool
## 30566                                             cool
## 30567                                             cool
## 30568                                             cool
## 30569                                             cool
## 30570                                             cool
## 30571                                             cool
## 30572                                             cool
## 30573                                             cool
## 30574                                             cool
## 30575                                             cool
## 30576                                             cool
## 30577                                             cool
## 30578                                             cool
## 30579                                             cool
## 30580                                             cool
## 30581                                      cooperstown
## 30582                                              cop
## 30583                                              cop
## 30584                                              cop
## 30585                                              cop
## 30586                                              cop
## 30587                                              cop
## 30588                                              cop
## 30589                                              cop
## 30590                                              cop
## 30591                                              cop
## 30592                                              cop
## 30593                                              cop
## 30594                                              cop
## 30595                                              cop
## 30596                                              cop
## 30597                                              cop
## 30598                                              cop
## 30599                                              cop
## 30600                                              cop
## 30601                                             cope
## 30602                                          copious
## 30603                                 copsfirefighters
## 30604                                             copy
## 30605                                             copy
## 30606                                             copy
## 30607                                          copycat
## 30608                                             core
## 30609                                             core
## 30610                                           corner
## 30611                                           corner
## 30612                                           corner
## 30613                                           corner
## 30614                                           corner
## 30615                                           corner
## 30616                                           corner
## 30617                                           corner
## 30618                                           corner
## 30619                                           corner
## 30620                                           corner
## 30621                                           corner
## 30622                                           corner
## 30623                                           corner
## 30624                                           corner
## 30625                                           corner
## 30626                                           corner
## 30627                                           corner
## 30628                                           corner
## 30629                                           corner
## 30630                                           corner
## 30631                                           corner
## 30632                                           corner
## 30633                                           corner
## 30634                                           corner
## 30635                                           corner
## 30636                                           corner
## 30637                                           corner
## 30638                                           corner
## 30639                                           corner
## 30640                                           corner
## 30641                                           corner
## 30642                                           corner
## 30643                                           corner
## 30644                                           corner
## 30645                                           corner
## 30646                                           corner
## 30647                                           corner
## 30648                                           corner
## 30649                                           corner
## 30650                                           corner
## 30651                                           corner
## 30652                                           corner
## 30653                                           corner
## 30654                                           corner
## 30655                                           corner
## 30656                                           corner
## 30657                                           corner
## 30658                                           corner
## 30659                                           corner
## 30660                                      cornerstone
## 30661                                           corona
## 30662                                      coronavirus
## 30663                                        corporate
## 30664                                        corporate
## 30665                                      corporation
## 30666                                           corpus
## 30667                                          correct
## 30668                                          correct
## 30669                                          correct
## 30670                                          correct
## 30671                                          correct
## 30672                                          correct
## 30673                                          correct
## 30674                                          correct
## 30675                                          correct
## 30676                                          correct
## 30677                                          correct
## 30678                                          correct
## 30679                                        correctly
## 30680                                        correctly
## 30681                                        correctly
## 30682                                        correctly
## 30683                                        correctly
## 30684                                        correctly
## 30685                                        correctly
## 30686                                        correctly
## 30687                                        correctly
## 30688                                        correctly
## 30689                                        correctly
## 30690                                        correctly
## 30691                                        correctly
## 30692                                        correctly
## 30693                                        correctly
## 30694                                        correctly
## 30695                                        correctly
## 30696                                        correlate
## 30697                                       correspond
## 30698                                      corroborate
## 30699                                          corrupt
## 30700                                           cosmis
## 30701                                           cosmis
## 30702                                           cosmis
## 30703                                           cosmis
## 30704                                             cost
## 30705                                             cost
## 30706                                             cost
## 30707                                             cost
## 30708                                             cost
## 30709                                             cost
## 30710                                             cost
## 30711                                             cost
## 30712                                             cost
## 30713                                             cost
## 30714                                             cost
## 30715                                             cost
## 30716                                             cost
## 30717                                             cost
## 30718                                             cost
## 30719                                             cost
## 30720                                             cost
## 30721                                             cost
## 30722                                             cost
## 30723                                             cost
## 30724                                             cost
## 30725                                             cost
## 30726                                             cost
## 30727                                             cost
## 30728                                             cost
## 30729                                             cost
## 30730                                             cost
## 30731                                             cost
## 30732                                             cost
## 30733                                             cost
## 30734                                             cost
## 30735                                             cost
## 30736                                             cost
## 30737                                             cost
## 30738                                             cost
## 30739                                             cost
## 30740                                             cost
## 30741                                             cost
## 30742                                             cost
## 30743                                           costco
## 30744                                           costco
## 30745                                           costco
## 30746                                          costcos
## 30747                                           costly
## 30748                                          costume
## 30749                                         costumer
## 30750                                         costumer
## 30751                                        costumers
## 30752                                          cottman
## 30753                                           cotton
## 30754                                            couch
## 30755                                            cough
## 30756                                            cough
## 30757                                            cough
## 30758                                          couldnt
## 30759                                          couldnt
## 30760                                          couldnt
## 30761                                          couldnt
## 30762                                          couldnt
## 30763                                          couldnt
## 30764                                          couldnt
## 30765                                          couldnt
## 30766                                          couldnt
## 30767                                          couldnt
## 30768                                          couldnt
## 30769                                          couldnt
## 30770                                          couldnt
## 30771                                          couldnt
## 30772                                          couldnt
## 30773                                          couldnt
## 30774                                          couldnt
## 30775                                          couldnt
## 30776                                          couldnt
## 30777                                          couldnt
## 30778                                          couldnt
## 30779                                          couldnt
## 30780                                          couldnt
## 30781                                          couldnt
## 30782                                          couldnt
## 30783                                          couldnt
## 30784                                          couldnt
## 30785                                          couldnt
## 30786                                          couldnt
## 30787                                          couldnt
## 30788                                          couldnt
## 30789                                          couldnt
## 30790                                          couldve
## 30791                                          couldve
## 30792                                          couldve
## 30793                                          couldve
## 30794                                            count
## 30795                                            count
## 30796                                            count
## 30797                                            count
## 30798                                            count
## 30799                                            count
## 30800                                            count
## 30801                                            count
## 30802                                            count
## 30803                                            count
## 30804                                            count
## 30805                                            count
## 30806                                          counter
## 30807                                          counter
## 30808                                          counter
## 30809                                          counter
## 30810                                          counter
## 30811                                          counter
## 30812                                          counter
## 30813                                          counter
## 30814                                          counter
## 30815                                          counter
## 30816                                          counter
## 30817                                          counter
## 30818                                          counter
## 30819                                          counter
## 30820                                          counter
## 30821                                          counter
## 30822                                          counter
## 30823                                          counter
## 30824                                          counter
## 30825                                          counter
## 30826                                          counter
## 30827                                          counter
## 30828                                          counter
## 30829                                          counter
## 30830                                          counter
## 30831                                          counter
## 30832                                          counter
## 30833                                          counter
## 30834                                          counter
## 30835                                          counter
## 30836                                          counter
## 30837                                          counter
## 30838                                          counter
## 30839                                          counter
## 30840                                          counter
## 30841                                          counter
## 30842                                          counter
## 30843                                          counter
## 30844                                          counter
## 30845                                          counter
## 30846                                          counter
## 30847                                          counter
## 30848                                          counter
## 30849                                          counter
## 30850                                          counter
## 30851                                          counter
## 30852                                          counter
## 30853                                          counter
## 30854                                          counter
## 30855                                          counter
## 30856                                          counter
## 30857                                          counter
## 30858                                          counter
## 30859                                          counter
## 30860                                          counter
## 30861                                          counter
## 30862                                          counter
## 30863                                          counter
## 30864                                          counter
## 30865                                          counter
## 30866                                          counter
## 30867                                          counter
## 30868                                          counter
## 30869                                          counter
## 30870                                          counter
## 30871                                          counter
## 30872                                          counter
## 30873                                          counter
## 30874                                          counter
## 30875                                          counter
## 30876                                  counterargument
## 30877                                      counterfeit
## 30878                               counterintuitively
## 30879                                      counterpart
## 30880                                    counterperson
## 30881                                  counterremember
## 30882                                      countertops
## 30883                                        countless
## 30884                                        countless
## 30885                                        countless
## 30886                                        countless
## 30887                                        countless
## 30888                                          country
## 30889                                          country
## 30890                                          country
## 30891                                          country
## 30892                                          country
## 30893                                          country
## 30894                                          country
## 30895                                          country
## 30896                                          country
## 30897                                          country
## 30898                                          country
## 30899                                          country
## 30900                                          country
## 30901                                          country
## 30902                                          country
## 30903                                          country
## 30904                                          country
## 30905                                          country
## 30906                                          country
## 30907                                          country
## 30908                                          country
## 30909                                          country
## 30910                                          country
## 30911                                          country
## 30912                                          country
## 30913                                          country
## 30914                                          country
## 30915                                          country
## 30916                                          country
## 30917                                          country
## 30918                                          country
## 30919                                          country
## 30920                                          country
## 30921                                          country
## 30922                                          country
## 30923                                          country
## 30924                                          country
## 30925                                          country
## 30926                                          country
## 30927                                          country
## 30928                                          country
## 30929                                          country
## 30930                                          country
## 30931                                          country
## 30932                                          country
## 30933                                          country
## 30934                                          country
## 30935                                          country
## 30936                                          country
## 30937                                          country
## 30938                                          country
## 30939                                          country
## 30940                                         countrys
## 30941                                         countrys
## 30942                                       countsyeah
## 30943                                           couple
## 30944                                           couple
## 30945                                           couple
## 30946                                           couple
## 30947                                           couple
## 30948                                           couple
## 30949                                           couple
## 30950                                           couple
## 30951                                           couple
## 30952                                           couple
## 30953                                           couple
## 30954                                           couple
## 30955                                           couple
## 30956                                           couple
## 30957                                           couple
## 30958                                           couple
## 30959                                           couple
## 30960                                           couple
## 30961                                           couple
## 30962                                           couple
## 30963                                           couple
## 30964                                           couple
## 30965                                           couple
## 30966                                           couple
## 30967                                           couple
## 30968                                           couple
## 30969                                           couple
## 30970                                           couple
## 30971                                           couple
## 30972                                           couple
## 30973                                           couple
## 30974                                           couple
## 30975                                           couple
## 30976                                           couple
## 30977                                           couple
## 30978                                           couple
## 30979                                           couple
## 30980                                           couple
## 30981                                           couple
## 30982                                           couple
## 30983                                           couple
## 30984                                           couple
## 30985                                           coupon
## 30986                                          courage
## 30987                                          courage
## 30988                                       courageous
## 30989                                           course
## 30990                                           course
## 30991                                           course
## 30992                                           course
## 30993                                           course
## 30994                                           course
## 30995                                           course
## 30996                                           course
## 30997                                           course
## 30998                                           course
## 30999                                           course
## 31000                                           course
## 31001                                           course
## 31002                                           course
## 31003                                           course
## 31004                                           course
## 31005                                           course
## 31006                                           course
## 31007                                           course
## 31008                                           course
## 31009                                           course
## 31010                                           course
## 31011                                           course
## 31012                                           course
## 31013                                           course
## 31014                                           course
## 31015                                           course
## 31016                                           course
## 31017                                           course
## 31018                                           course
## 31019                                           course
## 31020                                           course
## 31021                                           course
## 31022                                           course
## 31023                                           course
## 31024                                           course
## 31025                                           course
## 31026                                           course
## 31027                                           course
## 31028                                           course
## 31029                                           course
## 31030                                           course
## 31031                                           course
## 31032                                           course
## 31033                                           course
## 31034                                           course
## 31035                                           course
## 31036                                           course
## 31037                                            court
## 31038                                            court
## 31039                                            court
## 31040                                            court
## 31041                                            court
## 31042                                            court
## 31043                                            court
## 31044                                        courteous
## 31045                                        courteous
## 31046                                        courteous
## 31047                                        courteous
## 31048                                        courteous
## 31049                                        courteous
## 31050                                         courtesy
## 31051                                            couse
## 31052                                           cousin
## 31053                                           cousin
## 31054                                           cousin
## 31055                                           cousin
## 31056                                           cousin
## 31057                                           cousin
## 31058                                           cousin
## 31059                                           cousin
## 31060                                           cousin
## 31061                                           cousin
## 31062                                           cousin
## 31063                                           cousin
## 31064                                             cove
## 31065                                            cover
## 31066                                            cover
## 31067                                            cover
## 31068                                            cover
## 31069                                            cover
## 31070                                            cover
## 31071                                            cover
## 31072                                            cover
## 31073                                            cover
## 31074                                            cover
## 31075                                            cover
## 31076                                            cover
## 31077                                            cover
## 31078                                            cover
## 31079                                            cover
## 31080                                            cover
## 31081                                            cover
## 31082                                            cover
## 31083                                            cover
## 31084                                            cover
## 31085                                            cover
## 31086                                            cover
## 31087                                            cover
## 31088                                            cover
## 31089                                            cover
## 31090                                            cover
## 31091                                         coverage
## 31092                                         coverage
## 31093                                            covet
## 31094                                            covid
## 31095                                            covid
## 31096                                            covid
## 31097                                            covid
## 31098                                            covid
## 31099                                              cow
## 31100                                              cow
## 31101                                              cow
## 31102                                              cow
## 31103                                              cow
## 31104                                              cow
## 31105                                              cow
## 31106                                              cow
## 31107                                              cow
## 31108                                         cowardly
## 31109                                         cowardly
## 31110                                         coworker
## 31111                                         coworker
## 31112                                         coworker
## 31113                                         coworker
## 31114                                         coworker
## 31115                                         coworker
## 31116                                         coworker
## 31117                                         coworker
## 31118                                         coworker
## 31119                                         coworker
## 31120                                         coworker
## 31121                                         coworker
## 31122                                         coworker
## 31123                                         coworker
## 31124                                         coworker
## 31125                                         coworker
## 31126                                         coworker
## 31127                                         coworker
## 31128                                         coworker
## 31129                                         coworker
## 31130                                         coworker
## 31131                                         coworker
## 31132                                              coz
## 31133                                              coz
## 31134                                             cozy
## 31135                                             crab
## 31136                                            crack
## 31137                                            crack
## 31138                                            crack
## 31139                                            crack
## 31140                                            crack
## 31141                                            crack
## 31142                                            crack
## 31143                                            crack
## 31144                                            crack
## 31145                                            crack
## 31146                                            crack
## 31147                                            crack
## 31148                                            crack
## 31149                                            crack
## 31150                                          cracker
## 31151                                            craft
## 31152                                            craft
## 31153                                            craft
## 31154                                            craft
## 31155                                            craft
## 31156                                            craft
## 31157                                            cramp
## 31158                                            cramp
## 31159                                       crampacked
## 31160                                            crank
## 31161                                            crank
## 31162                                            crank
## 31163                                             crap
## 31164                                             crap
## 31165                                             crap
## 31166                                             crap
## 31167                                             crap
## 31168                                             crap
## 31169                                             crap
## 31170                                             crap
## 31171                                             crap
## 31172                                             crap
## 31173                                             crap
## 31174                                             crap
## 31175                                             crap
## 31176                                             crap
## 31177                                             crap
## 31178                                             crap
## 31179                                             crap
## 31180                                             crap
## 31181                                             crap
## 31182                                             crap
## 31183                                             crap
## 31184                                             crap
## 31185                                             crap
## 31186                                             crap
## 31187                                             crap
## 31188                                             crap
## 31189                                             crap
## 31190                                             crap
## 31191                                             crap
## 31192                                             crap
## 31193                                             crap
## 31194                                             crap
## 31195                                             crap
## 31196                                             crap
## 31197                                             crap
## 31198                                             crap
## 31199                                             crap
## 31200                                             crap
## 31201                                             crap
## 31202                                             crap
## 31203                                             crap
## 31204                                         craphole
## 31205                                           crappy
## 31206                                           crappy
## 31207                                           crappy
## 31208                                           crappy
## 31209                                           crappy
## 31210                                           crappy
## 31211                                           crappy
## 31212                                           crappy
## 31213                                           crappy
## 31214                                           crappy
## 31215                                           crappy
## 31216                                           crappy
## 31217                                           crappy
## 31218                                           crappy
## 31219                                           crappy
## 31220                                           crappy
## 31221                                           crappy
## 31222                                           crappy
## 31223                                           crappy
## 31224                                           crappy
## 31225                                           crappy
## 31226                                           crappy
## 31227                                           crappy
## 31228                                           crappy
## 31229                                           crappy
## 31230                                           crappy
## 31231                                        crappynes
## 31232                                      craptacular
## 31233                                            crapy
## 31234                                            crapy
## 31235                                            crave
## 31236                                            crave
## 31237                                            crave
## 31238                                            crave
## 31239                                            crave
## 31240                                            crave
## 31241                                            crave
## 31242                                            crave
## 31243                                            crave
## 31244                                            crave
## 31245                                            crave
## 31246                                            crave
## 31247                                            crave
## 31248                                            crave
## 31249                                            crave
## 31250                                            crave
## 31251                                            crave
## 31252                                            crave
## 31253                                            crave
## 31254                                            crave
## 31255                                          craving
## 31256                                          craving
## 31257                                          craving
## 31258                                      cravingwell
## 31259                                            crawl
## 31260                                            crawl
## 31261                                            crawl
## 31262                                            crawl
## 31263                                            craze
## 31264                                            craze
## 31265                                            craze
## 31266                                            crazy
## 31267                                            crazy
## 31268                                            crazy
## 31269                                            crazy
## 31270                                            crazy
## 31271                                            crazy
## 31272                                            crazy
## 31273                                            crazy
## 31274                                            crazy
## 31275                                            crazy
## 31276                                            crazy
## 31277                                            crazy
## 31278                                            crazy
## 31279                                            crazy
## 31280                                            crazy
## 31281                                            crazy
## 31282                                            crazy
## 31283                                            crazy
## 31284                                            crazy
## 31285                                            crazy
## 31286                                            crazy
## 31287                                            crazy
## 31288                                            crazy
## 31289                                            crazy
## 31290                                            crazy
## 31291                                            crazy
## 31292                                            crazy
## 31293                                            crazy
## 31294                                            crazy
## 31295                                            crazy
## 31296                                            crazy
## 31297                                            crazy
## 31298                                            crazy
## 31299                                            crazy
## 31300                                            cream
## 31301                                            cream
## 31302                                       creaminess
## 31303                                       creaminess
## 31304                                           creamy
## 31305                                           creamy
## 31306                                           creamy
## 31307                                           creamy
## 31308                                           crease
## 31309                                           create
## 31310                                           create
## 31311                                           create
## 31312                                           create
## 31313                                           create
## 31314                                           create
## 31315                                           create
## 31316                                           create
## 31317                                           create
## 31318                                           create
## 31319                                           create
## 31320                                           create
## 31321                                           create
## 31322                                           create
## 31323                                           create
## 31324                                           create
## 31325                                           create
## 31326                                         creation
## 31327                                         creative
## 31328                                             cred
## 31329                                           credit
## 31330                                           credit
## 31331                                           credit
## 31332                                           credit
## 31333                                           credit
## 31334                                      creditdebit
## 31335                                            credo
## 31336                                            creed
## 31337                                            creep
## 31338                                            creep
## 31339                                          creeped
## 31340                                           creepy
## 31341                                           creepy
## 31342                                             crew
## 31343                                           crewat
## 31344                                            crime
## 31345                                            crime
## 31346                                         criminal
## 31347                                           cringe
## 31348                                           crisis
## 31349                                            crisp
## 31350                                            crisp
## 31351                                            crisp
## 31352                                            crisp
## 31353                                            crisp
## 31354                                            crisp
## 31355                                            crisp
## 31356                                            crisp
## 31357                                            crisp
## 31358                                            crisp
## 31359                                            crisp
## 31360                                            crisp
## 31361                                           crispy
## 31362                                           crispy
## 31363                                           crispy
## 31364                                           crispy
## 31365                                           crispy
## 31366                                           crispy
## 31367                                           crispy
## 31368                                           crispy
## 31369                                           crispy
## 31370                                           crispy
## 31371                                           crispy
## 31372                                           crispy
## 31373                                           crispy
## 31374                                           crispy
## 31375                                           crispy
## 31376                                           crispy
## 31377                                           crispy
## 31378                                           crispy
## 31379                                           crispy
## 31380                                        criterion
## 31381                                        criterion
## 31382                                        criterion
## 31383                                           critic
## 31384                                           critic
## 31385                                           critic
## 31386                                           critic
## 31387                                           critic
## 31388                                         critical
## 31389                                         critical
## 31390                                         critical
## 31391                                        criticism
## 31392                                        criticism
## 31393                                        criticism
## 31394                                        criticism
## 31395                                        criticize
## 31396                                         critique
## 31397                                         critique
## 31398                                          cronuts
## 31399                                            crook
## 31400                                            cross
## 31401                                            cross
## 31402                                            cross
## 31403                                            cross
## 31404                                            cross
## 31405                                            cross
## 31406                                            cross
## 31407                                            cross
## 31408                                            cross
## 31409                                            cross
## 31410                                        crossfire
## 31411                                      crossstreet
## 31412                                      crossstreet
## 31413                                             crow
## 31414                                             crow
## 31415                                             crow
## 31416                                             crow
## 31417                                             crow
## 31418                                             crow
## 31419                                             crow
## 31420                                             crow
## 31421                                            crowd
## 31422                                            crowd
## 31423                                            crowd
## 31424                                            crowd
## 31425                                            crowd
## 31426                                            crowd
## 31427                                            crowd
## 31428                                            crowd
## 31429                                            crowd
## 31430                                            crowd
## 31431                                            crowd
## 31432                                            crowd
## 31433                                            crowd
## 31434                                            crowd
## 31435                                            crowd
## 31436                                            crowd
## 31437                                            crowd
## 31438                                            crowd
## 31439                                            crowd
## 31440                                            crowd
## 31441                                            crowd
## 31442                                            crowd
## 31443                                            crowd
## 31444                                            crowd
## 31445                                            crowd
## 31446                                            crowd
## 31447                                            crowd
## 31448                                            crowd
## 31449                                            crowd
## 31450                                            crowd
## 31451                                            crowd
## 31452                                            crowd
## 31453                                            crowd
## 31454                                            crowd
## 31455                                            crowd
## 31456                                            crowd
## 31457                                            crowd
## 31458                                            crowd
## 31459                                            crowd
## 31460                                            crowd
## 31461                                            crowd
## 31462                                            crowd
## 31463                                            crowd
## 31464                                            crown
## 31465                                            crown
## 31466                                            crown
## 31467                                            crown
## 31468                                            crown
## 31469                                             crps
## 31470                                          crudely
## 31471                                            cruel
## 31472                                            cruel
## 31473                                            cruel
## 31474                                          crumble
## 31475                                           crummy
## 31476                                           crunch
## 31477                                           crunch
## 31478                                           crunch
## 31479                                           crunch
## 31480                                           crunch
## 31481                                           crunch
## 31482                                           crunch
## 31483                                           crunch
## 31484                                           crunch
## 31485                                          crunchy
## 31486                                          crunchy
## 31487                                          crunchy
## 31488                                          crunchy
## 31489                                          crunchy
## 31490                                          crunchy
## 31491                                          crunchy
## 31492                                          crunchy
## 31493                                          crunchy
## 31494                                          crunchy
## 31495                                          crunchy
## 31496                                          crunchy
## 31497                                          crunchy
## 31498                                          crunchy
## 31499                                          crunchy
## 31500                                          crunchy
## 31501                                          crunchy
## 31502                                          crunchy
## 31503                                          crunchy
## 31504                                          crunchy
## 31505                                          crunchy
## 31506                                          crusade
## 31507                                         crusader
## 31508                                            crush
## 31509                                            crush
## 31510                                            crush
## 31511                                            crust
## 31512                                            crust
## 31513                                            crust
## 31514                                            crust
## 31515                                           crusty
## 31516                                           crusty
## 31517                                           crusty
## 31518                                           crusty
## 31519                                           crusty
## 31520                                           crusty
## 31521                                           crusty
## 31522                                              cry
## 31523                                              cry
## 31524                                              cry
## 31525                                     cryptofacism
## 31526                                          crystal
## 31527                                          crédito
## 31528                                              css
## 31529                                               ct
## 31530                                               ct
## 31531                                             cube
## 31532                                         cucumber
## 31533                                           cuddle
## 31534                                           cuddos
## 31535                                              cue
## 31536                                          cuisine
## 31537                                          cuisine
## 31538                                          cuisine
## 31539                                          cuisine
## 31540                                          cuisine
## 31541                                          cuisine
## 31542                                          cuisine
## 31543                                         culinary
## 31544                                         culinary
## 31545                                         culinary
## 31546                                         culinary
## 31547                                         culinary
## 31548                                             cult
## 31549                                       culturally
## 31550                                          culture
## 31551                                          culture
## 31552                                          culture
## 31553                                          culture
## 31554                                          culture
## 31555                                          culture
## 31556                                          culture
## 31557                                          culture
## 31558                                          culture
## 31559                                          culture
## 31560                                          culture
## 31561                                          culture
## 31562                                          culture
## 31563                                          culture
## 31564                                          culture
## 31565                                              cup
## 31566                                              cup
## 31567                                              cup
## 31568                                              cup
## 31569                                              cup
## 31570                                              cup
## 31571                                              cup
## 31572                                              cup
## 31573                                              cup
## 31574                                              cup
## 31575                                              cup
## 31576                                              cup
## 31577                                              cup
## 31578                                              cup
## 31579                                              cup
## 31580                                              cup
## 31581                                              cup
## 31582                                              cup
## 31583                                              cup
## 31584                                              cup
## 31585                                              cup
## 31586                                              cup
## 31587                                              cup
## 31588                                              cup
## 31589                                              cup
## 31590                                             curb
## 31591                                             curb
## 31592                                             curb
## 31593                                         curbside
## 31594                                         curbside
## 31595                                             cure
## 31596                                             cure
## 31597                                        curiosity
## 31598                                        curiosity
## 31599                                          curious
## 31600                                          curious
## 31601                                          curious
## 31602                                          curious
## 31603                                          curious
## 31604                                             curl
## 31605                                             curl
## 31606                                            curly
## 31607                                          current
## 31608                                          current
## 31609                                          current
## 31610                                          current
## 31611                                          current
## 31612                                          current
## 31613                                          current
## 31614                                        currently
## 31615                                        currently
## 31616                                        currently
## 31617                                        currently
## 31618                                        currently
## 31619                                        currently
## 31620                                            curse
## 31621                                            curse
## 31622                                            curse
## 31623                                            curse
## 31624                                            curse
## 31625                                            curse
## 31626                                            curse
## 31627                                            curse
## 31628                                          cursory
## 31629                                             curt
## 31630                                             curt
## 31631                                             curt
## 31632                                              cus
## 31633                                           custom
## 31634                                           custom
## 31635                                         customer
## 31636                                         customer
## 31637                                         customer
## 31638                                         customer
## 31639                                         customer
## 31640                                         customer
## 31641                                         customer
## 31642                                         customer
## 31643                                         customer
## 31644                                         customer
## 31645                                         customer
## 31646                                         customer
## 31647                                         customer
## 31648                                         customer
## 31649                                         customer
## 31650                                         customer
## 31651                                         customer
## 31652                                         customer
## 31653                                         customer
## 31654                                         customer
## 31655                                         customer
## 31656                                         customer
## 31657                                         customer
## 31658                                         customer
## 31659                                         customer
## 31660                                         customer
## 31661                                         customer
## 31662                                         customer
## 31663                                         customer
## 31664                                         customer
## 31665                                         customer
## 31666                                         customer
## 31667                                         customer
## 31668                                         customer
## 31669                                         customer
## 31670                                         customer
## 31671                                         customer
## 31672                                         customer
## 31673                                         customer
## 31674                                         customer
## 31675                                         customer
## 31676                                         customer
## 31677                                         customer
## 31678                                         customer
## 31679                                         customer
## 31680                                         customer
## 31681                                         customer
## 31682                                         customer
## 31683                                         customer
## 31684                                         customer
## 31685                                         customer
## 31686                                         customer
## 31687                                         customer
## 31688                                         customer
## 31689                                         customer
## 31690                                         customer
## 31691                                         customer
## 31692                                         customer
## 31693                                         customer
## 31694                                         customer
## 31695                                         customer
## 31696                                         customer
## 31697                                         customer
## 31698                                         customer
## 31699                                         customer
## 31700                                         customer
## 31701                                         customer
## 31702                                         customer
## 31703                                         customer
## 31704                                         customer
## 31705                                         customer
## 31706                                         customer
## 31707                                         customer
## 31708                                         customer
## 31709                                         customer
## 31710                                         customer
## 31711                                         customer
## 31712                                         customer
## 31713                                         customer
## 31714                                         customer
## 31715                                         customer
## 31716                                         customer
## 31717                                         customer
## 31718                                         customer
## 31719                                         customer
## 31720                                         customer
## 31721                                         customer
## 31722                                 customerfriendly
## 31723                                    customerspats
## 31724                                     customizable
## 31725                                    customization
## 31726                                        customize
## 31727                                              cut
## 31728                                              cut
## 31729                                              cut
## 31730                                              cut
## 31731                                              cut
## 31732                                              cut
## 31733                                              cut
## 31734                                              cut
## 31735                                              cut
## 31736                                              cut
## 31737                                              cut
## 31738                                              cut
## 31739                                              cut
## 31740                                              cut
## 31741                                              cut
## 31742                                              cut
## 31743                                              cut
## 31744                                              cut
## 31745                                              cut
## 31746                                              cut
## 31747                                              cut
## 31748                                              cut
## 31749                                              cut
## 31750                                              cut
## 31751                                              cut
## 31752                                              cut
## 31753                                              cut
## 31754                                              cut
## 31755                                              cut
## 31756                                              cut
## 31757                                              cut
## 31758                                              cut
## 31759                                              cut
## 31760                                              cut
## 31761                                              cut
## 31762                                              cut
## 31763                                              cut
## 31764                                              cut
## 31765                                              cut
## 31766                                              cut
## 31767                                              cut
## 31768                                              cut
## 31769                                              cut
## 31770                                              cut
## 31771                                              cut
## 31772                                              cut
## 31773                                              cut
## 31774                                              cut
## 31775                                              cut
## 31776                                              cut
## 31777                                              cut
## 31778                                              cut
## 31779                                              cut
## 31780                                              cut
## 31781                                              cut
## 31782                                              cut
## 31783                                              cut
## 31784                                              cut
## 31785                                              cut
## 31786                                              cut
## 31787                                             cute
## 31788                                             cute
## 31789                                             cute
## 31790                                             cute
## 31791                                             cute
## 31792                                             cute
## 31793                                             cute
## 31794                                             cute
## 31795                                             cute
## 31796                                           cutout
## 31797                                             cutt
## 31798                                           cutuch
## 31799                                              cuz
## 31800                                              cuz
## 31801                                              cuz
## 31802                                              cuz
## 31803                                              cuz
## 31804                                              cuz
## 31805                                              cuz
## 31806                                              cuz
## 31807                                              cuz
## 31808                                              cuz
## 31809                                              cuz
## 31810                                              cuz
## 31811                                              cuz
## 31812                                              cuz
## 31813                                              cuz
## 31814                                              cuz
## 31815                                              cuz
## 31816                                              cuz
## 31817                                            cycle
## 31818                                          cynical
## 31819                                           cynwyd
## 31820                                               da
## 31821                                              dab
## 31822                                              dab
## 31823                                              dad
## 31824                                              dad
## 31825                                              dad
## 31826                                              dad
## 31827                                              dad
## 31828                                              dad
## 31829                                              dad
## 31830                                              dad
## 31831                                              dad
## 31832                                              dad
## 31833                                              dad
## 31834                                              dad
## 31835                                              dad
## 31836                                              dad
## 31837                                            daddy
## 31838                                            daddy
## 31839                                            daddy
## 31840                                            daily
## 31841                                            dairy
## 31842                                            dairy
## 31843                                      dalesandros
## 31844                                     dalessandros
## 31845                                     dalessandros
## 31846                                     dalessandros
## 31847                                     dalessandros
## 31848                                     dalessandros
## 31849                                     dalessandros
## 31850                                     dalessandros
## 31851                                     dalessandros
## 31852                                     dalessandros
## 31853                                     dalessandros
## 31854                                     dalessandros
## 31855                                     dalessandros
## 31856                                     dalessandros
## 31857                                     dalessandros
## 31858                                     dalessandros
## 31859                                     dalessandros
## 31860                                     dalessandros
## 31861                                     dalessandros
## 31862                                     dalessandros
## 31863                                           dallas
## 31864                                           dallas
## 31865                                     dallesandros
## 31866                                     dallesandros
## 31867                                     dallesandros
## 31868                                           damage
## 31869                                           dammit
## 31870                                             damn
## 31871                                             damn
## 31872                                             damn
## 31873                                             damn
## 31874                                             damn
## 31875                                             damn
## 31876                                             damn
## 31877                                             damn
## 31878                                             damn
## 31879                                             damn
## 31880                                             damn
## 31881                                             damn
## 31882                                             damn
## 31883                                             damn
## 31884                                             damn
## 31885                                             damn
## 31886                                             damn
## 31887                                             damn
## 31888                                             damn
## 31889                                             damn
## 31890                                             damn
## 31891                                             damn
## 31892                                             damn
## 31893                                             damn
## 31894                                             damn
## 31895                                             damn
## 31896                                             damn
## 31897                                             damn
## 31898                                             damn
## 31899                                             damn
## 31900                                             damn
## 31901                                             damn
## 31902                                            dance
## 31903                                            dance
## 31904                                            dance
## 31905                                            dance
## 31906                                           dancin
## 31907                                             dang
## 31908                                             dang
## 31909                                             dang
## 31910                                         dangelos
## 31911                                        dangerous
## 31912                                        dangerous
## 31913                                        dangerous
## 31914                                      dangerously
## 31915                                           daniel
## 31916                                            danny
## 31917                                            danny
## 31918                                            danny
## 31919                                            danny
## 31920                                             dans
## 31921                                             dare
## 31922                                             dare
## 31923                                             dare
## 31924                                             dare
## 31925                                             dare
## 31926                                             dare
## 31927                                             dark
## 31928                                             dark
## 31929                                             dark
## 31930                                             dark
## 31931                                             dark
## 31932                                             dark
## 31933                                             dark
## 31934                                             dark
## 31935                                          darling
## 31936                                             darn
## 31937                                             darn
## 31938                                             darn
## 31939                                             darn
## 31940                                             darn
## 31941                                             darn
## 31942                                             darn
## 31943                                             darn
## 31944                                             dash
## 31945                                             dash
## 31946                                             dasy
## 31947                                              dat
## 31948                                             date
## 31949                                             date
## 31950                                             date
## 31951                                             date
## 31952                                             date
## 31953                                         daughter
## 31954                                         daughter
## 31955                                         daughter
## 31956                                         daughter
## 31957                                         daughter
## 31958                                         daughter
## 31959                                         daughter
## 31960                                         daughter
## 31961                                         daughter
## 31962                                         daughter
## 31963                                         daughter
## 31964                                         daughter
## 31965                                         daughter
## 31966                                         daughter
## 31967                                         daughter
## 31968                                         daughter
## 31969                                         daughter
## 31970                                             dave
## 31971                                        davenport
## 31972                                         davidson
## 31973                                              day
## 31974                                              day
## 31975                                              day
## 31976                                              day
## 31977                                              day
## 31978                                              day
## 31979                                              day
## 31980                                              day
## 31981                                              day
## 31982                                              day
## 31983                                              day
## 31984                                              day
## 31985                                              day
## 31986                                              day
## 31987                                              day
## 31988                                              day
## 31989                                              day
## 31990                                              day
## 31991                                              day
## 31992                                              day
## 31993                                              day
## 31994                                              day
## 31995                                              day
## 31996                                              day
## 31997                                              day
## 31998                                              day
## 31999                                              day
## 32000                                              day
## 32001                                              day
## 32002                                              day
## 32003                                              day
## 32004                                              day
## 32005                                              day
## 32006                                              day
## 32007                                              day
## 32008                                              day
## 32009                                              day
## 32010                                              day
## 32011                                              day
## 32012                                              day
## 32013                                              day
## 32014                                              day
## 32015                                              day
## 32016                                              day
## 32017                                              day
## 32018                                              day
## 32019                                              day
## 32020                                              day
## 32021                                              day
## 32022                                              day
## 32023                                              day
## 32024                                              day
## 32025                                              day
## 32026                                              day
## 32027                                              day
## 32028                                              day
## 32029                                              day
## 32030                                              day
## 32031                                              day
## 32032                                              day
## 32033                                              day
## 32034                                              day
## 32035                                              day
## 32036                                              day
## 32037                                              day
## 32038                                              day
## 32039                                              day
## 32040                                              day
## 32041                                              day
## 32042                                              day
## 32043                                              day
## 32044                                              day
## 32045                                              day
## 32046                                              day
## 32047                                              day
## 32048                                              day
## 32049                                              day
## 32050                                              day
## 32051                                              day
## 32052                                              day
## 32053                                              day
## 32054                                              day
## 32055                                              day
## 32056                                              day
## 32057                                              day
## 32058                                              day
## 32059                                              day
## 32060                                              day
## 32061                                              day
## 32062                                              day
## 32063                                              day
## 32064                                              day
## 32065                                              day
## 32066                                              day
## 32067                                              day
## 32068                                              day
## 32069                                              day
## 32070                                              day
## 32071                                              day
## 32072                                              day
## 32073                                              day
## 32074                                              day
## 32075                                              day
## 32076                                              day
## 32077                                              day
## 32078                                              day
## 32079                                              day
## 32080                                              day
## 32081                                              day
## 32082                                              day
## 32083                                              day
## 32084                                              day
## 32085                                              day
## 32086                                              day
## 32087                                              day
## 32088                                              day
## 32089                                           daybut
## 32090                                         daydream
## 32091                                         daylight
## 32092                                         daylight
## 32093                                           daymay
## 32094                                         daynight
## 32095                                           dayold
## 32096                                           dayold
## 32097                                          daytime
## 32098                                          daytime
## 32099                                            dayum
## 32100                                            daywe
## 32101                                           dazzle
## 32102                                               db
## 32103                                               db
## 32104                                               db
## 32105                                             dbag
## 32106                                             dbag
## 32107                                            dbags
## 32108                                               dc
## 32109                                               dc
## 32110                                               dc
## 32111                                               dc
## 32112                                               dc
## 32113                                               dc
## 32114                                               dc
## 32115                                               dc
## 32116                                               dc
## 32117                                               dc
## 32118                                               dc
## 32119                                               dc
## 32120                                               dc
## 32121                                               dc
## 32122                                               dc
## 32123                                               dc
## 32124                                               dc
## 32125                                               dc
## 32126                                               dc
## 32127                                               dc
## 32128                                               dc
## 32129                                               dc
## 32130                                               dc
## 32131                                               dc
## 32132                                               dc
## 32133                                               dc
## 32134                                               dc
## 32135                                               de
## 32136                                               de
## 32137                                               de
## 32138                                               de
## 32139                                               de
## 32140                                               de
## 32141                                               de
## 32142                                               de
## 32143                                               de
## 32144                                             dead
## 32145                                             dead
## 32146                                             dead
## 32147                                             dead
## 32148                                             dead
## 32149                                             dead
## 32150                                             dead
## 32151                                             dead
## 32152                                             dead
## 32153                                             dead
## 32154                                             dead
## 32155                                             dead
## 32156                                             dead
## 32157                                             dead
## 32158                                             dead
## 32159                                         deadlock
## 32160                                           deadly
## 32161                                             deaf
## 32162                                             deal
## 32163                                             deal
## 32164                                             deal
## 32165                                             deal
## 32166                                             deal
## 32167                                             deal
## 32168                                             deal
## 32169                                             deal
## 32170                                             deal
## 32171                                             deal
## 32172                                             deal
## 32173                                             deal
## 32174                                             deal
## 32175                                             deal
## 32176                                             deal
## 32177                                             deal
## 32178                                             deal
## 32179                                             deal
## 32180                                             deal
## 32181                                             deal
## 32182                                             deal
## 32183                                             deal
## 32184                                             deal
## 32185                                             deal
## 32186                                             deal
## 32187                                             deal
## 32188                                             deal
## 32189                                             deal
## 32190                                             deal
## 32191                                             deal
## 32192                                             deal
## 32193                                             deal
## 32194                                             deal
## 32195                                             deal
## 32196                                             deal
## 32197                                             deal
## 32198                                             deal
## 32199                                             deal
## 32200                                             deal
## 32201                                             deal
## 32202                                             deal
## 32203                                             deal
## 32204                                             deal
## 32205                                             deal
## 32206                                             deal
## 32207                                             deal
## 32208                                             deal
## 32209                                             deal
## 32210                                             deal
## 32211                                             deal
## 32212                                             deal
## 32213                                             deal
## 32214                                             deal
## 32215                                             deal
## 32216                                             deal
## 32217                                             deal
## 32218                                             deal
## 32219                                      dealbreaker
## 32220                                           dealer
## 32221                                             dean
## 32222                                             dear
## 32223                                           dearly
## 32224                                            death
## 32225                                            death
## 32226                                            death
## 32227                                            death
## 32228                                            death
## 32229                                           debate
## 32230                                           debate
## 32231                                           debate
## 32232                                           debate
## 32233                                           debate
## 32234                                           debate
## 32235                                           debate
## 32236                                           debate
## 32237                                           debate
## 32238                                           debate
## 32239                                           debate
## 32240                                           debate
## 32241                                           debate
## 32242                                           debate
## 32243                                           debate
## 32244                                           debate
## 32245                                           debate
## 32246                                           debate
## 32247                                           debate
## 32248                                           debate
## 32249                                           debate
## 32250                                      debatewhich
## 32251                                      debitcredit
## 32252                                            debut
## 32253                                              dec
## 32254                                              dec
## 32255                                           decade
## 32256                                           decade
## 32257                                           decade
## 32258                                           decade
## 32259                                           decade
## 32260                                           decade
## 32261                                           decade
## 32262                                           decade
## 32263                                           decade
## 32264                                           decade
## 32265                                           decade
## 32266                                           decade
## 32267                                           decade
## 32268                                            decay
## 32269                                          decease
## 32270                                          deceive
## 32271                                         december
## 32272                                         december
## 32273                                         december
## 32274                                         december
## 32275                                          decency
## 32276                                          decency
## 32277                                       decendants
## 32278                                       decendents
## 32279                                           decent
## 32280                                           decent
## 32281                                           decent
## 32282                                           decent
## 32283                                           decent
## 32284                                           decent
## 32285                                           decent
## 32286                                           decent
## 32287                                           decent
## 32288                                           decent
## 32289                                           decent
## 32290                                           decent
## 32291                                           decent
## 32292                                           decent
## 32293                                           decent
## 32294                                           decent
## 32295                                           decent
## 32296                                           decent
## 32297                                           decent
## 32298                                           decent
## 32299                                           decent
## 32300                                           decent
## 32301                                           decent
## 32302                                           decent
## 32303                                           decent
## 32304                                           decent
## 32305                                           decent
## 32306                                           decent
## 32307                                           decent
## 32308                                           decent
## 32309                                           decent
## 32310                                           decent
## 32311                                           decent
## 32312                                           decent
## 32313                                           decent
## 32314                                           decent
## 32315                                           decent
## 32316                                           decent
## 32317                                           decent
## 32318                                           decent
## 32319                                           decent
## 32320                                           decent
## 32321                                           decent
## 32322                                           decent
## 32323                                           decent
## 32324                                           decent
## 32325                                           decent
## 32326                                           decent
## 32327                                           decent
## 32328                                           decent
## 32329                                           decent
## 32330                                           decent
## 32331                                        decentbut
## 32332                                      decentgreat
## 32333                                         decently
## 32334                                         decently
## 32335                                           decide
## 32336                                           decide
## 32337                                           decide
## 32338                                           decide
## 32339                                           decide
## 32340                                           decide
## 32341                                           decide
## 32342                                           decide
## 32343                                           decide
## 32344                                           decide
## 32345                                           decide
## 32346                                           decide
## 32347                                           decide
## 32348                                           decide
## 32349                                           decide
## 32350                                           decide
## 32351                                           decide
## 32352                                           decide
## 32353                                           decide
## 32354                                           decide
## 32355                                           decide
## 32356                                           decide
## 32357                                           decide
## 32358                                           decide
## 32359                                           decide
## 32360                                           decide
## 32361                                           decide
## 32362                                           decide
## 32363                                           decide
## 32364                                           decide
## 32365                                           decide
## 32366                                           decide
## 32367                                           decide
## 32368                                           decide
## 32369                                           decide
## 32370                                           decide
## 32371                                           decide
## 32372                                           decide
## 32373                                           decide
## 32374                                           decide
## 32375                                           decide
## 32376                                           decide
## 32377                                           decide
## 32378                                           decide
## 32379                                           decide
## 32380                                           decide
## 32381                                           decide
## 32382                                           decide
## 32383                                           decide
## 32384                                           decide
## 32385                                           decide
## 32386                                           decide
## 32387                                           decide
## 32388                                           decide
## 32389                                           decide
## 32390                                           decide
## 32391                                           decide
## 32392                                           decide
## 32393                                           decide
## 32394                                           decide
## 32395                                           decide
## 32396                                           decide
## 32397                                        decidedly
## 32398                                        decidedly
## 32399                                     decipherable
## 32400                                         decision
## 32401                                         decision
## 32402                                         decision
## 32403                                         decision
## 32404                                         decision
## 32405                                         decision
## 32406                                         decision
## 32407                                         decision
## 32408                                         decision
## 32409                                         decision
## 32410                                         decision
## 32411                                         decision
## 32412                                         decision
## 32413                                             deck
## 32414                                          declare
## 32415                                          declare
## 32416                                          declare
## 32417                                          declare
## 32418                                          decline
## 32419                                          decline
## 32420                                          decline
## 32421                                          decline
## 32422                                            decor
## 32423                                            decor
## 32424                                            decor
## 32425                                            decor
## 32426                                            decor
## 32427                                            decor
## 32428                                            decor
## 32429                                            decor
## 32430                                            decor
## 32431                                            decor
## 32432                                            decor
## 32433                                            decor
## 32434                                            decor
## 32435                                            decor
## 32436                                            decor
## 32437                                            decor
## 32438                                            decor
## 32439                                            decor
## 32440                                            decor
## 32441                                            decor
## 32442                                            decor
## 32443                                            decor
## 32444                                            decor
## 32445                                            decor
## 32446                                            decor
## 32447                                            decor
## 32448                                            decor
## 32449                                  decorapparently
## 32450                                         decorate
## 32451                                         decorate
## 32452                                         decorate
## 32453                                         decorate
## 32454                                         decorate
## 32455                                         decorate
## 32456                                         decorate
## 32457                                         decorate
## 32458                                       decoration
## 32459                                       decoration
## 32460                                    decorbranding
## 32461                                          decorum
## 32462                                        decorwise
## 32463                                         decrease
## 32464                                          dedican
## 32465                                         dedicate
## 32466                                         dedicate
## 32467                                         dedicate
## 32468                                           deduct
## 32469                                        deduction
## 32470                                        deduction
## 32471                                     deeeelicious
## 32472                                   deeliiiiicious
## 32473                                             deem
## 32474                                             deem
## 32475                                             deep
## 32476                                             deep
## 32477                                             deep
## 32478                                             deep
## 32479                                             deep
## 32480                                             deep
## 32481                                             deep
## 32482                                             deep
## 32483                                      deepcueevil
## 32484                                           deeply
## 32485                                           deeply
## 32486                                           deeply
## 32487                                              def
## 32488                                              def
## 32489                                              def
## 32490                                              def
## 32491                                              def
## 32492                                              def
## 32493                                              def
## 32494                                              def
## 32495                                          default
## 32496                                          default
## 32497                                           defeat
## 32498                                           defend
## 32499                                           defend
## 32500                                          defense
## 32501                                          defense
## 32502                                             deff
## 32503                                        defiantly
## 32504                                        defiantly
## 32505                                        deficient
## 32506                                            defin
## 32507                                       definately
## 32508                                       definately
## 32509                                       definately
## 32510                                       definately
## 32511                                       definately
## 32512                                       definately
## 32513                                       definately
## 32514                                        definatly
## 32515                                           define
## 32516                                           define
## 32517                                        definetly
## 32518                                         definite
## 32519                                         definite
## 32520                                         definite
## 32521                                         definite
## 32522                                       definitely
## 32523                                       definitely
## 32524                                       definitely
## 32525                                       definitely
## 32526                                       definitely
## 32527                                       definitely
## 32528                                       definitely
## 32529                                       definitely
## 32530                                       definitely
## 32531                                       definitely
## 32532                                       definitely
## 32533                                       definitely
## 32534                                       definitely
## 32535                                       definitely
## 32536                                       definitely
## 32537                                       definitely
## 32538                                       definitely
## 32539                                       definitely
## 32540                                       definitely
## 32541                                       definitely
## 32542                                       definitely
## 32543                                       definitely
## 32544                                       definitely
## 32545                                       definitely
## 32546                                       definitely
## 32547                                       definitely
## 32548                                       definitely
## 32549                                       definitely
## 32550                                       definitely
## 32551                                       definitely
## 32552                                       definitely
## 32553                                       definitely
## 32554                                       definitely
## 32555                                       definitely
## 32556                                       definitely
## 32557                                       definitely
## 32558                                       definitely
## 32559                                       definitely
## 32560                                       definitely
## 32561                                       definitely
## 32562                                       definitely
## 32563                                       definitely
## 32564                                       definitely
## 32565                                       definitely
## 32566                                       definitely
## 32567                                       definitely
## 32568                                       definitely
## 32569                                       definitely
## 32570                                       definitely
## 32571                                       definitely
## 32572                                       definitely
## 32573                                       definitely
## 32574                                       definitely
## 32575                                       definitely
## 32576                                       definitely
## 32577                                       definitely
## 32578                                       definitely
## 32579                                       definitely
## 32580                                       definitely
## 32581                                       definitely
## 32582                                       definitely
## 32583                                       definitely
## 32584                                       definitely
## 32585                                       definitely
## 32586                                       definitely
## 32587                                       definitely
## 32588                                       definitely
## 32589                                       definitely
## 32590                                       definitely
## 32591                                       definitely
## 32592                                       definitely
## 32593                                       definitely
## 32594                                       definitely
## 32595                                       definitely
## 32596                                       definitely
## 32597                                       definitely
## 32598                                       definitely
## 32599                                       definitely
## 32600                                       definitely
## 32601                                       definitely
## 32602                                       definitely
## 32603                                       definitely
## 32604                                       definitely
## 32605                                       definitely
## 32606                                       definitely
## 32607                                       definitely
## 32608                                       definitely
## 32609                                       definitely
## 32610                                       definitely
## 32611                                       definitely
## 32612                                       definitely
## 32613                                       definitely
## 32614                                       definitely
## 32615                                       definitely
## 32616                                       definitely
## 32617                                       definitely
## 32618                                       definitely
## 32619                                       definitely
## 32620                                       definitely
## 32621                                       definitely
## 32622                                       definitely
## 32623                                       definitely
## 32624                                       definitely
## 32625                                       definitely
## 32626                                       definitely
## 32627                                       definitely
## 32628                                       definition
## 32629                                       definition
## 32630                                       definition
## 32631                                     definitively
## 32632                                     definitively
## 32633                                      definitnely
## 32634                                         defintly
## 32635                                          defrost
## 32636                                             defy
## 32637                                       degenerate
## 32638                                           degree
## 32639                                           degree
## 32640                                           degree
## 32641                                           degree
## 32642                                           degree
## 32643                                           degree
## 32644                                           degree
## 32645                                        dehydrate
## 32646                                        dehydrate
## 32647                                              del
## 32648                                              del
## 32649                                      delasandros
## 32650                                      delasandros
## 32651                                     delassandros
## 32652                                     delassandros
## 32653                                     delassandros
## 32654                                     delassandros
## 32655                                     delassandros
## 32656                                     delassandros
## 32657                                     delassandros
## 32658                                     delassandros
## 32659                                         delaware
## 32660                                         delaware
## 32661                                         delaware
## 32662                                            delay
## 32663                                         delcious
## 32664                                           delcos
## 32665                                       delectable
## 32666                                       delectable
## 32667                                       delectable
## 32668                                       delectable
## 32669                                       delectable
## 32670                                         delegate
## 32671                                     delessandros
## 32672                                         deleware
## 32673                                             deli
## 32674                                             deli
## 32675                                             deli
## 32676                                             deli
## 32677                                             deli
## 32678                                             deli
## 32679                                             deli
## 32680                                             deli
## 32681                                             deli
## 32682                                             deli
## 32683                                             deli
## 32684                                             deli
## 32685                                             deli
## 32686                                             deli
## 32687                                             deli
## 32688                                             deli
## 32689                                             deli
## 32690                                             deli
## 32691                                       deliberate
## 32692                                     deliberately
## 32693                                       delicately
## 32694                                        delicious
## 32695                                        delicious
## 32696                                        delicious
## 32697                                        delicious
## 32698                                        delicious
## 32699                                        delicious
## 32700                                        delicious
## 32701                                        delicious
## 32702                                        delicious
## 32703                                        delicious
## 32704                                        delicious
## 32705                                        delicious
## 32706                                        delicious
## 32707                                        delicious
## 32708                                        delicious
## 32709                                        delicious
## 32710                                        delicious
## 32711                                        delicious
## 32712                                        delicious
## 32713                                        delicious
## 32714                                        delicious
## 32715                                        delicious
## 32716                                        delicious
## 32717                                        delicious
## 32718                                        delicious
## 32719                                        delicious
## 32720                                        delicious
## 32721                                        delicious
## 32722                                        delicious
## 32723                                        delicious
## 32724                                        delicious
## 32725                                        delicious
## 32726                                        delicious
## 32727                                        delicious
## 32728                                        delicious
## 32729                                        delicious
## 32730                                        delicious
## 32731                                        delicious
## 32732                                        delicious
## 32733                                        delicious
## 32734                                        delicious
## 32735                                        delicious
## 32736                                        delicious
## 32737                                        delicious
## 32738                                        delicious
## 32739                                        delicious
## 32740                                        delicious
## 32741                                        delicious
## 32742                                        delicious
## 32743                                        delicious
## 32744                                        delicious
## 32745                                        delicious
## 32746                                        delicious
## 32747                                        delicious
## 32748                                        delicious
## 32749                                        delicious
## 32750                                        delicious
## 32751                                        delicious
## 32752                                        delicious
## 32753                                        delicious
## 32754                                        delicious
## 32755                                        delicious
## 32756                                        delicious
## 32757                                        delicious
## 32758                                        delicious
## 32759                                        delicious
## 32760                                        delicious
## 32761                                        delicious
## 32762                                        delicious
## 32763                                        delicious
## 32764                                        delicious
## 32765                                        delicious
## 32766                                        delicious
## 32767                                        delicious
## 32768                                        delicious
## 32769                                        delicious
## 32770                                        delicious
## 32771                                      deliciously
## 32772                                    deliciousness
## 32773                                    deliciousness
## 32774                                    deliciousness
## 32775                                    deliciousness
## 32776                                          delight
## 32777                                          delight
## 32778                                          delight
## 32779                                          delight
## 32780                                          delight
## 32781                                          delight
## 32782                                          delight
## 32783                                          delight
## 32784                                       delightful
## 32785                                       delightful
## 32786                                       delightful
## 32787                                     delightfully
## 32788                                         delilahs
## 32789                                         delilahs
## 32790                                        delirious
## 32791                                           delish
## 32792                                           delish
## 32793                                     delissandros
## 32794                                          deliver
## 32795                                          deliver
## 32796                                          deliver
## 32797                                          deliver
## 32798                                          deliver
## 32799                                          deliver
## 32800                                          deliver
## 32801                                          deliver
## 32802                                          deliver
## 32803                                          deliver
## 32804                                          deliver
## 32805                                          deliver
## 32806                                          deliver
## 32807                                          deliver
## 32808                                         delivery
## 32809                                         delivery
## 32810                                         delivery
## 32811                                     dellasandros
## 32812                                     dellesandros
## 32813                                           deluca
## 32814                                       delusional
## 32815                                           demand
## 32816                                           demand
## 32817                                           demand
## 32818                                           demand
## 32819                                           demand
## 32820                                           demand
## 32821                                           demand
## 32822                                           demand
## 32823                                           demand
## 32824                                           demand
## 32825                                             demo
## 32826                                      demographic
## 32827                                      demographic
## 32828                                      demographic
## 32829                                         demolish
## 32830                                         demolish
## 32831                                      demonstrate
## 32832                                           demzel
## 32833                                           denics
## 32834                                           denics
## 32835                                        denigrate
## 32836                                        denigrate
## 32837                                           dennys
## 32838                                           denote
## 32839                                            dense
## 32840                                        denseless
## 32841                                          density
## 32842                                             dent
## 32843                                           dentro
## 32844                                          denture
## 32845                                          denture
## 32846                                           denver
## 32847                                           denver
## 32848                                           denver
## 32849                                           denver
## 32850                                           denver
## 32851                                             deny
## 32852                                             deny
## 32853                                             deny
## 32854                                             deny
## 32855                                             deny
## 32856                                           depart
## 32857                                       department
## 32858                                       department
## 32859                                       department
## 32860                                       department
## 32861                                       department
## 32862                                       department
## 32863                                       department
## 32864                                        departure
## 32865                                           depend
## 32866                                           depend
## 32867                                           depend
## 32868                                           depend
## 32869                                           depend
## 32870                                           depend
## 32871                                           depend
## 32872                                           depend
## 32873                                           depend
## 32874                                           depend
## 32875                                        dependent
## 32876                                       deperately
## 32877                                           depict
## 32878                                       deplorable
## 32879                                       deplorable
## 32880                                           deploy
## 32881                                       deporation
## 32882                                           deport
## 32883                                      deportation
## 32884                                      deportation
## 32885                                      deportation
## 32886                                      deportation
## 32887                                      deportation
## 32888                                      deportation
## 32889                                          depress
## 32890                                             dept
## 32891                                             dept
## 32892                                           derive
## 32893                                          descent
## 32894                                          descent
## 32895                                          descent
## 32896                                         describe
## 32897                                         describe
## 32898                                         describe
## 32899                                         describe
## 32900                                         describe
## 32901                                         describe
## 32902                                         describe
## 32903                                         describe
## 32904                                         describe
## 32905                                         describe
## 32906                                         describe
## 32907                                         describe
## 32908                                         describe
## 32909                                         describe
## 32910                                      description
## 32911                                      description
## 32912                                           desert
## 32913                                           desert
## 32914                                          deserve
## 32915                                          deserve
## 32916                                          deserve
## 32917                                          deserve
## 32918                                          deserve
## 32919                                          deserve
## 32920                                          deserve
## 32921                                          deserve
## 32922                                          deserve
## 32923                                          deserve
## 32924                                          deserve
## 32925                                          deserve
## 32926                                          deserve
## 32927                                          deserve
## 32928                                          deserve
## 32929                                          deserve
## 32930                                          deserve
## 32931                                          deserve
## 32932                                          deserve
## 32933                                          deserve
## 32934                                          deserve
## 32935                                           design
## 32936                                           design
## 32937                                        designate
## 32938                                           desire
## 32939                                           desire
## 32940                                           desire
## 32941                                           desire
## 32942                                           desire
## 32943                                           desire
## 32944                                           desire
## 32945                                           desire
## 32946                                           desire
## 32947                                           desire
## 32948                                           desire
## 32949                                           desire
## 32950                                           desire
## 32951                                             desk
## 32952                                        desperate
## 32953                                        desperate
## 32954                                        desperate
## 32955                                      desperately
## 32956                                      desperately
## 32957                                      desperation
## 32958                                       despicable
## 32959                                          despise
## 32960                                          despite
## 32961                                          despite
## 32962                                          despite
## 32963                                          despite
## 32964                                          despite
## 32965                                          despite
## 32966                                          despite
## 32967                                          despite
## 32968                                          despite
## 32969                                          despite
## 32970                                          despite
## 32971                                          despite
## 32972                                          despite
## 32973                                          despite
## 32974                                          despite
## 32975                                          despite
## 32976                                          despite
## 32977                                          despite
## 32978                                          despite
## 32979                                          despite
## 32980                                          despite
## 32981                                          despite
## 32982                                          despite
## 32983                                          despite
## 32984                                          despite
## 32985                                          despite
## 32986                                          despite
## 32987                                          despite
## 32988                                          despite
## 32989                                          despite
## 32990                                          despite
## 32991                                          despite
## 32992                                          despite
## 32993                                          despite
## 32994                                          despite
## 32995                                          despite
## 32996                                          despite
## 32997                                          despite
## 32998                                          despite
## 32999                                          despite
## 33000                                          despite
## 33001                                          despite
## 33002                                          despite
## 33003                                          despite
## 33004                                          desribe
## 33005                                          dessert
## 33006                                          dessert
## 33007                                          dessert
## 33008                                          dessert
## 33009                                          dessert
## 33010                                      destination
## 33011                                      destination
## 33012                                      destination
## 33013                                      destination
## 33014                                      destination
## 33015                                      destination
## 33016                                      destination
## 33017                                      destination
## 33018                                      destination
## 33019                                      destination
## 33020                                      destination
## 33021                                      destination
## 33022                                      destination
## 33023                                      destination
## 33024                                      destination
## 33025                                      destination
## 33026                                      destination
## 33027                                      destination
## 33028                                          destroy
## 33029                                          destroy
## 33030                                          destroy
## 33031                                          destroy
## 33032                                           detail
## 33033                                           detail
## 33034                                           detail
## 33035                                           detail
## 33036                                           detail
## 33037                                           detail
## 33038                                           detail
## 33039                                           detail
## 33040                                           detail
## 33041                                      detailthere
## 33042                                           detect
## 33043                                            deter
## 33044                                            deter
## 33045                                            deter
## 33046                                            deter
## 33047                                    determination
## 33048                                    determination
## 33049                                        determine
## 33050                                        determine
## 33051                                        determine
## 33052                                        determine
## 33053                                        determine
## 33054                                        determine
## 33055                                        determine
## 33056                                        determine
## 33057                                           detour
## 33058                                           detour
## 33059                                           detour
## 33060                                           detour
## 33061                                           detour
## 33062                                           detour
## 33063                                           detour
## 33064                                           detour
## 33065                                          detract
## 33066                                          detract
## 33067                                        detractor
## 33068                                        detriment
## 33069                                          detroit
## 33070                                          detroit
## 33071                                          detroit
## 33072                                          deuchey
## 33073                                          deutsch
## 33074                                          develop
## 33075                                          develop
## 33076                                          develop
## 33077                                          deviate
## 33078                                           devoid
## 33079                                           devoid
## 33080                                           devoid
## 33081                                         devotion
## 33082                                           devour
## 33083                                           devour
## 33084                                           devour
## 33085                                           devour
## 33086                                           devour
## 33087                                           devour
## 33088                                              dew
## 33089                                              dgt
## 33090                                       diagonally
## 33091                                          dialect
## 33092                                        dialectic
## 33093                                           dialog
## 33094                                         diarrhea
## 33095                                         diarrhea
## 33096                                         diarrhea
## 33097                                         diarrhea
## 33098                                         diarrhea
## 33099                                         diarrhea
## 33100                                         diarrhea
## 33101                                         diarrhea
## 33102                                         diarrhea
## 33103                                         diatribe
## 33104                                             dice
## 33105                                             dice
## 33106                                             dice
## 33107                                             dice
## 33108                                             dice
## 33109                                             dice
## 33110                                             dice
## 33111                                            dicks
## 33112                                            dicks
## 33113                                            dicks
## 33114                                            dicks
## 33115                                     diconstanzas
## 33116                                          dictate
## 33117                                           diddle
## 33118                                            didnt
## 33119                                            didnt
## 33120                                            didnt
## 33121                                            didnt
## 33122                                            didnt
## 33123                                            didnt
## 33124                                            didnt
## 33125                                            didnt
## 33126                                            didnt
## 33127                                            didnt
## 33128                                            didnt
## 33129                                            didnt
## 33130                                            didnt
## 33131                                            didnt
## 33132                                            didnt
## 33133                                            didnt
## 33134                                            didnt
## 33135                                            didnt
## 33136                                            didnt
## 33137                                            didnt
## 33138                                            didnt
## 33139                                            didnt
## 33140                                            didnt
## 33141                                            didnt
## 33142                                            didnt
## 33143                                            didnt
## 33144                                            didnt
## 33145                                            didnt
## 33146                                            didnt
## 33147                                            didnt
## 33148                                            didnt
## 33149                                            didnt
## 33150                                            didnt
## 33151                                            didnt
## 33152                                            didnt
## 33153                                            didnt
## 33154                                            didnt
## 33155                                            didnt
## 33156                                            didnt
## 33157                                            didnt
## 33158                                            didnt
## 33159                                            didnt
## 33160                                            didnt
## 33161                                            didnt
## 33162                                            didnt
## 33163                                            didnt
## 33164                                            didnt
## 33165                                            didnt
## 33166                                            didnt
## 33167                                            didnt
## 33168                                            didnt
## 33169                                            didnt
## 33170                                            didnt
## 33171                                            didnt
## 33172                                            didnt
## 33173                                            didnt
## 33174                                            didnt
## 33175                                            didnt
## 33176                                            didnt
## 33177                                            didnt
## 33178                                            didnt
## 33179                                            didnt
## 33180                                            didnt
## 33181                                            didnt
## 33182                                            didnt
## 33183                                            didnt
## 33184                                            didnt
## 33185                                            didnt
## 33186                                            didnt
## 33187                                            didnt
## 33188                                            didnt
## 33189                                            didnt
## 33190                                            didnt
## 33191                                            didnt
## 33192                                            didnt
## 33193                                            didnt
## 33194                                            didnt
## 33195                                            didnt
## 33196                                            didnt
## 33197                                             didt
## 33198                                              die
## 33199                                              die
## 33200                                              die
## 33201                                              die
## 33202                                              die
## 33203                                              die
## 33204                                              die
## 33205                                              die
## 33206                                              die
## 33207                                              die
## 33208                                              die
## 33209                                              die
## 33210                                              die
## 33211                                              die
## 33212                                              die
## 33213                                              die
## 33214                                              die
## 33215                                              die
## 33216                                              die
## 33217                                              die
## 33218                                            diego
## 33219                                            diego
## 33220                                            diego
## 33221                                            diego
## 33222                                          diehard
## 33223                                          diehard
## 33224                                           diesel
## 33225                                             diet
## 33226                                             diet
## 33227                                             diet
## 33228                                             diet
## 33229                                             diet
## 33230                                             diet
## 33231                                             diet
## 33232                                             diet
## 33233                                           dieter
## 33234                                         dietfish
## 33235                                           differ
## 33236                                           differ
## 33237                                           differ
## 33238                                           differ
## 33239                                           differ
## 33240                                       difference
## 33241                                       difference
## 33242                                       difference
## 33243                                       difference
## 33244                                       difference
## 33245                                       difference
## 33246                                       difference
## 33247                                       difference
## 33248                                       difference
## 33249                                       difference
## 33250                                       difference
## 33251                                       difference
## 33252                                       difference
## 33253                                       difference
## 33254                                       difference
## 33255                                       difference
## 33256                                       difference
## 33257                                       difference
## 33258                                       difference
## 33259                                       difference
## 33260                                       difference
## 33261                                       difference
## 33262                                       difference
## 33263                                       difference
## 33264                                       difference
## 33265                                       difference
## 33266                                       difference
## 33267                                       difference
## 33268                                       difference
## 33269                                       difference
## 33270                                       difference
## 33271                                       difference
## 33272                                       difference
## 33273                                       difference
## 33274                                       difference
## 33275                                       difference
## 33276                                       difference
## 33277                                        different
## 33278                                        different
## 33279                                        different
## 33280                                        different
## 33281                                        different
## 33282                                        different
## 33283                                        different
## 33284                                        different
## 33285                                        different
## 33286                                        different
## 33287                                        different
## 33288                                        different
## 33289                                        different
## 33290                                        different
## 33291                                        different
## 33292                                        different
## 33293                                        different
## 33294                                        different
## 33295                                        different
## 33296                                        different
## 33297                                        different
## 33298                                        different
## 33299                                        different
## 33300                                        different
## 33301                                        different
## 33302                                        different
## 33303                                        different
## 33304                                        different
## 33305                                        different
## 33306                                        different
## 33307                                        different
## 33308                                        different
## 33309                                        different
## 33310                                        different
## 33311                                        different
## 33312                                        different
## 33313                                        different
## 33314                                        different
## 33315                                        different
## 33316                                        different
## 33317                                        different
## 33318                                        different
## 33319                                        different
## 33320                                        different
## 33321                                        different
## 33322                                        different
## 33323                                        different
## 33324                                        different
## 33325                                        different
## 33326                                        different
## 33327                                        different
## 33328                                        different
## 33329                                        different
## 33330                                        different
## 33331                                        different
## 33332                                        different
## 33333                                        different
##                                                            word2   n
## 1                                                          steak 953
## 2                                                         street 470
## 3                                                          genos 374
## 4                                                            pat 356
## 5                                                    cheesesteak 350
## 6                                                            dry 331
## 7                                                           whiz 271
## 8                                                            fry 238
## 9                                                    cheesesteak 229
## 10                                                        cheese 224
## 11                                                          trap 221
## 12                                                           pat 216
## 13                                                         genos 190
## 14                                                           pat 185
## 15                                                       english 185
## 16                                                         steak 181
## 17                                                           wiz 151
## 18                                                          good 151
## 19                                                      sandwich 150
## 20                                                          good 148
## 21                                                           pat 145
## 22                                                         lukes 142
## 23                                                          good 139
## 24                                                         steak 138
## 25                                                          like 138
## 26                                                        cheese 135
## 27                                                          time 131
## 28                                                         genos 131
## 29                                                  cheesesteaks 128
## 30                                                        philly 128
## 31                                                        across 123
## 32                                                        philly 121
## 33                                                          know 120
## 34                                                          back 119
## 35                                                          line 111
## 36                                                          like 109
## 37                                                         place 107
## 38                                                   cheesesteak 107
## 39                                                           pat 101
## 40                                                          time 101
## 41                                                         place  93
## 42                                                          good  91
## 43                                                         genos  89
## 44                                                   cheesesteak  89
## 45                                                         sauce  88
## 46                                                        cheese  87
## 47                                                           get  83
## 48                                                          good  83
## 49                                                           pat  83
## 50                                                          back  82
## 51                                                       english  82
## 52                                                        philly  82
## 53                                                          like  81
## 54                                                          good  81
## 55                                                          good  80
## 56                                                           wit  78
## 57                                                          good  77
## 58                                                         genos  76
## 59                                                       service  75
## 60                                                         onion  75
## 61                                                  cheesesteaks  74
## 62                                                          line  74
## 63                                                          ever  73
## 64                                                          good  72
## 65                                                          good  72
## 66                                                           try  72
## 67                                                        cheese  70
## 68                                                          good  70
## 69                                                          good  70
## 70                                                         steak  69
## 71                                                         bread  68
## 72                                                         genos  68
## 73                                                           wit  68
## 74                                                           get  67
## 75                                                        cheese  67
## 76                                                           say  66
## 77                                                         drink  66
## 78                                                       special  66
## 79                                                      sandwich  65
## 80                                                          sure  65
## 81                                                          like  65
## 82                                                          good  64
## 83                                                        cheese  64
## 84                                                          sure  63
## 85                                                        cheese  63
## 86                                                          time  63
## 87                                                          good  62
## 88                                                           one  61
## 89                                                          good  61
## 90                                                        cheese  61
## 91                                                         order  60
## 92                                                          good  59
## 93                                                         onion  58
## 94                                                        though  58
## 95                                                         place  58
## 96                                                         think  57
## 97                                                       network  57
## 98                                                          long  57
## 99                                                         place  57
## 100                                                       philly  56
## 101                                                         good  56
## 102                                                       across  56
## 103                                                          pat  56
## 104                                                         spin  55
## 105                                                       street  55
## 106                                                         test  55
## 107                                                     sandwich  54
## 108                                                          pat  54
## 109                                                         good  54
## 110                                                        order  54
## 111                                                         meat  53
## 112                                                        thing  53
## 113                                                        genos  53
## 114                                                         whiz  52
## 115                                                        onion  52
## 116                                                           vs  52
## 117                                                           go  52
## 118                                                       philly  52
## 119                                                        onion  51
## 120                                                          pat  50
## 121                                                       across  50
## 122                                                        onion  50
## 123                                                          fry  49
## 124                                                       philly  49
## 125                                                         food  49
## 126                                                       philly  48
## 127                                                        genos  48
## 128                                                     sandwich  48
## 129                                                         king  48
## 130                                                          ago  48
## 131                                                        light  47
## 132                                                        steak  47
## 133                                                          get  47
## 134                                                         pork  47
## 135                                                        order  46
## 136                                                       philly  46
## 137                                                         like  46
## 138                                                       philly  46
## 139                                                        night  46
## 140                                                  cheesesteak  45
## 141                                                        vento  45
## 142                                                        genos  45
## 143                                                          ive  44
## 144                                                        waste  44
## 145                                                          get  44
## 146                                                         move  44
## 147                                                     sandwich  44
## 148                                                        onion  44
## 149                                                        first  43
## 150                                                       cheese  43
## 151                                                         seat  43
## 152                                                         cash  43
## 153                                                        never  43
## 154                                                          try  42
## 155                                                           go  42
## 156                                                         sign  42
## 157                                                         okay  42
## 158                                                        steak  42
## 159                                                          say  42
## 160                                                         else  42
## 161                                                         good  41
## 162                                                        genos  41
## 163                                                          one  41
## 164                                                           go  41
## 165                                                        steak  41
## 166                                                     sandwich  41
## 167                                                        thing  41
## 168                                                          fry  41
## 169                                                         meat  41
## 170                                                           go  41
## 171                                                       philly  41
## 172                                                         soft  40
## 173                                                         star  40
## 174                                                          get  40
## 175                                                           go  40
## 176                                                         meat  40
## 177                                                           go  40
## 178                                                         star  40
## 179                                                       philly  40
## 180                                                       philly  40
## 181                                                          one  39
## 182                                                         good  39
## 183                                                          bad  39
## 184                                                         good  38
## 185                                                         good  38
## 186                                                       philly  38
## 187                                                        genos  38
## 188                                                         even  38
## 189                                                  cheesesteak  37
## 190                                                  cheesesteak  37
## 191                                                          fry  37
## 192                                                       cheese  37
## 193                                                        place  37
## 194                                                           do  37
## 195                                                        order  37
## 196                                                       philly  37
## 197                                                         good  37
## 198                                                        order  37
## 199                                                           go  37
## 200                                                         good  37
## 201                                                         like  36
## 202                                                         part  36
## 203                                                          pat  36
## 204                                                          try  36
## 205                                                        genos  36
## 206                                                       review  36
## 207                                                          pat  36
## 208                                                          pat  36
## 209                                                       philly  36
## 210                                                       philly  35
## 211                                                         even  35
## 212                                                          fry  35
## 213                                                          pat  35
## 214                                                         food  35
## 215                                                        taste  35
## 216                                                        steak  35
## 217                                                           go  35
## 218                                                        south  35
## 219                                                          get  35
## 220                                                         much  35
## 221                                                        taste  35
## 222                                                 philadelphia  35
## 223                                                         good  35
## 224                                                         good  34
## 225                                                         good  34
## 226                                                        genos  34
## 227                                                       flavor  34
## 228                                                           go  34
## 229                                                         just  34
## 230                                                           im  34
## 231                                                       across  34
## 232                                                         wait  34
## 233                                                        speak  33
## 234                                                        genos  33
## 235                                                         meat  33
## 236                                                        steak  33
## 237                                                         time  33
## 238                                                         whiz  33
## 239                                                         good  33
## 240                                                         know  33
## 241                                                       philly  33
## 242                                                        steak  33
## 243                                                      tourist  33
## 244                                                        steak  33
## 245                                                         line  33
## 246                                                          one  33
## 247                                                       cheese  33
## 248                                                          wiz  33
## 249                                                         meat  32
## 250                                                       cheese  32
## 251                                                         bite  32
## 252                                                        onion  32
## 253                                                   definitely  32
## 254                                                         just  32
## 255                                                        steak  32
## 256                                                          get  32
## 257                                                     sandwich  32
## 258                                                          get  32
## 259                                                         just  32
## 260                                                       across  32
## 261                                                         like  32
## 262                                                         fast  32
## 263                                                          pat  31
## 264                                                         good  31
## 265                                                        bread  31
## 266                                                        place  31
## 267                                                         just  31
## 268                                                           do  31
## 269                                                        genos  31
## 270                                                         whiz  31
## 271                                                       cheese  31
## 272                                                         just  31
## 273                                                        slice  31
## 274                                                         good  31
## 275                                                   attraction  31
## 276                                                         whiz  31
## 277                                                   experience  30
## 278                                                           go  30
## 279                                                   understand  30
## 280                                                         good  30
## 281                                                      service  30
## 282                                                         like  30
## 283                                                          say  30
## 284                                                       cheese  30
## 285                                                         good  30
## 286                                                        bread  30
## 287                                                          say  30
## 288                                                       window  30
## 289                                                       window  30
## 290                                                           go  30
## 291                                                         meat  30
## 292                                                  cheesesteak  30
## 293                                                         away  30
## 294                                                         whiz  30
## 295                                                          get  30
## 296                                                         even  29
## 297                                                         food  29
## 298                                                          win  29
## 299                                                    provolone  29
## 300                                                        roast  29
## 301                                                         want  29
## 302                                                         time  29
## 303                                                        genos  29
## 304                                                        place  29
## 305                                                        slice  29
## 306                                                        first  29
## 307                                                        onion  29
## 308                                                          get  29
## 309                                                         just  29
## 310                                                         long  29
## 311                                                          say  29
## 312                                                         cash  28
## 313                                                         love  28
## 314                                                       pepper  28
## 315                                                        genos  28
## 316                                                         jims  28
## 317                                                       pepper  28
## 318                                                         seat  28
## 319                                                        place  28
## 320                                                         york  28
## 321                                                        genos  28
## 322                                                     mushroom  28
## 323                                                        bread  28
## 324                                                  cheesesteak  28
## 325                                                          win  28
## 326                                                         want  28
## 327                                                         chop  28
## 328                                                         spot  28
## 329                                                      counter  27
## 330                                                         ever  27
## 331                                                    provolone  27
## 332                                                         whiz  27
## 333                                                          wit  27
## 334                                                        worth  27
## 335                                                        genos  27
## 336                                                        genos  27
## 337                                                     sandwich  27
## 338                                                         line  27
## 339                                                    somewhere  27
## 340                                                         glad  27
## 341                                                         time  27
## 342                                                        place  27
## 343                                                    provolone  27
## 344                                                         food  27
## 345                                                          one  27
## 346                                                       window  27
## 347                                                          pat  27
## 348                                                     sandwich  27
## 349                                                          pat  27
## 350                                                        money  27
## 351                                                        place  27
## 352                                                          pat  27
## 353                                                           go  27
## 354                                                         trip  27
## 355                                                        fresh  26
## 356                                                          get  26
## 357                                                          wiz  26
## 358                                                          get  26
## 359                                                         park  26
## 360                                                       cheese  26
## 361                                                         make  26
## 362                                                        order  26
## 363                                                          try  26
## 364                                                        genos  26
## 365                                                        bread  26
## 366                                                         like  26
## 367                                                       cheese  26
## 368                                                       cheese  26
## 369                                                          one  26
## 370                                                           go  26
## 371                                                         spin  26
## 372                                                        genos  26
## 373                                                         bite  26
## 374                                                          pat  26
## 375                                                        onion  26
## 376                                                          see  25
## 377                                                    brotherly  25
## 378                                                          one  25
## 379                                                          eat  25
## 380                                                       window  25
## 381                                                          wiz  25
## 382                                                         tony  25
## 383                                                           im  25
## 384                                                          way  25
## 385                                                         hear  25
## 386                                                         meat  25
## 387                                                        place  25
## 388                                                         feel  25
## 389                                                         fast  25
## 390                                                         much  25
## 391                                                        right  25
## 392                                                   experience  25
## 393                                                        genos  25
## 394                                                           do  25
## 395                                                         trip  25
## 396                                                        genos  25
## 397                                                      america  25
## 398                                                        south  25
## 399                                                         good  25
## 400                                                       cheese  25
## 401                                                           go  25
## 402                                                        money  25
## 403                                                           go  25
## 404                                                         hype  25
## 405                                                         else  24
## 406                                                        chewy  24
## 407                                                        light  24
## 408                                                         list  24
## 409                                                         good  24
## 410                                                       philly  24
## 411                                                         meat  24
## 412                                                           go  24
## 413                                                         meat  24
## 414                                                       philly  24
## 415                                                        place  24
## 416                                                      quality  24
## 417                                                        never  24
## 418                                                         bite  24
## 419                                                         good  24
## 420                                                         good  24
## 421                                                          try  24
## 422                                                  cheesesteak  24
## 423                                                         work  24
## 424                                                          pat  24
## 425                                                         like  24
## 426                                                       philly  24
## 427                                                           go  24
## 428                                                      channel  24
## 429                                                  cheesesteak  24
## 430                                                        genos  24
## 431                                                         look  24
## 432                                                         line  23
## 433                                                       street  23
## 434                                                         meat  23
## 435                                                       cheese  23
## 436                                                          try  23
## 437                                                         will  23
## 438                                                        wrong  23
## 439                                                         want  23
## 440                                                          pat  23
## 441                                                         good  23
## 442                                                         trip  23
## 443                                                         good  23
## 444                                                       cheese  23
## 445                                                       flavor  23
## 446                                                          wiz  23
## 447                                                          one  23
## 448                                                         side  23
## 449                                                        great  23
## 450                                                       famous  23
## 451                                                           go  23
## 452                                                       philly  22
## 453                                                       cheese  22
## 454                                                          one  22
## 455                                                        taste  22
## 456                                                          wiz  22
## 457                                                           go  22
## 458                                                        bread  22
## 459                                                         also  22
## 460                                                         like  22
## 461                                                         much  22
## 462                                                           vs  22
## 463                                                       window  22
## 464                                                          try  22
## 465                                                          way  22
## 466                                                   experience  22
## 467                                                       flavor  22
## 468                                                          fry  22
## 469                                                  expectation  22
## 470                                                    recommend  22
## 471                                                         make  22
## 472                                                        bread  22
## 473                                                  cheesesteak  22
## 474                                                        steak  22
## 475                                                         hype  22
## 476                                                       flavor  22
## 477                                                       little  22
## 478                                                        onion  22
## 479                                                         good  22
## 480                                                          get  22
## 481                                                          one  22
## 482                                                          try  22
## 483                                                         meat  22
## 484                                                           go  22
## 485                                                       pepper  22
## 486                                                        wasnt  22
## 487                                                         good  22
## 488                                                          ive  22
## 489                                                          one  22
## 490                                                         good  22
## 491                                                          get  22
## 492                                                        money  22
## 493                                                         real  22
## 494                                                         away  21
## 495                                                         hard  21
## 496                                                       little  21
## 497                                                           go  21
## 498                                                         make  21
## 499                                                        bread  21
## 500                                                        wasnt  21
## 501                                                        joint  21
## 502                                                         good  21
## 503                                                      tourist  21
## 504                                                       philly  21
## 505                                                          use  21
## 506                                                        order  21
## 507                                                        wrong  21
## 508                                                         like  21
## 509                                                       though  21
## 510                                                  cheesesteak  21
## 511                                                         good  21
## 512                                                          say  21
## 513                                                           go  21
## 514                                                          pat  21
## 515                                                        taste  21
## 516                                                      quickly  21
## 517                                                         whiz  21
## 518                                                      instead  21
## 519                                                         jims  21
## 520                                                         will  21
## 521                                                        genos  21
## 522                                                        onion  21
## 523                                                         sign  21
## 524                                                          try  21
## 525                                                        bread  21
## 526                                                        genos  21
## 527                                                        slice  21
## 528                                                        thing  21
## 529                                                         give  21
## 530                                                        onion  21
## 531                                                           go  21
## 532                                                         star  21
## 533                                                         deal  20
## 534                                                         find  20
## 535                                                           do  20
## 536                                                         stop  20
## 537                                                        speak  20
## 538                                                          way  20
## 539                                                        genos  20
## 540                                                  cheesesteak  20
## 541                                                           im  20
## 542                                                          try  20
## 543                                                           go  20
## 544                                                          try  20
## 545                                                      tourist  20
## 546                                                         bell  20
## 547                                                          eat  20
## 548                                                         meat  20
## 549                                                     sandwich  20
## 550                                                       pepper  20
## 551                                                          wiz  20
## 552                                                    provolone  20
## 553                                                        place  20
## 554                                                        genos  20
## 555                                                        wasnt  20
## 556                                                         park  20
## 557                                                       cheese  20
## 558                                                        visit  20
## 559                                                         star  20
## 560                                                   experience  20
## 561                                                          try  20
## 562                                                        order  19
## 563                                                       window  19
## 564                                                         else  19
## 565                                                        place  19
## 566                                                     sandwich  19
## 567                                                         make  19
## 568                                                        genos  19
## 569                                                        genos  19
## 570                                                    recommend  19
## 571                                                       really  19
## 572                                                        order  19
## 573                                                         melt  19
## 574                                                         good  19
## 575                                                        place  19
## 576                                                         soda  19
## 577                                                 cheesesteaks  19
## 578                                                        order  19
## 579                                                          try  19
## 580                                                           us  19
## 581                                                          eat  19
## 582                                                          eat  19
## 583                                                        think  19
## 584                                                        sorry  19
## 585                                                       market  19
## 586                                                          eat  19
## 587                                                        genos  19
## 588                                                        order  19
## 589                                                        tough  19
## 590                                                       tender  19
## 591                                                        wasnt  19
## 592                                                         door  19
## 593                                                       cheese  19
## 594                                                       philly  19
## 595                                                        speak  19
## 596                                                        first  19
## 597                                                         good  19
## 598                                                         just  19
## 599                                                         make  19
## 600                                                      officer  19
## 601                                                          pat  19
## 602                                                         good  19
## 603                                                          get  19
## 604                                                         shop  19
## 605                                                      picture  19
## 606                                                           go  19
## 607                                                          ive  19
## 608                                                          get  19
## 609                                                       corner  18
## 610                                                       cheese  18
## 611                                                       review  18
## 612                                                         spin  18
## 613                                                         away  18
## 614                                                         meat  18
## 615                                                          eat  18
## 616                                                       cheese  18
## 617                                                  cheesesteak  18
## 618                                                        place  18
## 619                                                           do  18
## 620                                                        great  18
## 621                                                       really  18
## 622                                                         seem  18
## 623                                                    elsewhere  18
## 624                                                          one  18
## 625                                                       little  18
## 626                                                        order  18
## 627                                                         roll  18
## 628                                                          try  18
## 629                                                          get  18
## 630                                                      quality  18
## 631                                                        bland  18
## 632                                                       cheese  18
## 633                                                          two  18
## 634                                                        genos  18
## 635                                                          pay  18
## 636                                                         good  18
## 637                                                        still  18
## 638                                                         want  18
## 639                                                          can  18
## 640                                                           do  18
## 641                                                        place  18
## 642                                                         next  18
## 643                                                        bread  18
## 644                                                           do  18
## 645                                                        quick  18
## 646                                                    provolone  18
## 647                                                        slice  18
## 648                                                           us  18
## 649                                                         come  18
## 650                                                    authentic  18
## 651                                                       philly  18
## 652                                                       window  17
## 653                                                         meat  17
## 654                                                           pm  17
## 655                                                        steak  17
## 656                                                        genos  17
## 657                                                         okay  17
## 658                                                          pat  17
## 659                                                        taste  17
## 660                                                      believe  17
## 661                                                         melt  17
## 662                                                     sandwich  17
## 663                                                       really  17
## 664                                                       across  17
## 665                                                       bother  17
## 666                                                         care  17
## 667                                                      outside  17
## 668                                                      service  17
## 669                                                        visit  17
## 670                                                        taste  17
## 671                                                          fry  17
## 672                                                       enough  17
## 673                                                       option  17
## 674                                                        worth  17
## 675                                                       philly  17
## 676                                                        place  17
## 677                                                          try  17
## 678                                                          fan  17
## 679                                                        right  17
## 680                                                        taste  17
## 681                                                      forward  17
## 682                                                      mistake  17
## 683                                                        sense  17
## 684                                                        tough  17
## 685                                                         bite  17
## 686                                                    provolone  17
## 687                                                         whiz  17
## 688                                                         also  17
## 689                                                        taste  17
## 690                                                          try  17
## 691                                                         know  17
## 692                                                        genos  17
## 693                                                      service  17
## 694                                                          fry  17
## 695                                                          ive  17
## 696                                                       window  17
## 697                                                         good  17
## 698                                                     friendly  17
## 699                                                        bland  17
## 700                                                          fry  17
## 701                                                         like  17
## 702                                                        place  17
## 703                                                        genos  17
## 704                                                       philly  17
## 705                                                      impress  17
## 706                                                        order  17
## 707                                                          say  17
## 708                                                       cheese  17
## 709                                                       cheese  17
## 710                                                       around  17
## 711                                                          try  16
## 712                                                    provolone  16
## 713                                                        build  16
## 714                                                  cheesesteak  16
## 715                                                         beer  16
## 716                                                         good  16
## 717                                                         meat  16
## 718                                                        stale  16
## 719                                                        sauce  16
## 720                                                          fry  16
## 721                                                       philly  16
## 722                                                         card  16
## 723                                                         good  16
## 724                                                        taste  16
## 725                                                       forget  16
## 726                                                         meat  16
## 727                                                        coast  16
## 728                                                     sandwich  16
## 729                                                       philly  16
## 730                                                 cheesesteaks  16
## 731                                                          get  16
## 732                                                       little  16
## 733                                                          one  16
## 734                                                        great  16
## 735                                                         food  16
## 736                                                        place  16
## 737                                                       rather  16
## 738                                                          eat  16
## 739                                                         vega  16
## 740                                                           go  16
## 741                                                          one  16
## 742                                                         wrap  16
## 743                                                         move  16
## 744                                                       cheese  16
## 745                                                 cheesesteaks  16
## 746                                                       people  16
## 747                                                         year  16
## 748                                                         just  16
## 749                                                  cheesesteak  16
## 750                                                          eat  16
## 751                                                        genos  16
## 752                                                          two  16
## 753                                                         chop  16
## 754                                                        ginos  16
## 755                                                         line  16
## 756                                                          way  16
## 757                                                         come  16
## 758                                                        think  16
## 759                                                          eat  16
## 760                                                        genos  16
## 761                                                         spin  16
## 762                                                         hype  16
## 763                                                        place  16
## 764                                                          eat  16
## 765                                                         chop  16
## 766                                                       little  16
## 767                                                          wit  16
## 768                                                          wiz  16
## 769                                                        first  16
## 770                                                     sandwich  16
## 771                                                          eat  16
## 772                                                        thing  16
## 773                                                 cheesesteaks  16
## 774                                                        first  16
## 775                                                  cheesesteak  16
## 776                                                          eat  16
## 777                                                         good  16
## 778                                                   definitely  16
## 779                                                         time  15
## 780                                                          get  15
## 781                                                           go  15
## 782                                                        bread  15
## 783                                                          can  15
## 784                                                        wasnt  15
## 785                                                         like  15
## 786                                                         even  15
## 787                                                       expect  15
## 788                                                         give  15
## 789                                                         want  15
## 790                                                        bread  15
## 791                                                        steak  15
## 792                                                         food  15
## 793                                                        steak  15
## 794                                                         meat  15
## 795                                                         else  15
## 796                                                          bad  15
## 797                                                        place  15
## 798                                                        timer  15
## 799                                                          pat  15
## 800                                                          bad  15
## 801                                                          can  15
## 802                                                          far  15
## 803                                                         line  15
## 804                                                         okay  15
## 805                                                        since  15
## 806                                                   experience  15
## 807                                                         also  15
## 808                                                        onion  15
## 809                                                       cheese  15
## 810                                                         find  15
## 811                                                        genos  15
## 812                                                         give  15
## 813                                                       people  15
## 814                                                         take  15
## 815                                                       minute  15
## 816                                                         just  15
## 817                                                         meat  15
## 818                                                       pepper  15
## 819                                                         come  15
## 820                                                          try  15
## 821                                                       cheese  15
## 822                                                      another  15
## 823                                                           go  15
## 824                                                         time  15
## 825                                                          wit  15
## 826                                                 cheesesteaks  15
## 827                                                   definitely  15
## 828                                                         seem  15
## 829                                                  cheesesteak  15
## 830                                                         come  15
## 831                                                         meat  15
## 832                                                       cheese  15
## 833                                                         hype  15
## 834                                                         look  15
## 835                                                       really  15
## 836                                                     sandwich  15
## 837                                                          wit  15
## 838                                                        enjoy  15
## 839                                                          pat  15
## 840                                                        place  15
## 841                                                        bread  15
## 842                                                         okay  15
## 843                                                       really  15
## 844                                                          try  15
## 845                                                         back  15
## 846                                                          bud  15
## 847                                                        steak  15
## 848                                                         back  15
## 849                                                    provolone  15
## 850                                                         back  15
## 851                                                           go  15
## 852                                                          try  15
## 853                                                       review  15
## 854                                                         home  14
## 855                                                 cheesesteaks  14
## 856                                                          say  14
## 857                                                       cheese  14
## 858                                                         come  14
## 859                                                        genos  14
## 860                                                          pat  14
## 861                                                        visit  14
## 862                                                         good  14
## 863                                                         meat  14
## 864                                                          one  14
## 865                                                         know  14
## 866                                                         want  14
## 867                                                      believe  14
## 868                                                         chop  14
## 869                                                         make  14
## 870                                                          way  14
## 871                                                         half  14
## 872                                                        place  14
## 873                                                        place  14
## 874                                                           go  14
## 875                                                       doesnt  14
## 876                                                         even  14
## 877                                                         long  14
## 878                                                         take  14
## 879                                                         real  14
## 880                                                       cheese  14
## 881                                                          ive  14
## 882                                                       really  14
## 883                                                 cheesesteaks  14
## 884                                                      quality  14
## 885                                                        genos  14
## 886                                                        didnt  14
## 887                                                        wasnt  14
## 888                                                      tourist  14
## 889                                                        night  14
## 890                                                         just  14
## 891                                                      tourist  14
## 892                                                       cheese  14
## 893                                                        order  14
## 894                                                        juicy  14
## 895                                                       review  14
## 896                                                         sign  14
## 897                                                          day  14
## 898                                                         know  14
## 899                                                         hour  14
## 900                                                     mushroom  14
## 901                                                          can  14
## 902                                                       decide  14
## 903                                                         next  14
## 904                                                        think  14
## 905                                                           go  14
## 906                                                     mushroom  14
## 907                                                       native  14
## 908                                                         year  14
## 909                                                       around  14
## 910                                                       cheese  14
## 911                                                      service  14
## 912                                                     terminal  14
## 913                                                         just  14
## 914                                                          get  14
## 915                                                           go  14
## 916                                                         meat  14
## 917                                                        onion  14
## 918                                                         shop  14
## 919                                                        taste  14
## 920                                                         sign  14
## 921                                                         beef  14
## 922                                                          can  14
## 923                                                         come  14
## 924                                                         ever  14
## 925                                                        joint  14
## 926                                                         meat  14
## 927                                                       tender  14
## 928                                                         meat  14
## 929                                                        slice  14
## 930                                                        place  14
## 931                                                         will  14
## 932                                                        place  14
## 933                                                        thing  14
## 934                                                         jims  14
## 935                                                        place  14
## 936                                                        order  14
## 937                                                         make  14
## 938                                                         tell  14
## 939                                                        drink  14
## 940                                                        never  14
## 941                                                      special  13
## 942                                                          pat  13
## 943                                                       flavor  13
## 944                                                         spin  13
## 945                                                        wasnt  13
## 946                                                       little  13
## 947                                                        great  13
## 948                                                        order  13
## 949                                                 philadelphia  13
## 950                                                           go  13
## 951                                                          let  13
## 952                                                       really  13
## 953                                                         take  13
## 954                                                        order  13
## 955                                                       philly  13
## 956                                                          pat  13
## 957                                                          one  13
## 958                                                        close  13
## 959                                                       philly  13
## 960                                                  cheesesteak  13
## 961                                                          pat  13
## 962                                                         come  13
## 963                                                         just  13
## 964                                                         also  13
## 965                                                   experience  13
## 966                                                         give  13
## 967                                                         suck  13
## 968                                                          pat  13
## 969                                                          two  13
## 970                                                        first  13
## 971                                                         just  13
## 972                                                          can  13
## 973                                                   definitely  13
## 974                                                        first  13
## 975                                                       friend  13
## 976                                                         many  13
## 977                                                          say  13
## 978                                                         soft  13
## 979                                                         give  13
## 980                                                         just  13
## 981                                                         tony  13
## 982                                                          bad  13
## 983                                                      mustard  13
## 984                                                        place  13
## 985                                                     sandwich  13
## 986                                                         spin  13
## 987                                                         wait  13
## 988                                                  cheesesteak  13
## 989                                                         isnt  13
## 990                                                         roll  13
## 991                                                         wait  13
## 992                                                         much  13
## 993                                                       philly  13
## 994                                                          yes  13
## 995                                                       across  13
## 996                                                          bad  13
## 997                                                          day  13
## 998                                                      compare  13
## 999                                                         geno  13
## 1000                                                       order  13
## 1001                                                         see  13
## 1002                                                         one  13
## 1003                                                    sandwich  13
## 1004                                                        city  13
## 1005                                                      decent  13
## 1006                                                        good  13
## 1007                                                       steak  13
## 1008                                                        look  13
## 1009                                                          go  13
## 1010                                                        like  13
## 1011                                                       place  13
## 1012                                                         ive  13
## 1013                                                        less  13
## 1014                                                        much  13
## 1015                                                philadelphia  13
## 1016                                                      review  13
## 1017                                                         sub  13
## 1018                                                         one  13
## 1019                                                        know  13
## 1020                                                         one  13
## 1021                                                        like  13
## 1022                                                    sandwich  13
## 1023                                                        star  13
## 1024                                                        away  13
## 1025                                                       steak  13
## 1026                                                      minute  13
## 1027                                                       great  13
## 1028                                                        much  13
## 1029                                                    american  13
## 1030                                                       slice  13
## 1031                                                      review  13
## 1032                                                        cash  12
## 1033                                                        like  12
## 1034                                                 cheesesteak  12
## 1035                                                       local  12
## 1036                                                       genos  12
## 1037                                                        food  12
## 1038                                                         fan  12
## 1039                                                        bite  12
## 1040                                                        just  12
## 1041                                                       tough  12
## 1042                                                        make  12
## 1043                                                        like  12
## 1044                                                         two  12
## 1045                                                        back  12
## 1046                                                        take  12
## 1047                                                        care  12
## 1048                                                        seem  12
## 1049                                                      window  12
## 1050                                                 cheesesteak  12
## 1051                                                        need  12
## 1052                                                        good  12
## 1053                                                        meat  12
## 1054                                                        bite  12
## 1055                                                      philly  12
## 1056                                                         bad  12
## 1057                                                       genos  12
## 1058                                                        seat  12
## 1059                                                       thing  12
## 1060                                                        good  12
## 1061                                                    sandwich  12
## 1062                                                          go  12
## 1063                                                       great  12
## 1064                                                        star  12
## 1065                                                          go  12
## 1066                                                      really  12
## 1067                                                  experience  12
## 1068                                                     compare  12
## 1069                                                        look  12
## 1070                                                         may  12
## 1071                                                       serve  12
## 1072                                                       still  12
## 1073                                                       great  12
## 1074                                                        even  12
## 1075                                                        line  12
## 1076                                                      reason  12
## 1077                                                        time  12
## 1078                                                         try  12
## 1079                                                       wasnt  12
## 1080                                                        spot  12
## 1081                                                        line  12
## 1082                                                        give  12
## 1083                                                          go  12
## 1084                                                         one  12
## 1085                                                       plain  12
## 1086                                                          im  12
## 1087                                                        come  12
## 1088                                                      people  12
## 1089                                                        want  12
## 1090                                                        time  12
## 1091                                                        chop  12
## 1092                                                        cook  12
## 1093                                                      really  12
## 1094                                                      season  12
## 1095                                                          go  12
## 1096                                                        good  12
## 1097                                                     nothing  12
## 1098                                                        line  12
## 1099                                                        just  12
## 1100                                                        meat  12
## 1101                                                         raw  12
## 1102                                                      werent  12
## 1103                                                       genos  12
## 1104                                                   correctly  12
## 1105                                                         pat  12
## 1106                                                 cheesesteak  12
## 1107                                                      philly  12
## 1108                                                         can  12
## 1109                                                     however  12
## 1110                                                         say  12
## 1111                                                       since  12
## 1112                                                        tony  12
## 1113                                                        will  12
## 1114                                                        like  12
## 1115                                                       think  12
## 1116                                                         eat  12
## 1117                                                         ill  12
## 1118                                                        like  12
## 1119                                                         pat  12
## 1120                                                       table  12
## 1121                                                       great  12
## 1122                                                         sit  12
## 1123                                                        star  12
## 1124                                                       speak  12
## 1125                                                        food  12
## 1126                                                       place  12
## 1127                                                       onion  12
## 1128                                                        make  12
## 1129                                                       worth  12
## 1130                                                      amount  12
## 1131                                                        make  12
## 1132                                                       order  12
## 1133                                                          im  12
## 1134                                                       order  12
## 1135                                                      window  12
## 1136                                                       genos  12
## 1137                                                        rate  12
## 1138                                                          do  12
## 1139                                                          im  12
## 1140                                                        make  12
## 1141                                                       think  12
## 1142                                                         try  12
## 1143                                                         get  12
## 1144                                                         try  12
## 1145                                                       money  12
## 1146                                                      reason  12
## 1147                                                         ill  12
## 1148                                                        good  12
## 1149                                                         try  12
## 1150                                                        city  12
## 1151                                                      cheese  12
## 1152                                                     country  12
## 1153                                                    anything  12
## 1154                                                       genos  12
## 1155                                                    sandwich  12
## 1156                                                         get  12
## 1157                                                         fry  12
## 1158                                                         one  12
## 1159                                                          do  11
## 1160                                                        seem  11
## 1161                                                      philly  11
## 1162                                                        line  11
## 1163                                                      across  11
## 1164                                                       taste  11
## 1165                                                       raise  11
## 1166                                                       onion  11
## 1167                                                       soggy  11
## 1168                                                      orange  11
## 1169                                                        read  11
## 1170                                                          do  11
## 1171                                                         get  11
## 1172                                                        just  11
## 1173                                                       stake  11
## 1174                                                       taste  11
## 1175                                                   challenge  11
## 1176                                                       didnt  11
## 1177                                                        just  11
## 1178                                                        meat  11
## 1179                                                        shop  11
## 1180                                                        spot  11
## 1181                                                       think  11
## 1182                                                         ive  11
## 1183                                                         way  11
## 1184                                                         pat  11
## 1185                                                      across  11
## 1186                                                          go  11
## 1187                                                       think  11
## 1188                                                   recommend  11
## 1189                                                        just  11
## 1190                                                 cheesesteak  11
## 1191                                                         bad  11
## 1192                                                         get  11
## 1193                                                      cheese  11
## 1194                                                      people  11
## 1195                                                       genos  11
## 1196                                                         get  11
## 1197                                                        stop  11
## 1198                                                        trip  11
## 1199                                                       genos  11
## 1200                                                     quality  11
## 1201                                                       order  11
## 1202                                                         fry  11
## 1203                                                        just  11
## 1204                                                      pretty  11
## 1205                                                      always  11
## 1206                                                        bite  11
## 1207                                                        feel  11
## 1208                                                      pretty  11
## 1209                                                         see  11
## 1210                                                       slice  11
## 1211                                                       wasnt  11
## 1212                                                cheesesteaks  11
## 1213                                                       onion  11
## 1214                                                       taste  11
## 1215                                                 cheesesteak  11
## 1216                                                         see  11
## 1217                                                       south  11
## 1218                                                        whiz  11
## 1219                                                       youre  11
## 1220                                                        come  11
## 1221                                                     however  11
## 1222                                                     overall  11
## 1223                                                        spot  11
## 1224                                                       thats  11
## 1225                                                         two  11
## 1226                                                        take  11
## 1227                                                       genos  11
## 1228                                                        food  11
## 1229                                                       genos  11
## 1230                                                         pat  11
## 1231                                                     average  11
## 1232                                                        give  11
## 1233                                                        mind  11
## 1234                                                         bad  11
## 1235                                                    favorite  11
## 1236                                                       alone  11
## 1237                                                       onion  11
## 1238                                                      philly  11
## 1239                                                         can  11
## 1240                                                        food  11
## 1241                                                        wait  11
## 1242                                                      flavor  11
## 1243                                                      minute  11
## 1244                                                       place  11
## 1245                                                      philly  11
## 1246                                                         way  11
## 1247                                                       didnt  11
## 1248                                                        meat  11
## 1249                                                        good  11
## 1250                                                          go  11
## 1251                                                         try  11
## 1252                                                        trip  11
## 1253                                                       order  11
## 1254                                                         say  11
## 1255                                                      flavor  11
## 1256                                                    sandwich  11
## 1257                                                        late  11
## 1258                                                          do  11
## 1259                                                        seat  11
## 1260                                                    sandwich  11
## 1261                                                        give  11
## 1262                                                      really  11
## 1263                                                      review  11
## 1264                                                         two  11
## 1265                                                       order  11
## 1266                                                        will  11
## 1267                                                  preference  11
## 1268                                                        area  11
## 1269                                                          do  11
## 1270                                                 institution  11
## 1271                                                       genos  11
## 1272                                                        cash  11
## 1273                                                 cheesesteak  11
## 1274                                                      doesnt  11
## 1275                                                         ive  11
## 1276                                                        open  11
## 1277                                                philadelphia  11
## 1278                                                      pretty  11
## 1279                                                        chop  11
## 1280                                                    american  11
## 1281                                                        long  11
## 1282                                                         now  11
## 1283                                                        beef  11
## 1284                                                        also  11
## 1285                                                        come  11
## 1286                                                       didnt  11
## 1287                                                        okay  11
## 1288                                                      really  11
## 1289                                                         one  11
## 1290                                                      philly  11
## 1291                                                      review  11
## 1292                                                      little  11
## 1293                                                        good  11
## 1294                                                     outside  11
## 1295                                                       order  11
## 1296                                                         way  11
## 1297                                                         par  11
## 1298                                                 cheesesteak  11
## 1299                                                          go  11
## 1300                                                        meat  11
## 1301                                                        want  11
## 1302                                                philadelphia  11
## 1303                                                        good  11
## 1304                                                    sandwich  11
## 1305                                                         two  11
## 1306                                                      window  11
## 1307                                                      cheese  11
## 1308                                                        hype  11
## 1309                                                         get  11
## 1310                                                        away  11
## 1311                                                         see  11
## 1312                                                       genos  11
## 1313                                                         one  11
## 1314                                                       drink  11
## 1315                                                        just  11
## 1316                                                        mean  11
## 1317                                                      witout  11
## 1318                                                         fry  11
## 1319                                                        good  11
## 1320                                                     without  11
## 1321                                                      famous  11
## 1322                                                        home  11
## 1323                                                      flavor  11
## 1324                                                      credit  10
## 1325                                                        like  10
## 1326                                                        line  10
## 1327                                                       block  10
## 1328                                                        city  10
## 1329                                                        good  10
## 1330                                                        line  10
## 1331                                                          do  10
## 1332                                                       place  10
## 1333                                                     service  10
## 1334                                                        hype  10
## 1335                                                       taste  10
## 1336                                                        make  10
## 1337                                                      really  10
## 1338                                                         one  10
## 1339                                                    sandwich  10
## 1340                                                       steak  10
## 1341                                                        wait  10
## 1342                                                        also  10
## 1343                                                       genos  10
## 1344                                                        city  10
## 1345                                                        much  10
## 1346                                                      pretty  10
## 1347                                                       still  10
## 1348                                                      really  10
## 1349                                                        meat  10
## 1350                                                         pat  10
## 1351                                                      cheese  10
## 1352                                                 cheesesteak  10
## 1353                                                         pat  10
## 1354                                                         try  10
## 1355                                                       onion  10
## 1356                                                       steak  10
## 1357                                                        just  10
## 1358                                                         two  10
## 1359                                                        come  10
## 1360                                                      cheese  10
## 1361                                                   tasteless  10
## 1362                                                       genos  10
## 1363                                                         eat  10
## 1364                                                      finish  10
## 1365                                                        much  10
## 1366                                                        rude  10
## 1367                                                    superior  10
## 1368                                                        make  10
## 1369                                                       visit  10
## 1370                                                        just  10
## 1371                                                       truck  10
## 1372                                                       great  10
## 1373                                                        okay  10
## 1374                                                        food  10
## 1375                                                        jims  10
## 1376                                                        must  10
## 1377                                                     tourist  10
## 1378                                                    american  10
## 1379                                                        back  10
## 1380                                                    business  10
## 1381                                                       drink  10
## 1382                                                        hype  10
## 1383                                                        much  10
## 1384                                                       place  10
## 1385                                                        good  10
## 1386                                                        edge  10
## 1387                                                       money  10
## 1388                                                         pat  10
## 1389                                                         try  10
## 1390                                                        next  10
## 1391                                                philadelphia  10
## 1392                                                         say  10
## 1393                                                     tourist  10
## 1394                                                    anything  10
## 1395                                                         bad  10
## 1396                                                       didnt  10
## 1397                                                        less  10
## 1398                                                        luck  10
## 1399                                                       still  10
## 1400                                                        whiz  10
## 1401                                                         say  10
## 1402                                                    sandwich  10
## 1403                                                       genos  10
## 1404                                                        chew  10
## 1405                                                         fan  10
## 1406                                                       place  10
## 1407                                                        like  10
## 1408                                                         say  10
## 1409                                                      always  10
## 1410                                                         get  10
## 1411                                                      philly  10
## 1412                                                         see  10
## 1413                                                      across  10
## 1414                                                        feel  10
## 1415                                                        seem  10
## 1416                                                        walk  10
## 1417                                                        just  10
## 1418                                                        like  10
## 1419                                                        food  10
## 1420                                                          im  10
## 1421                                                      around  10
## 1422                                                         one  10
## 1423                                                       steak  10
## 1424                                                      cheese  10
## 1425                                                    actually  10
## 1426                                                        bite  10
## 1427                                                 cheesesteak  10
## 1428                                                         cut  10
## 1429                                                       fatty  10
## 1430                                                    sandwich  10
## 1431                                                        late  10
## 1432                                                        line  10
## 1433                                                          go  10
## 1434                                                       onion  10
## 1435                                                         say  10
## 1436                                                         get  10
## 1437                                                         see  10
## 1438                                                      jersey  10
## 1439                                                      yorker  10
## 1440                                                        like  10
## 1441                                                      famous  10
## 1442                                                        make  10
## 1443                                                         one  10
## 1444                                                     process  10
## 1445                                                       right  10
## 1446                                                       wrong  10
## 1447                                                         bad  10
## 1448                                                  comparison  10
## 1449                                                          im  10
## 1450                                                      little  10
## 1451                                                        look  10
## 1452                                                     overall  10
## 1453                                                      though  10
## 1454                                                     tourist  10
## 1455                                                        line  10
## 1456                                                         get  10
## 1457                                                        must  10
## 1458                                                       offer  10
## 1459                                                      philly  10
## 1460                                                       place  10
## 1461                                                     without  10
## 1462                                                cheesesteaks  10
## 1463                                                       clean  10
## 1464                                                        come  10
## 1465                                                      little  10
## 1466                                                          do  10
## 1467                                                        spin  10
## 1468                                                       steak  10
## 1469                                                          go  10
## 1470                                                    sandwich  10
## 1471                                                       steak  10
## 1472                                                  disappoint  10
## 1473                                                       staff  10
## 1474                                                        bite  10
## 1475                                                          do  10
## 1476                                                      little  10
## 1477                                                      pretty  10
## 1478                                                    sandwich  10
## 1479                                                        time  10
## 1480                                                        like  10
## 1481                                                        meat  10
## 1482                                                        line  10
## 1483                                                        line  10
## 1484                                                        note  10
## 1485                                                        tell  10
## 1486                                                       genos  10
## 1487                                                        like  10
## 1488                                                      jersey  10
## 1489                                                       money  10
## 1490                                                         one  10
## 1491                                                      philly  10
## 1492                                                       bread  10
## 1493                                                        also  10
## 1494                                                        bite  10
## 1495                                                       first  10
## 1496                                                        much  10
## 1497                                                       tough  10
## 1498                                                      prince  10
## 1499                                                        line  10
## 1500                                                        fast  10
## 1501                                                        good  10
## 1502                                                      pepper  10
## 1503                                                       bland  10
## 1504                                                       fresh  10
## 1505                                                       great  10
## 1506                                                        just  10
## 1507                                                       onion  10
## 1508                                                       place  10
## 1509                                                      market  10
## 1510                                                        just  10
## 1511                                                     nothing  10
## 1512                                                      cheese  10
## 1513                                                          go  10
## 1514                                                       order  10
## 1515                                                        come  10
## 1516                                                 destination  10
## 1517                                                     another  10
## 1518                                                       order  10
## 1519                                                        real  10
## 1520                                                        show  10
## 1521                                                      cheese  10
## 1522                                                      cheese  10
## 1523                                                      around  10
## 1524                                                         say  10
## 1525                                                      enough  10
## 1526                                                        much  10
## 1527                                                      really  10
## 1528                                                        just  10
## 1529                                                      pretty  10
## 1530                                                       steak  10
## 1531                                                     without  10
## 1532                                                      return  10
## 1533                                                         can  10
## 1534                                                          go  10
## 1535                                                        come  10
## 1536                                                         old  10
## 1537                                                        find  10
## 1538                                                        good   9
## 1539                                                        good   9
## 1540                                                          go   9
## 1541                                                        want   9
## 1542                                                cheesesteaks   9
## 1543                                                         wit   9
## 1544                                                      cheese   9
## 1545                                                       place   9
## 1546                                                 cheesesteak   9
## 1547                                                    attitude   9
## 1548                                                        part   9
## 1549                                                       thing   9
## 1550                                                       slice   9
## 1551                                                       slice   9
## 1552                                                         use   9
## 1553                                                        neon   9
## 1554                                                        home   9
## 1555                                                    honestly   9
## 1556                                                  understand   9
## 1557                                                        even   9
## 1558                                                       ready   9
## 1559                                                      flavor   9
## 1560                                                       grill   9
## 1561                                                      battle   9
## 1562                                               establishment   9
## 1563                                                       first   9
## 1564                                                       since   9
## 1565                                                         way   9
## 1566                                                     without   9
## 1567                                                          do   9
## 1568                                                        ever   9
## 1569                                                         get   9
## 1570                                                      cheese   9
## 1571                                                  conclusion   9
## 1572                                                        just   9
## 1573                                                philadelphia   9
## 1574                                                       place   9
## 1575                                                        town   9
## 1576                                                         pat   9
## 1577                                                       taste   9
## 1578                                                    sandwich   9
## 1579                                                        trip   9
## 1580                                                 cheesesteak   9
## 1581                                                       steak   9
## 1582                                                          go   9
## 1583                                                        much   9
## 1584                                                       place   9
## 1585                                                        meat   9
## 1586                                                        mean   9
## 1587                                                       taste   9
## 1588                                                         eat   9
## 1589                                                       bread   9
## 1590                                                         pat   9
## 1591                                                       press   9
## 1592                                                       thing   9
## 1593                                                        food   9
## 1594                                                      bother   9
## 1595                                                         hot   9
## 1596                                                       taste   9
## 1597                                                          go   9
## 1598                                                       order   9
## 1599                                                       steak   9
## 1600                                                       place   9
## 1601                                                        good   9
## 1602                                                        spot   9
## 1603                                                   authentic   9
## 1604                                                      cheese   9
## 1605                                                       genos   9
## 1606                                                       onion   9
## 1607                                                  whatsoever   9
## 1608                                                          do   9
## 1609                                                        okay   9
## 1610                                                     service   9
## 1611                                                       wasnt   9
## 1612                                                        cold   9
## 1613                                                         hot   9
## 1614                                                       steak   9
## 1615                                                      decide   9
## 1616                                                      family   9
## 1617                                                         get   9
## 1618                                                     service   9
## 1619                                                          go   9
## 1620                                                         pat   9
## 1621                                                      across   9
## 1622                                                      almost   9
## 1623                                                        come   9
## 1624                                                       didnt   9
## 1625                                                    favorite   9
## 1626                                                         fry   9
## 1627                                                         guy   9
## 1628                                                         lot   9
## 1629                                                        nice   9
## 1630                                                        open   9
## 1631                                                       right   9
## 1632                                                        tell   9
## 1633                                                       think   9
## 1634                                                   authentic   9
## 1635                                                         bad   9
## 1636                                                      chance   9
## 1637                                                        cold   9
## 1638                                                       money   9
## 1639                                                        yell   9
## 1640                                                         two   9
## 1641                                                        zero   9
## 1642                                                     another   9
## 1643                                                      around   9
## 1644                                                      unless   9
## 1645                                                    customer   9
## 1646                                                        find   9
## 1647                                                        idea   9
## 1648                                                     nothing   9
## 1649                                                         now   9
## 1650                                                       youre   9
## 1651                                                       bread   9
## 1652                                                  experience   9
## 1653                                                      flavor   9
## 1654                                                       taste   9
## 1655                                                       store   9
## 1656                                                      window   9
## 1657                                                      across   9
## 1658                                                        good   9
## 1659                                                        many   9
## 1660                                                       drive   9
## 1661                                                          go   9
## 1662                                                        back   9
## 1663                                                        just   9
## 1664                                                       gonna   9
## 1665                                                      really   9
## 1666                                                        town   9
## 1667                                                        chop   9
## 1668                                                        much   9
## 1669                                                      cheese   9
## 1670                                                        come   9
## 1671                                                        look   9
## 1672                                                       order   9
## 1673                                                        take   9
## 1674                                                       think   9
## 1675                                                        line   9
## 1676                                                          go   9
## 1677                                                         pat   9
## 1678                                                       genos   9
## 1679                                                        want   9
## 1680                                                      around   9
## 1681                                                       short   9
## 1682                                                       wasnt   9
## 1683                                                      greasy   9
## 1684                                                      little   9
## 1685                                                       taste   9
## 1686                                                        tell   9
## 1687                                                      enough   9
## 1688                                                        good   9
## 1689                                                        jims   9
## 1690                                                  difference   9
## 1691                                                        even   9
## 1692                                                       genos   9
## 1693                                                       great   9
## 1694                                                        home   9
## 1695                                                       point   9
## 1696                                                       taste   9
## 1697                                                        just   9
## 1698                                                       onion   9
## 1699                                                       fresh   9
## 1700                                                        much   9
## 1701                                                      pretty   9
## 1702                                                        seem   9
## 1703                                                       mouth   9
## 1704                                                         can   9
## 1705                                                 cheesesteak   9
## 1706                                                       drink   9
## 1707                                                        else   9
## 1708                                                        just   9
## 1709                                                       wasnt   9
## 1710                                                    favorite   9
## 1711                                                         get   9
## 1712                                                        word   9
## 1713                                                         add   9
## 1714                                                        also   9
## 1715                                                        cook   9
## 1716                                                          go   9
## 1717                                                       order   9
## 1718                                                       taste   9
## 1719                                                cheesesteaks   9
## 1720                                                          go   9
## 1721                                                        like   9
## 1722                                                        rude   9
## 1723                                                      philly   9
## 1724                                                        just   9
## 1725                                                        spot   9
## 1726                                                      always   9
## 1727                                                        come   9
## 1728                                                          do   9
## 1729                                                        even   9
## 1730                                                        feel   9
## 1731                                                         fry   9
## 1732                                                        make   9
## 1733                                                     opinion   9
## 1734                                                        take   9
## 1735                                                      winner   9
## 1736                                                         eat   9
## 1737                                                        just   9
## 1738                                                      philly   9
## 1739                                                        wait   9
## 1740                                                       first   9
## 1741                                                         try   9
## 1742                                                       billy   9
## 1743                                                         day   9
## 1744                                                        stop   9
## 1745                                                         way   9
## 1746                                                     weekend   9
## 1747                                                   celebrity   9
## 1748                                                         hot   9
## 1749                                                         bad   9
## 1750                                                        seem   9
## 1751                                                        suck   9
## 1752                                                       visit   9
## 1753                                                        will   9
## 1754                                                     english   9
## 1755                                                       quick   9
## 1756                                                        whiz   9
## 1757                                                  ingredient   9
## 1758                                                       order   9
## 1759                                                          go   9
## 1760                                                     america   9
## 1761                                                        sign   9
## 1762                                                        deal   9
## 1763                                                        isnt   9
## 1764                                                      really   9
## 1765                                                      anyone   9
## 1766                                                       genos   9
## 1767                                                        away   9
## 1768                                                   francisco   9
## 1769                                                        half   9
## 1770                                                   provolone   9
## 1771                                                 cheesesteak   9
## 1772                                                         eat   9
## 1773                                                   something   9
## 1774                                                     tourist   9
## 1775                                                        want   9
## 1776                                                       youve   9
## 1777                                                         pat   9
## 1778                                                        good   9
## 1779                                                       genos   9
## 1780                                                    horrible   9
## 1781                                                       place   9
## 1782                                                       first   9
## 1783                                                      cheese   9
## 1784                                                        thin   9
## 1785                                                      amount   9
## 1786                                                        meat   9
## 1787                                                        like   9
## 1788                                                          st   9
## 1789                                                         say   9
## 1790                                                         cut   9
## 1791                                                       didnt   9
## 1792                                                        even   9
## 1793                                                      flavor   9
## 1794                                                   flavorful   9
## 1795                                                philadelphia   9
## 1796                                                      pretty   9
## 1797                                                         pat   9
## 1798                                                          go   9
## 1799                                                        just   9
## 1800                                                         pic   9
## 1801                                                      philly   9
## 1802                                                        meat   9
## 1803                                                         try   9
## 1804                                                      street   9
## 1805                                                         cut   9
## 1806                                                      philly   9
## 1807                                                         get   9
## 1808                                                          id   9
## 1809                                                        just   9
## 1810                                                        want   9
## 1811                                                        year   9
## 1812                                                       chewy   9
## 1813                                                          go   9
## 1814                                                         get   9
## 1815                                                       genos   9
## 1816                                                        town   9
## 1817                                                       genos   9
## 1818                                                      window   9
## 1819                                                        come   9
## 1820                                                       onion   9
## 1821                                                        chop   9
## 1822                                                        long   9
## 1823                                                  experience   9
## 1824                                                        come   9
## 1825                                                        good   9
## 1826                                                    probably   9
## 1827                                                        hand   9
## 1828                                                       genos   9
## 1829                                                      cheese   9
## 1830                                                       drive   9
## 1831                                                     tourist   9
## 1832                                                      street   8
## 1833                                                         way   8
## 1834                                                       taste   8
## 1835                                                         pat   8
## 1836                                                      please   8
## 1837                                                       onion   8
## 1838                                                         one   8
## 1839                                                       place   8
## 1840                                                     tourist   8
## 1841                                                      cheese   8
## 1842                                                         pat   8
## 1843                                                  experience   8
## 1844                                                        just   8
## 1845                                                       chewy   8
## 1846                                                        meat   8
## 1847                                                    sandwich   8
## 1848                                                       tough   8
## 1849                                                       bread   8
## 1850                                                        also   8
## 1851                                                         bad   8
## 1852                                                       bread   8
## 1853                                                        cold   8
## 1854                                                        back   8
## 1855                                                    actually   8
## 1856                                                        take   8
## 1857                                                        tell   8
## 1858                                                      really   8
## 1859                                                        good   8
## 1860                                                         can   8
## 1861                                                       didnt   8
## 1862                                                       first   8
## 1863                                                         top   8
## 1864                                                    american   8
## 1865                                                  definitely   8
## 1866                                                         eat   8
## 1867                                                        even   8
## 1868                                                        okay   8
## 1869                                                         say   8
## 1870                                                         try   8
## 1871                                                       youre   8
## 1872                                                        city   8
## 1873                                                        just   8
## 1874                                                        like   8
## 1875                                                         one   8
## 1876                                                       place   8
## 1877                                                       bread   8
## 1878                                                 cheesesteak   8
## 1879                                                      across   8
## 1880                                                       store   8
## 1881                                                          go   8
## 1882                                                         get   8
## 1883                                                      cheese   8
## 1884                                                        good   8
## 1885                                                       order   8
## 1886                                                      cheese   8
## 1887                                                         see   8
## 1888                                                        know   8
## 1889                                                        side   8
## 1890                                                          go   8
## 1891                                                         day   8
## 1892                                                  experience   8
## 1893                                                         fry   8
## 1894                                                        give   8
## 1895                                                         say   8
## 1896                                                         get   8
## 1897                                                         see   8
## 1898                                                         try   8
## 1899                                                        else   8
## 1900                                                  disappoint   8
## 1901                                                        pace   8
## 1902                                                          go   8
## 1903                                                         try   8
## 1904                                                 cheesesteak   8
## 1905                                                         one   8
## 1906                                                         pat   8
## 1907                                                          go   8
## 1908                                                       bread   8
## 1909                                                        meat   8
## 1910                                                        meat   8
## 1911                                                      pretty   8
## 1912                                                       taste   8
## 1913                                                        come   8
## 1914                                                        tell   8
## 1915                                                   delicious   8
## 1916                                                     freedom   8
## 1917                                                       genos   8
## 1918                                                         day   8
## 1919                                                  disappoint   8
## 1920                                                       every   8
## 1921                                                        isnt   8
## 1922                                                        less   8
## 1923                                                        love   8
## 1924                                                     overall   8
## 1925                                                      prefer   8
## 1926                                                        star   8
## 1927                                                         two   8
## 1928                                                        year   8
## 1929                                                        mine   8
## 1930                                                       whole   8
## 1931                                                         day   8
## 1932                                                          do   8
## 1933                                                      either   8
## 1934                                                        like   8
## 1935                                                   provolone   8
## 1936                                                     quickly   8
## 1937                                                        year   8
## 1938                                                        give   8
## 1939                                                        love   8
## 1940                                                       price   8
## 1941                                                      review   8
## 1942                                                         see   8
## 1943                                                       since   8
## 1944                                                        want   8
## 1945                                                        will   8
## 1946                                                       thing   8
## 1947                                                      behind   8
## 1948                                                       price   8
## 1949                                                         way   8
## 1950                                                         eat   8
## 1951                                                       place   8
## 1952                                                         try   8
## 1953                                                        roll   8
## 1954                                                         dog   8
## 1955                                                      enough   8
## 1956                                                        spot   8
## 1957                                                         day   8
## 1958                                                    probably   8
## 1959                                                   recommend   8
## 1960                                                       stick   8
## 1961                                                        take   8
## 1962                                                         new   8
## 1963                                                          go   8
## 1964                                                        good   8
## 1965                                                       bland   8
## 1966                                                      doesnt   8
## 1967                                                  experience   8
## 1968                                                    sandwich   8
## 1969                                                        come   8
## 1970                                                     exactly   8
## 1971                                                        just   8
## 1972                                                        know   8
## 1973                                                       think   8
## 1974                                                        year   8
## 1975                                                     english   8
## 1976                                                      philly   8
## 1977                                                       start   8
## 1978                                                        boil   8
## 1979                                                         get   8
## 1980                                                        much   8
## 1981                                                         old   8
## 1982                                                   provolone   8
## 1983                                                       youre   8
## 1984                                                       bland   8
## 1985                                                      cheese   8
## 1986                                                philadelphia   8
## 1987                                                         pat   8
## 1988                                                       clean   8
## 1989                                                      flavor   8
## 1990                                                       place   8
## 1991                                                       bread   8
## 1992                                                        love   8
## 1993                                                         pat   8
## 1994                                                        good   8
## 1995                                                      cheese   8
## 1996                                                    decision   8
## 1997                                                         get   8
## 1998                                                      barely   8
## 1999                                                         fry   8
## 2000                                                        kind   8
## 2001                                                         lot   8
## 2002                                                       thick   8
## 2003                                                   provolone   8
## 2004                                                         get   8
## 2005                                                        hype   8
## 2006                                                       visit   8
## 2007                                                      really   8
## 2008                                                        good   8
## 2009                                                          im   8
## 2010                                                        meat   8
## 2011                                                        just   8
## 2012                                                         one   8
## 2013                                                         wit   8
## 2014                                                 cheesesteak   8
## 2015                                                         pat   8
## 2016                                                       steak   8
## 2017                                                         top   8
## 2018                                                        come   8
## 2019                                                      pepper   8
## 2020                                                       ready   8
## 2021                                                      system   8
## 2022                                                       table   8
## 2023                                                  experience   8
## 2024                                                      philly   8
## 2025                                                        bite   8
## 2026                                                       close   8
## 2027                                                       didnt   8
## 2028                                                      either   8
## 2029                                                         lot   8
## 2030                                                         may   8
## 2031                                                      philly   8
## 2032                                                    slightly   8
## 2033                                                         use   8
## 2034                                                    customer   8
## 2035                                                      behind   8
## 2036                                                          do   8
## 2037                                                         say   8
## 2038                                                       speak   8
## 2039                                                 cheesesteak   8
## 2040                                                     opinion   8
## 2041                                                          go   8
## 2042                                                      always   8
## 2043                                                          im   8
## 2044                                                         pat   8
## 2045                                                       steak   8
## 2046                                                       place   8
## 2047                                                  definitely   8
## 2048                                                      famous   8
## 2049                                                        food   8
## 2050                                                        give   8
## 2051                                                        must   8
## 2052                                                        need   8
## 2053                                                        park   8
## 2054                                                       place   8
## 2055                                                       since   8
## 2056                                                        take   8
## 2057                                                       steak   8
## 2058                                                         bad   8
## 2059                                                        wont   8
## 2060                                                      cheese   8
## 2061                                                 cheesesteak   8
## 2062                                                       genos   8
## 2063                                                       steak   8
## 2064                                                     sticker   8
## 2065                                                       thing   8
## 2066                                                         get   8
## 2067                                                       tasty   8
## 2068                                                        trip   8
## 2069                                                         try   8
## 2070                                                     service   8
## 2071                                                          im   8
## 2072                                                         say   8
## 2073                                                       bland   8
## 2074                                                         can   8
## 2075                                                       great   8
## 2076                                                     however   8
## 2077                                                     instead   8
## 2078                                                         lot   8
## 2079                                                      philly   8
## 2080                                                         way   8
## 2081                                                        whiz   8
## 2082                                                        will   8
## 2083                                                       worth   8
## 2084                                                        good   8
## 2085                                                       onion   8
## 2086                                                         can   8
## 2087                                                       didnt   8
## 2088                                                      cheese   8
## 2089                                                     outdoor   8
## 2090                                                      people   8
## 2091                                                          tv   8
## 2092                                                        food   8
## 2093                                                    friendly   8
## 2094                                                       great   8
## 2095                                                     instead   8
## 2096                                                      ribeye   8
## 2097                                                       piece   8
## 2098                                                        rude   8
## 2099                                                        meat   8
## 2100                                                        good   8
## 2101                                                    american   8
## 2102                                                        cold   8
## 2103                                                  experience   8
## 2104                                                        must   8
## 2105                                                       right   8
## 2106                                                        spot   8
## 2107                                                       tasty   8
## 2108                                                        feel   8
## 2109                                                         get   8
## 2110                                                      corner   8
## 2111                                                         try   8
## 2112                                                       order   8
## 2113                                                        home   8
## 2114                                                         pat   8
## 2115                                                       photo   8
## 2116                                                        bite   8
## 2117                                                       steak   8
## 2118                                                      friend   8
## 2119                                                      people   8
## 2120                                                        good   8
## 2121                                                      always   8
## 2122                                                        much   8
## 2123                                                       genos   8
## 2124                                                         get   8
## 2125                                                      around   8
## 2126                                                         day   8
## 2127                                                         ill   8
## 2128                                                       worth   8
## 2129                                                        like   8
## 2130                                                      philly   8
## 2131                                                       genos   8
## 2132                                                      decide   8
## 2133                                                        find   8
## 2134                                                          go   8
## 2135                                                        just   8
## 2136                                                         see   8
## 2137                                                        tony   8
## 2138                                                        bite   8
## 2139                                                      famous   8
## 2140                                                    sandwich   8
## 2141                                                       steak   8
## 2142                                                        good   8
## 2143                                                     compare   8
## 2144                                                        like   8
## 2145                                                        take   8
## 2146                                                      people   8
## 2147                                                       bread   8
## 2148                                                         fry   8
## 2149                                                        make   8
## 2150                                                        life   8
## 2151                                                      always   8
## 2152                                                        back   8
## 2153                                                        give   8
## 2154                                                    sandwich   8
## 2155                                                        take   8
## 2156                                                       price   8
## 2157                                                       visit   8
## 2158                                                   recommend   8
## 2159                                                       think   8
## 2160                                                        area   8
## 2161                                                         get   8
## 2162                                                        find   7
## 2163                                                        food   7
## 2164                                                         get   7
## 2165                                                        like   7
## 2166                                                         get   7
## 2167                                                       steak   7
## 2168                                                    question   7
## 2169                                                        city   7
## 2170                                                       genos   7
## 2171                                                         day   7
## 2172                                                    sandwich   7
## 2173                                                         ive   7
## 2174                                                        meat   7
## 2175                                                      philly   7
## 2176                                                       taste   7
## 2177                                                      cheese   7
## 2178                                                       genos   7
## 2179                                                      pricey   7
## 2180                                                       steak   7
## 2181                                                        meat   7
## 2182                                                       great   7
## 2183                                                        seem   7
## 2184                                                        spin   7
## 2185                                                       steak   7
## 2186                                                       order   7
## 2187                                                         get   7
## 2188                                                       speak   7
## 2189                                                         atm   7
## 2190                                                       genos   7
## 2191                                                        yelp   7
## 2192                                                   provolone   7
## 2193                                                     without   7
## 2194                                                        also   7
## 2195                                                    anywhere   7
## 2196                                                     average   7
## 2197                                                       bland   7
## 2198                                                  disappoint   7
## 2199                                                   elsewhere   7
## 2200                                                      hoagie   7
## 2201                                                          im   7
## 2202                                                       local   7
## 2203                                                        look   7
## 2204                                                         now   7
## 2205                                                        spin   7
## 2206                                                        tour   7
## 2207                                                         war   7
## 2208                                                       arent   7
## 2209                                                        make   7
## 2210                                                         pat   7
## 2211                                                       place   7
## 2212                                                        like   7
## 2213                                                        good   7
## 2214                                                         see   7
## 2215                                                       place   7
## 2216                                                         bar   7
## 2217                                                       genos   7
## 2218                                                     believe   7
## 2219                                                        rude   7
## 2220                                                        half   7
## 2221                                                       night   7
## 2222                                                       visit   7
## 2223                                                         get   7
## 2224                                                        make   7
## 2225                                                cheesesteaks   7
## 2226                                                          go   7
## 2227                                                         use   7
## 2228                                                       worry   7
## 2229                                                      cheese   7
## 2230                                                      people   7
## 2231                                                        side   7
## 2232                                                        hour   7
## 2233                                                       bland   7
## 2234                                                       chewy   7
## 2235                                                      flavor   7
## 2236                                                  flavorless   7
## 2237                                                       onion   7
## 2238                                                    sandwich   7
## 2239                                                cheesesteaks   7
## 2240                                                        real   7
## 2241                                                       whole   7
## 2242                                                         eat   7
## 2243                                                    language   7
## 2244                                                        life   7
## 2245                                                       since   7
## 2246                                                        know   7
## 2247                                                         way   7
## 2248                                                        know   7
## 2249                                                         pat   7
## 2250                                                      cheese   7
## 2251                                                      cheese   7
## 2252                                                        meat   7
## 2253                                                        ever   7
## 2254                                                       genos   7
## 2255                                                          im   7
## 2256                                                      minute   7
## 2257                                                        star   7
## 2258                                                       light   7
## 2259                                                       place   7
## 2260                                                      really   7
## 2261                                                    terrible   7
## 2262                                                        long   7
## 2263                                                      speech   7
## 2264                                                       onion   7
## 2265                                                         say   7
## 2266                                                         try   7
## 2267                                                     another   7
## 2268                                                       fresh   7
## 2269                                                         big   7
## 2270                                                      decide   7
## 2271                                                        hand   7
## 2272                                                     instead   7
## 2273                                                        know   7
## 2274                                                         put   7
## 2275                                                       stand   7
## 2276                                                       youre   7
## 2277                                                          go   7
## 2278                                                        meat   7
## 2279                                                    mushroom   7
## 2280                                                       soggy   7
## 2281                                                         wit   7
## 2282                                                         pat   7
## 2283                                                    attitude   7
## 2284                                                      little   7
## 2285                                                       order   7
## 2286                                                       ahead   7
## 2287                                                        find   7
## 2288                                                       johns   7
## 2289                                                       local   7
## 2290                                                        long   7
## 2291                                                        bite   7
## 2292                                                        cant   7
## 2293                                                         day   7
## 2294                                                      either   7
## 2295                                                      expect   7
## 2296                                                         job   7
## 2297                                                       light   7
## 2298                                                     portion   7
## 2299                                                      prefer   7
## 2300                                                      pretty   7
## 2301                                                      season   7
## 2302                                                        tony   7
## 2303                                                        town   7
## 2304                                                 cheesesteak   7
## 2305                                                        meat   7
## 2306                                                      debate   7
## 2307                                                     service   7
## 2308                                                    sandwich   7
## 2309                                                        head   7
## 2310                                                         pat   7
## 2311                                                      school   7
## 2312                                                         pat   7
## 2313                                                        good   7
## 2314                                                         get   7
## 2315                                                        good   7
## 2316                                                         get   7
## 2317                                                         get   7
## 2318                                                         ive   7
## 2319                                                         pat   7
## 2320                                                      philly   7
## 2321                                                       never   7
## 2322                                                        area   7
## 2323                                                         big   7
## 2324                                                         pat   7
## 2325                                                      cheese   7
## 2326                                                        food   7
## 2327                                                         add   7
## 2328                                                        bite   7
## 2329                                                 cheesesteak   7
## 2330                                                       great   7
## 2331                                                        know   7
## 2332                                                         way   7
## 2333                                                      cheese   7
## 2334                                                 cheesesteak   7
## 2335                                                cheesesteaks   7
## 2336                                                      philly   7
## 2337                                                       steak   7
## 2338                                                       speak   7
## 2339                                                        feel   7
## 2340                                                       genos   7
## 2341                                                         can   7
## 2342                                                         one   7
## 2343                                                        know   7
## 2344                                                          do   7
## 2345                                                         fry   7
## 2346                                                         ive   7
## 2347                                                        make   7
## 2348                                                        many   7
## 2349                                                      plague   7
## 2350                                                   something   7
## 2351                                                       taste   7
## 2352                                                         try   7
## 2353                                                        vega   7
## 2354                                                        whiz   7
## 2355                                                        just   7
## 2356                                                        much   7
## 2357                                                         one   7
## 2358                                                      people   7
## 2359                                                       place   7
## 2360                                                       worth   7
## 2361                                                       chewy   7
## 2362                                                      pricey   7
## 2363                                                     tourist   7
## 2364                                                      across   7
## 2365                                                         get   7
## 2366                                                      philly   7
## 2367                                                       grade   7
## 2368                                                        cold   7
## 2369                                                        come   7
## 2370                                                         get   7
## 2371                                                          go   7
## 2372                                                        like   7
## 2373                                                         one   7
## 2374                                                     portion   7
## 2375                                                       bread   7
## 2376                                                         pop   7
## 2377                                                       water   7
## 2378                                                       along   7
## 2379                                                      philly   7
## 2380                                                        like   7
## 2381                                                       money   7
## 2382                                                         pat   7
## 2383                                                   provolone   7
## 2384                                                         pat   7
## 2385                                                         one   7
## 2386                                                        ever   7
## 2387                                                     service   7
## 2388                                                       genos   7
## 2389                                                 spectacular   7
## 2390                                                         ive   7
## 2391                                                        sign   7
## 2392                                                          go   7
## 2393                                                       steak   7
## 2394                                                cheesesteaks   7
## 2395                                                       first   7
## 2396                                                      friend   7
## 2397                                                         guy   7
## 2398                                                        last   7
## 2399                                                        like   7
## 2400                                                       night   7
## 2401                                                      person   7
## 2402                                                      philly   7
## 2403                                                        spot   7
## 2404                                                         way   7
## 2405                                                     without   7
## 2406                                                         wiz   7
## 2407                                                    american   7
## 2408                                                         get   7
## 2409                                                      really   7
## 2410                                                       tasty   7
## 2411                                                       thats   7
## 2412                                                         way   7
## 2413                                                     counter   7
## 2414                                                       drink   7
## 2415                                                      please   7
## 2416                                                        side   7
## 2417                                                         lot   7
## 2418                                                         day   7
## 2419                                                      flavor   7
## 2420                                                        hand   7
## 2421                                                        isnt   7
## 2422                                                       juicy   7
## 2423                                                        less   7
## 2424                                                        long   7
## 2425                                                         now   7
## 2426                                                       onion   7
## 2427                                                      prefer   7
## 2428                                                     service   7
## 2429                                                       thats   7
## 2430                                                      theyre   7
## 2431                                                        time   7
## 2432                                                        whiz   7
## 2433                                                         yes   7
## 2434                                                    sandwich   7
## 2435                                                        know   7
## 2436                                                         may   7
## 2437                                                        rude   7
## 2438                                                        tell   7
## 2439                                                   condiment   7
## 2440                                                       think   7
## 2441                                                       genos   7
## 2442                                                      decide   7
## 2443                                                      famous   7
## 2444                                                         far   7
## 2445                                                      people   7
## 2446                                                         say   7
## 2447                                                         one   7
## 2448                                                      famous   7
## 2449                                                    actually   7
## 2450                                                        even   7
## 2451                                                       first   7
## 2452                                                      friend   7
## 2453                                                    overrate   7
## 2454                                                       serve   7
## 2455                                                       start   7
## 2456                                                       still   7
## 2457                                                       super   7
## 2458                                                        want   7
## 2459                                                       wasnt   7
## 2460                                                         way   7
## 2461                                                       place   7
## 2462                                                       patch   7
## 2463                                                        view   7
## 2464                                                  disappoint   7
## 2465                                                     quickly   7
## 2466                                                         bad   7
## 2467                                                        good   7
## 2468                                                       wasnt   7
## 2469                                                     ketchup   7
## 2470                                                       bread   7
## 2471                                                     frankly   7
## 2472                                                         get   7
## 2473                                                         bad   7
## 2474                                                 cheesesteak   7
## 2475                                                       genos   7
## 2476                                                          go   7
## 2477                                                        wing   7
## 2478                                                        rude   7
## 2479                                                         bad   7
## 2480                                                  definitely   7
## 2481                                                        even   7
## 2482                                                      flavor   7
## 2483                                                        give   7
## 2484                                                        lack   7
## 2485                                                       night   7
## 2486                                                         hot   7
## 2487                                                      cheese   7
## 2488                                                         get   7
## 2489                                                     outside   7
## 2490                                                        good   7
## 2491                                                     liberty   7
## 2492                                                        many   7
## 2493                                                      philly   7
## 2494                                                        much   7
## 2495                                                        rude   7
## 2496                                                        suck   7
## 2497                                                        time   7
## 2498                                                         pat   7
## 2499                                                      around   7
## 2500                                                       order   7
## 2501                                                        read   7
## 2502                                                       state   7
## 2503                                                         ive   7
## 2504                                                       thick   7
## 2505                                                        roll   7
## 2506                                                       bread   7
## 2507                                                        time   7
## 2508                                                 cheesesteak   7
## 2509                                                    sandwich   7
## 2510                                                       genos   7
## 2511                                                         eat   7
## 2512                                                       genos   7
## 2513                                                         bad   7
## 2514                                                   challenge   7
## 2515                                                 cheesesteak   7
## 2516                                                        cook   7
## 2517                                                       ginos   7
## 2518                                                       juicy   7
## 2519                                                    mushroom   7
## 2520                                                         now   7
## 2521                                                        seem   7
## 2522                                                       thick   7
## 2523                                                        tony   7
## 2524                                                     tourist   7
## 2525                                                        will   7
## 2526                                                         pat   7
## 2527                                                         try   7
## 2528                                                         eat   7
## 2529                                                      vendor   7
## 2530                                                        meat   7
## 2531                                                    friendly   7
## 2532                                                      police   7
## 2533                                                        away   7
## 2534                                                        long   7
## 2535                                                        look   7
## 2536                                                      minute   7
## 2537                                                         two   7
## 2538                                                       bread   7
## 2539                                                        food   7
## 2540                                                       mouth   7
## 2541                                                        much   7
## 2542                                                        okay   7
## 2543                                                        meat   7
## 2544                                                 cheesesteak   7
## 2545                                                         pat   7
## 2546                                                       genos   7
## 2547                                                         pat   7
## 2548                                                        meat   7
## 2549                                                       right   7
## 2550                                                      cheese   7
## 2551                                                      really   7
## 2552                                                       bread   7
## 2553                                                         may   7
## 2554                                                        okay   7
## 2555                                                      people   7
## 2556                                                        will   7
## 2557                                                       worth   7
## 2558                                                         ago   7
## 2559                                                       place   7
## 2560                                                      square   7
## 2561                                                     tourist   7
## 2562                                                       bread   7
## 2563                                                          do   7
## 2564                                                       local   7
## 2565                                                       place   7
## 2566                                                   different   7
## 2567                                                        less   7
## 2568                                                       local   7
## 2569                                                    original   7
## 2570                                                        hour   7
## 2571                                                        line   7
## 2572                                                       state   7
## 2573                                                        want   7
## 2574                                                       youre   7
## 2575                                                          go   7
## 2576                                                       onion   7
## 2577                                                       order   7
## 2578                                                       great   7
## 2579                                                          dc   7
## 2580                                                        melt   7
## 2581                                                       worth   7
## 2582                                                         get   7
## 2583                                                        meat   7
## 2584                                                  overpriced   7
## 2585                                                         ago   7
## 2586                                                       coast   7
## 2587                                                        also   7
## 2588                                                          do   7
## 2589                                                       grill   7
## 2590                                                      philly   7
## 2591                                                   provolone   7
## 2592                                                       taste   7
## 2593                                                         get   7
## 2594                                                      minute   7
## 2595                                                         one   7
## 2596                                                       steak   7
## 2597                                                       taste   7
## 2598                                                        good   7
## 2599                                                        meat   7
## 2600                                                       since   7
## 2601                                                       genos   7
## 2602                                                          im   7
## 2603                                                        know   7
## 2604                                                       gonna   7
## 2605                                                       visit   7
## 2606                                                         get   6
## 2607                                                        love   6
## 2608                                                         pat   6
## 2609                                                 cheesesteak   6
## 2610                                                        make   6
## 2611                                                      flavor   6
## 2612                                                         hot   6
## 2613                                                       onion   6
## 2614                                                       genos   6
## 2615                                                        cook   6
## 2616                                                      cheese   6
## 2617                                                        give   6
## 2618                                                        make   6
## 2619                                                        take   6
## 2620                                                        good   6
## 2621                                                        seem   6
## 2622                                                          go   6
## 2623                                                        park   6
## 2624                                                        good   6
## 2625                                                        clog   6
## 2626                                                philadelphia   6
## 2627                                                       place   6
## 2628                                                     tourist   6
## 2629                                                          go   6
## 2630                                                         try   6
## 2631                                                       bread   6
## 2632                                                         day   6
## 2633                                                         one   6
## 2634                                                       genos   6
## 2635                                                    sandwich   6
## 2636                                                  difference   6
## 2637                                                        sign   6
## 2638                                                       bread   6
## 2639                                                      flavor   6
## 2640                                                        much   6
## 2641                                                         one   6
## 2642                                                       think   6
## 2643                                                       throw   6
## 2644                                                        blah   6
## 2645                                                       water   6
## 2646                                                      decent   6
## 2647                                                      flavor   6
## 2648                                                        nice   6
## 2649                                                       ratio   6
## 2650                                                    slightly   6
## 2651                                                       tasty   6
## 2652                                                        side   6
## 2653                                                      friend   6
## 2654                                                        mawr   6
## 2655                                                     sticker   6
## 2656                                                 cheesesteak   6
## 2657                                                      cheese   6
## 2658                                                 cheesesteak   6
## 2659                                                        come   6
## 2660                                                     compare   6
## 2661                                                        good   6
## 2662                                                        give   6
## 2663                                                        miss   6
## 2664                                                       order   6
## 2665                                                     picture   6
## 2666                                                        city   6
## 2667                                                      review   6
## 2668                                                      bottom   6
## 2669                                                         pat   6
## 2670                                                       place   6
## 2671                                                        roll   6
## 2672                                                         bad   6
## 2673                                                      course   6
## 2674                                                         fix   6
## 2675                                                      little   6
## 2676                                                     opinion   6
## 2677                                                      option   6
## 2678                                                        want   6
## 2679                                                       worth   6
## 2680                                                         can   6
## 2681                                                   elsewhere   6
## 2682                                                        okay   6
## 2683                                                       order   6
## 2684                                                      cheese   6
## 2685                                                       steak   6
## 2686                                                       onion   6
## 2687                                                       block   6
## 2688                                                        good   6
## 2689                                                       place   6
## 2690                                                        good   6
## 2691                                                        meat   6
## 2692                                                       steak   6
## 2693                                                         can   6
## 2694                                                         get   6
## 2695                                                        mind   6
## 2696                                                     prepare   6
## 2697                                                       quick   6
## 2698                                                         one   6
## 2699                                                      enough   6
## 2700                                                        long   6
## 2701                                                       steak   6
## 2702                                                      decide   6
## 2703                                                       genos   6
## 2704                                                     weekend   6
## 2705                                                    sandwich   6
## 2706                                                 cheesesteak   6
## 2707                                                       genos   6
## 2708                                                        want   6
## 2709                                                        come   6
## 2710                                                        like   6
## 2711                                                 cheesesteak   6
## 2712                                                        help   6
## 2713                                                         see   6
## 2714                                                        wait   6
## 2715                                                        coke   6
## 2716                                                         pat   6
## 2717                                                  experience   6
## 2718                                                       genos   6
## 2719                                                         pat   6
## 2720                                                    sandwich   6
## 2721                                                      accept   6
## 2722                                                        fool   6
## 2723                                                       order   6
## 2724                                                    remember   6
## 2725                                                         nyc   6
## 2726                                                         pat   6
## 2727                                                       tough   6
## 2728                                                         car   6
## 2729                                                         lot   6
## 2730                                                       genos   6
## 2731                                                          go   6
## 2732                                                     america   6
## 2733                                                          do   6
## 2734                                                        good   6
## 2735                                                        just   6
## 2736                                                     speaker   6
## 2737                                                        want   6
## 2738                                                       place   6
## 2739                                                    sandwich   6
## 2740                                                        make   6
## 2741                                                       steak   6
## 2742                                                        whiz   6
## 2743                                                    sandwich   6
## 2744                                                        just   6
## 2745                                                         try   6
## 2746                                                        warm   6
## 2747                                                 cheesesteak   6
## 2748                                                        life   6
## 2749                                                       since   6
## 2750                                                 cheesesteak   6
## 2751                                                         day   6
## 2752                                                        good   6
## 2753                                                      famous   6
## 2754                                                        food   6
## 2755                                                      cheese   6
## 2756                                                       visit   6
## 2757                                                       steak   6
## 2758                                                    friendly   6
## 2759                                                       steak   6
## 2760                                                        food   6
## 2761                                                       genos   6
## 2762                                                       sorry   6
## 2763                                                   something   6
## 2764                                                       steak   6
## 2765                                                        line   6
## 2766                                                        also   6
## 2767                                                        come   6
## 2768                                                          do   6
## 2769                                                        even   6
## 2770                                                       steak   6
## 2771                                                        whiz   6
## 2772                                                       taste   6
## 2773                                                         bad   6
## 2774                                                         can   6
## 2775                                                        cart   6
## 2776                                                     channel   6
## 2777                                                        fast   6
## 2778                                                       joint   6
## 2779                                                    mediocre   6
## 2780                                                       quick   6
## 2781                                                        spot   6
## 2782                                                       steak   6
## 2783                                                    steakums   6
## 2784                                                       bread   6
## 2785                                                    sandwich   6
## 2786                                                        soft   6
## 2787                                                        town   6
## 2788                                                       staff   6
## 2789                                                         one   6
## 2790                                                       steak   6
## 2791                                                      flavor   6
## 2792                                                     another   6
## 2793                                                        base   6
## 2794                                                   challenge   6
## 2795                                                         cut   6
## 2796                                                         fan   6
## 2797                                                     however   6
## 2798                                                         ive   6
## 2799                                                        keep   6
## 2800                                                        last   6
## 2801                                                        lose   6
## 2802                                                        many   6
## 2803                                                        next   6
## 2804                                                          oh   6
## 2805                                                    original   6
## 2806                                                        rank   6
## 2807                                                       super   6
## 2808                                                      theyre   6
## 2809                                                        want   6
## 2810                                                         way   6
## 2811                                                    attitude   6
## 2812                                                         eat   6
## 2813                                                      excite   6
## 2814                                                      little   6
## 2815                                                      pepper   6
## 2816                                                       ready   6
## 2817                                                       right   6
## 2818                                                        star   6
## 2819                                                         way   6
## 2820                                                        five   6
## 2821                                                        meat   6
## 2822                                                    sandwich   6
## 2823                                                       shoot   6
## 2824                                                       three   6
## 2825                                                    anywhere   6
## 2826                                                        food   6
## 2827                                                       ginos   6
## 2828                                                       great   6
## 2829                                                          im   6
## 2830                                                        line   6
## 2831                                                       steak   6
## 2832                                                       think   6
## 2833                                                         two   6
## 2834                                                       visit   6
## 2835                                                        want   6
## 2836                                                 alternative   6
## 2837                                                      amount   6
## 2838                                                        city   6
## 2839                                                     compare   6
## 2840                                                        cook   6
## 2841                                                          id   6
## 2842                                                         let   6
## 2843                                                        make   6
## 2844                                                         may   6
## 2845                                                       never   6
## 2846                                                      people   6
## 2847                                                philadelphia   6
## 2848                                                        plus   6
## 2849                                                         sub   6
## 2850                                                         yes   6
## 2851                                                          go   6
## 2852                                                       steak   6
## 2853                                                      people   6
## 2854                                                        good   6
## 2855                                                     counter   6
## 2856                                                        work   6
## 2857                                                        good   6
## 2858                                                       genos   6
## 2859                                                      philly   6
## 2860                                                    overrate   6
## 2861                                                        wall   6
## 2862                                                        cant   6
## 2863                                                         say   6
## 2864                                                        late   6
## 2865                                              disappointment   6
## 2866                                                        come   6
## 2867                                                  definitely   6
## 2868                                                  california   6
## 2869                                                 cheesesteak   6
## 2870                                                         mad   6
## 2871                                                       never   6
## 2872                                                    anything   6
## 2873                                                         bad   6
## 2874                                                   immigrant   6
## 2875                                                        come   6
## 2876                                                        make   6
## 2877                                                        meat   6
## 2878                                                   flavorful   6
## 2879                                                        fine   6
## 2880                                                        much   6
## 2881                                                        rude   6
## 2882                                                       throw   6
## 2883                                                        come   6
## 2884                                                       bland   6
## 2885                                                        like   6
## 2886                                                       place   6
## 2887                                                    anything   6
## 2888                                                      cheese   6
## 2889                                                         lot   6
## 2890                                                         one   6
## 2891                                                      theyre   6
## 2892                                                       youre   6
## 2893                                                      cheese   6
## 2894                                                    register   6
## 2895                                                       piece   6
## 2896                                                       slice   6
## 2897                                                         see   6
## 2898                                                          us   6
## 2899                                                      tomato   6
## 2900                                                      cheese   6
## 2901                                                       night   6
## 2902                                                       steak   6
## 2903                                                         big   6
## 2904                                                        fact   6
## 2905                                                      flavor   6
## 2906                                                        give   6
## 2907                                                        know   6
## 2908                                                         las   6
## 2909                                                       local   6
## 2910                                                       order   6
## 2911                                                      really   6
## 2912                                                       slice   6
## 2913                                                          us   6
## 2914                                                         way   6
## 2915                                                         wiz   6
## 2916                                                          do   6
## 2917                                                        good   6
## 2918                                                        less   6
## 2919                                                     outside   6
## 2920                                                      really   6
## 2921                                                    sandwich   6
## 2922                                                       steak   6
## 2923                                                      street   6
## 2924                                                      across   6
## 2925                                                        hard   6
## 2926                                                        long   6
## 2927                                                       steak   6
## 2928                                                       thick   6
## 2929                                                 expectation   6
## 2930                                                       steak   6
## 2931                                                        menu   6
## 2932                                                       onion   6
## 2933                                                 cheesesteak   6
## 2934                                                        food   6
## 2935                                                    sandwich   6
## 2936                                                       money   6
## 2937                                                        much   6
## 2938                                                       great   6
## 2939                                                       genos   6
## 2940                                                        good   6
## 2941                                                         big   6
## 2942                                                         bun   6
## 2943                                                  definitely   6
## 2944                                                      enough   6
## 2945                                                   flavorful   6
## 2946                                                       grill   6
## 2947                                                       place   6
## 2948                                                      rather   6
## 2949                                                       tasty   6
## 2950                                                       whole   6
## 2951                                                       order   6
## 2952                                                      review   6
## 2953                                                       genos   6
## 2954                                                       ready   6
## 2955                                                        time   6
## 2956                                                         ago   6
## 2957                                                      pretty   6
## 2958                                                      really   6
## 2959                                                   different   6
## 2960                                                       genos   6
## 2961                                                        long   6
## 2962                                                    abujamal   6
## 2963                                                      cheese   6
## 2964                                                       steak   6
## 2965                                                       order   6
## 2966                                                      relish   6
## 2967                                                      cheese   6
## 2968                                                         get   6
## 2969                                                         pat   6
## 2970                                                       place   6
## 2971                                                  disappoint   6
## 2972                                                       genos   6
## 2973                                                       taste   6
## 2974                                                       visit   6
## 2975                                                        good   6
## 2976                                                        rave   6
## 2977                                                       write   6
## 2978                                                       wrong   6
## 2979                                                        sign   6
## 2980                                                          go   6
## 2981                                                    language   6
## 2982                                                        just   6
## 2983                                                        know   6
## 2984                                                        lady   6
## 2985                                                         man   6
## 2986                                                    american   6
## 2987                                                         can   6
## 2988                                                          do   6
## 2989                                                         fry   6
## 2990                                                       grill   6
## 2991                                                        like   6
## 2992                                                      little   6
## 2993                                                       onion   6
## 2994                                                       place   6
## 2995                                                          hr   6
## 2996                                                       color   6
## 2997                                                     another   6
## 2998                                                        cash   6
## 2999                                                        give   6
## 3000                                                        mine   6
## 3001                                                       onion   6
## 3002                                                       order   6
## 3003                                                     spanish   6
## 3004                                                       thing   6
## 3005                                                  experience   6
## 3006                                                       genos   6
## 3007                                                       taste   6
## 3008                                                       genos   6
## 3009                                                        joey   6
## 3010                                                      street   6
## 3011                                                 cheesesteak   6
## 3012                                                       genos   6
## 3013                                                        year   6
## 3014                                                      almost   6
## 3015                                                        find   6
## 3016                                                         guy   6
## 3017                                                         ill   6
## 3018                                                       place   6
## 3019                                                       split   6
## 3020                                                        star   6
## 3021                                                    superior   6
## 3022                                                        want   6
## 3023                                                       wasnt   6
## 3024                                                        year   6
## 3025                                                         yet   6
## 3026                                                       youre   6
## 3027                                                        cash   6
## 3028                                                 cheesesteak   6
## 3029                                                       genos   6
## 3030                                                        take   6
## 3031                                                         pat   6
## 3032                                                       steak   6
## 3033                                                        game   6
## 3034                                                         can   6
## 3035                                                   cheesteak   6
## 3036                                                        hear   6
## 3037                                                          id   6
## 3038                                                        look   6
## 3039                                                        make   6
## 3040                                                         may   6
## 3041                                                       night   6
## 3042                                                         see   6
## 3043                                                      staple   6
## 3044                                                     tourist   6
## 3045                                                        trip   6
## 3046                                                       visit   6
## 3047                                                        good   6
## 3048                                                        shop   6
## 3049                                                        know   6
## 3050                                                        live   6
## 3051                                                        pack   6
## 3052                                                      racist   6
## 3053                                                        rate   6
## 3054                                                         see   6
## 3055                                                       thats   6
## 3056                                                       youre   6
## 3057                                                        zero   6
## 3058                                                      simple   6
## 3059                                                         one   6
## 3060                                                        sign   6
## 3061                                                 deportation   6
## 3062                                                       bland   6
## 3063                                                        cool   6
## 3064                                                        damn   6
## 3065                                                        long   6
## 3066                                                        just   6
## 3067                                                    sandwich   6
## 3068                                                     without   6
## 3069                                                        good   6
## 3070                                                     product   6
## 3071                                                    sandwich   6
## 3072                                                        good   6
## 3073                                                  propaganda   6
## 3074                                                          go   6
## 3075                                                       order   6
## 3076                                                        cant   6
## 3077                                                      expect   6
## 3078                                                       great   6
## 3079                                                        love   6
## 3080                                                        need   6
## 3081                                                     nothing   6
## 3082                                                       stand   6
## 3083                                                       taste   6
## 3084                                                         pat   6
## 3085                                                       bring   6
## 3086                                                        make   6
## 3087                                                         eye   6
## 3088                                                       steak   6
## 3089                                                       genos   6
## 3090                                                      cheese   6
## 3091                                                       genos   6
## 3092                                                      cheese   6
## 3093                                                        back   6
## 3094                                                        cold   6
## 3095                                                        ever   6
## 3096                                                        hand   6
## 3097                                                         two   6
## 3098                                                   afternoon   6
## 3099                                                       grace   6
## 3100                                                        give   6
## 3101                                                        make   6
## 3102                                                      people   6
## 3103                                                       thank   6
## 3104                                                       think   6
## 3105                                                        will   6
## 3106                                                       youre   6
## 3107                                                        good   6
## 3108                                                   available   6
## 3109                                                        fuss   6
## 3110                                                         one   6
## 3111                                                        bite   6
## 3112                                                         hot   6
## 3113                                                         pat   6
## 3114                                                       super   6
## 3115                                                    terrible   6
## 3116                                                      cheese   6
## 3117                                                  comparison   6
## 3118                                                       drink   6
## 3119                                                       front   6
## 3120                                                        like   6
## 3121                                                        make   6
## 3122                                                        post   6
## 3123                                                       right   6
## 3124                                                         eat   6
## 3125                                                         kid   6
## 3126                                                         one   6
## 3127                                                       table   6
## 3128                                                        meat   6
## 3129                                                        like   6
## 3130                                                         fry   6
## 3131                                                      inside   6
## 3132                                                        else   6
## 3133                                                        nazi   6
## 3134                                                        much   6
## 3135                                                        city   6
## 3136                                                        give   6
## 3137                                                        just   6
## 3138                                                     service   6
## 3139                                                    business   6
## 3140                                                    actually   6
## 3141                                                        city   6
## 3142                                                  definitely   6
## 3143                                                     instead   6
## 3144                                                        isnt   6
## 3145                                                        lack   6
## 3146                                                       local   6
## 3147                                                        love   6
## 3148                                                    mediocre   6
## 3149                                                       steak   6
## 3150                                                        take   6
## 3151                                                     without   6
## 3152                                                         yes   6
## 3153                                                      pretty   6
## 3154                                                       worth   6
## 3155                                                 cheesesteak   6
## 3156                                                     compare   6
## 3157                                                        next   6
## 3158                                                        good   6
## 3159                                                        come   6
## 3160                                                       place   6
## 3161                                                        stop   6
## 3162                                                        find   6
## 3163                                                     outside   6
## 3164                                                    business   6
## 3165                                                         cab   6
## 3166                                                        care   6
## 3167                                                      family   6
## 3168                                                      friend   6
## 3169                                                        good   6
## 3170                                                    sandwich   6
## 3171                                                        trip   6
## 3172                                                          us   6
## 3173                                                       water   6
## 3174                                                   delicious   6
## 3175                                                       genos   6
## 3176                                                         pat   6
## 3177                                                     quality   6
## 3178                                                       wasnt   6
## 3179                                                    sandwich   6
## 3180                                                        just   6
## 3181                                                    passyunk   6
## 3182                                                         say   6
## 3183                                                        meat   6
## 3184                                                         can   6
## 3185                                                        good   6
## 3186                                                         try   6
## 3187                                                 cheesesteak   6
## 3188                                                         ive   6
## 3189                                                        make   6
## 3190                                                      really   6
## 3191                                                       steak   6
## 3192                                                       thats   6
## 3193                                                       enjoy   6
## 3194                                                       genos   6
## 3195                                                         get   6
## 3196                                                        ever   6
## 3197                                                        line   6
## 3198                                                        luke   6
## 3199                                                 cheesesteak   6
## 3200                                                        just   6
## 3201                                                      philly   6
## 3202                                                         try   6
## 3203                                                        want   6
## 3204                                                 competition   6
## 3205                                                        make   6
## 3206                                                   somewhere   6
## 3207                                                        good   6
## 3208                                                         pat   6
## 3209                                                          us   6
## 3210                                                      philly   6
## 3211                                                         pat   6
## 3212                                                        like   6
## 3213                                                      friend   6
## 3214                                                         min   6
## 3215                                                        give   6
## 3216                                                       leave   6
## 3217                                                    sandwich   6
## 3218                                                   something   6
## 3219                                                    friendly   6
## 3220                                                          go   6
## 3221                                                        make   6
## 3222                                                      philly   6
## 3223                                                        cook   6
## 3224                                                        like   6
## 3225                                                         pat   6
## 3226                                                         lot   6
## 3227                                                    continue   6
## 3228                                                  disappoint   6
## 3229                                                         eat   6
## 3230                                                        just   6
## 3231                                                         see   6
## 3232                                                        take   6
## 3233                                                         pat   6
## 3234                                                        know   6
## 3235                                                         get   6
## 3236                                                          go   6
## 3237                                                 cheesesteak   6
## 3238                                                   provolone   6
## 3239                                                        hour   6
## 3240                                                        even   6
## 3241                                                       order   6
## 3242                                                        back   6
## 3243                                                         now   6
## 3244                                                        town   6
## 3245                                                        stop   5
## 3246                                                       genos   5
## 3247                                                         eat   5
## 3248                                                      prefer   5
## 3249                                                      pretty   5
## 3250                                                       quite   5
## 3251                                                   condiment   5
## 3252                                                        meat   5
## 3253                                                    sandwich   5
## 3254                                                        time   5
## 3255                                                      always   5
## 3256                                                        want   5
## 3257                                                        line   5
## 3258                                                        cash   5
## 3259                                                        feel   5
## 3260                                                          go   5
## 3261                                                       great   5
## 3262                                                      little   5
## 3263                                                         see   5
## 3264                                                       taste   5
## 3265                                                        good   5
## 3266                                                         may   5
## 3267                                                        hear   5
## 3268                                                        long   5
## 3269                                                        look   5
## 3270                                                        love   5
## 3271                                                        roll   5
## 3272                                                     country   5
## 3273                                                        line   5
## 3274                                                      philly   5
## 3275                                                         try   5
## 3276                                                         can   5
## 3277                                                       think   5
## 3278                                                        like   5
## 3279                                                        soon   5
## 3280                                                          go   5
## 3281                                                       great   5
## 3282                                                        area   5
## 3283                                                       genos   5
## 3284                                                      museum   5
## 3285                                                        cost   5
## 3286                                                        next   5
## 3287                                                         nyc   5
## 3288                                                         one   5
## 3289                                                       place   5
## 3290                                                        will   5
## 3291                                                         bad   5
## 3292                                                       genos   5
## 3293                                                         get   5
## 3294                                                     nothing   5
## 3295                                                      cheese   5
## 3296                                                       jerky   5
## 3297                                                       glass   5
## 3298                                                       chunk   5
## 3299                                                     mistake   5
## 3300                                                       bland   5
## 3301                                                      cheese   5
## 3302                                                      greasy   5
## 3303                                                      little   5
## 3304                                                         pat   5
## 3305                                                       salty   5
## 3306                                                 cheesesteak   5
## 3307                                                        side   5
## 3308                                                          go   5
## 3309                                                      decide   5
## 3310                                                         get   5
## 3311                                                       order   5
## 3312                                                     awesome   5
## 3313                                                   delicious   5
## 3314                                                      pretty   5
## 3315                                                        roll   5
## 3316                                                    sandwich   5
## 3317                                                       think   5
## 3318                                                       toast   5
## 3319                                                        warm   5
## 3320                                                       light   5
## 3321                                                        king   5
## 3322                                                       model   5
## 3323                                                        hype   5
## 3324                                                         two   5
## 3325                                                        food   5
## 3326                                                     freedom   5
## 3327                                                       genos   5
## 3328                                                        good   5
## 3329                                                         add   5
## 3330                                                         eat   5
## 3331                                                        give   5
## 3332                                                      really   5
## 3333                                                         use   5
## 3334                                                       order   5
## 3335                                                       onion   5
## 3336                                                        come   5
## 3337                                                          go   5
## 3338                                                    register   5
## 3339                                                        food   5
## 3340                                                         pat   5
## 3341                                                          do   5
## 3342                                                        even   5
## 3343                                                        make   5
## 3344                                                        nice   5
## 3345                                                        okay   5
## 3346                                                        ooze   5
## 3347                                                      pepper   5
## 3348                                                         sub   5
## 3349                                                        want   5
## 3350                                                         wit   5
## 3351                                                      around   5
## 3352                                                 cheesesteak   5
## 3353                                                      debate   5
## 3354                                                         end   5
## 3355                                                        find   5
## 3356                                                        head   5
## 3357                                                        line   5
## 3358                                                    mushroom   5
## 3359                                                     nothing   5
## 3360                                                       right   5
## 3361                                                         sub   5
## 3362                                                        take   5
## 3363                                               unfortunately   5
## 3364                                                       visit   5
## 3365                                                           w   5
## 3366                                                       world   5
## 3367                                                        year   5
## 3368                                                       youll   5
## 3369                                                     average   5
## 3370                                                      cheese   5
## 3371                                                      jersey   5
## 3372                                                        know   5
## 3373                                                        long   5
## 3374                                                         try   5
## 3375                                                         one   5
## 3376                                                        beef   5
## 3377                                                       slice   5
## 3378                                                         get   5
## 3379                                                philadelphia   5
## 3380                                                      cheese   5
## 3381                                                      bright   5
## 3382                                                       pepsi   5
## 3383                                                        good   5
## 3384                                                     weather   5
## 3385                                                      across   5
## 3386                                                      around   5
## 3387                                                      cheese   5
## 3388                                                       close   5
## 3389                                                          do   5
## 3390                                                       first   5
## 3391                                                          go   5
## 3392                                                        late   5
## 3393                                                       right   5
## 3394                                                       since   5
## 3395                                                       steak   5
## 3396                                                       genos   5
## 3397                                                     without   5
## 3398                                                        just   5
## 3399                                                        look   5
## 3400                                                       place   5
## 3401                                                         see   5
## 3402                                                      decide   5
## 3403                                                         get   5
## 3404                                                        year   5
## 3405                                                        seat   5
## 3406                                                        soda   5
## 3407                                                        list   5
## 3408                                                    faulkner   5
## 3409                                                         old   5
## 3410                                                      philly   5
## 3411                                                        week   5
## 3412                                                        good   5
## 3413                                                         pat   5
## 3414                                                        give   5
## 3415                                                         see   5
## 3416                                                       great   5
## 3417                                                         hit   5
## 3418                                                       place   5
## 3419                                                      return   5
## 3420                                                       bread   5
## 3421                                                   delicious   5
## 3422                                                          do   5
## 3423                                                       steak   5
## 3424                                                         eat   5
## 3425                                                       enjoy   5
## 3426                                                        feel   5
## 3427                                                       leave   5
## 3428                                                        live   5
## 3429                                                        look   5
## 3430                                                      notice   5
## 3431                                                         try   5
## 3432                                                        look   5
## 3433                                                  experience   5
## 3434                                                        good   5
## 3435                                                       taste   5
## 3436                                                         ask   5
## 3437                                                        just   5
## 3438                                                         put   5
## 3439                                                         say   5
## 3440                                                        make   5
## 3441                                                        meat   5
## 3442                                                     another   5
## 3443                                                        food   5
## 3444                                                      around   5
## 3445                                                       taste   5
## 3446                                                        fact   5
## 3447                                                        game   5
## 3448                                                    anything   5
## 3449                                                        fast   5
## 3450                                                      inside   5
## 3451                                                        like   5
## 3452                                                      really   5
## 3453                                                       right   5
## 3454                                                   something   5
## 3455                                                      unless   5
## 3456                                                         can   5
## 3457                                                        want   5
## 3458                                                        line   5
## 3459                                                         get   5
## 3460                                                        take   5
## 3461                                                       bread   5
## 3462                                                       youre   5
## 3463                                                         ask   5
## 3464                                                        chop   5
## 3465                                                        take   5
## 3466                                                       taste   5
## 3467                                                       worth   5
## 3468                                                        come   5
## 3469                                                  disappoint   5
## 3470                                                     opinion   5
## 3471                                                      philly   5
## 3472                                                       genos   5
## 3473                                                         bad   5
## 3474                                                 cheesesteak   5
## 3475                                                          do   5
## 3476                                                        just   5
## 3477                                                         try   5
## 3478                                                       wasnt   5
## 3479                                                     contact   5
## 3480                                                          go   5
## 3481                                                        spot   5
## 3482                                                         pat   5
## 3483                                                        away   5
## 3484                                                        also   5
## 3485                                                       order   5
## 3486                                                      philly   5
## 3487                                                          tv   5
## 3488                                                      little   5
## 3489                                                      philly   5
## 3490                                                  experience   5
## 3491                                                         get   5
## 3492                                                        real   5
## 3493                                                         see   5
## 3494                                                       light   5
## 3495                                                         pat   5
## 3496                                                         top   5
## 3497                                                       didnt   5
## 3498                                                        roll   5
## 3499                                                  experience   5
## 3500                                                         get   5
## 3501                                                    horrible   5
## 3502                                                        isnt   5
## 3503                                                        make   5
## 3504                                                        meat   5
## 3505                                                         now   5
## 3506                                                         one   5
## 3507                                                      philly   5
## 3508                                                        want   5
## 3509                                                       place   5
## 3510                                                       night   5
## 3511                                                        want   5
## 3512                                                       genos   5
## 3513                                                     awesome   5
## 3514                                                 cheesesteak   5
## 3515                                                        come   5
## 3516                                                         get   5
## 3517                                                      little   5
## 3518                                                        make   5
## 3519                                                        much   5
## 3520                                                       order   5
## 3521                                                       taste   5
## 3522                                                       tasty   5
## 3523                                                      werent   5
## 3524                                                        will   5
## 3525                                                     compare   5
## 3526                                                    actually   5
## 3527                                                      around   5
## 3528                                                       clean   5
## 3529                                                    customer   5
## 3530                                                   delicious   5
## 3531                                                      famous   5
## 3532                                                        find   5
## 3533                                                       fresh   5
## 3534                                                      friend   5
## 3535                                                       guess   5
## 3536                                                         hot   5
## 3537                                                        hype   5
## 3538                                                          id   5
## 3539                                                       leave   5
## 3540                                                      locate   5
## 3541                                                       offer   5
## 3542                                                      people   5
## 3543                                                       quite   5
## 3544                                                   recommend   5
## 3545                                                       rival   5
## 3546                                                         say   5
## 3547                                                      slight   5
## 3548                                                    slightly   5
## 3549                                                        soft   5
## 3550                                                       staff   5
## 3551                                                       thing   5
## 3552                                                      though   5
## 3553                                                        time   5
## 3554                                                          tv   5
## 3555                                                        walk   5
## 3556                                                        wife   5
## 3557                                                       youve   5
## 3558                                                      around   5
## 3559                                                     classic   5
## 3560                                                          do   5
## 3561                                                      double   5
## 3562                                                       front   5
## 3563                                                        long   5
## 3564                                                         new   5
## 3565                                                         pay   5
## 3566                                                      pretty   5
## 3567                                                        rude   5
## 3568                                                         say   5
## 3569                                                   something   5
## 3570                                                          us   5
## 3571                                                        want   5
## 3572                                                     another   5
## 3573                                                          go   5
## 3574                                                           2   5
## 3575                                                cheesesteaks   5
## 3576                                                   different   5
## 3577                                                        else   5
## 3578                                                        fast   5
## 3579                                                        home   5
## 3580                                                        last   5
## 3581                                                      little   5
## 3582                                                        make   5
## 3583                                                        many   5
## 3584                                                        meat   5
## 3585                                                       night   5
## 3586                                                         now   5
## 3587                                                        read   5
## 3588                                                   recommend   5
## 3589                                                    straight   5
## 3590                                                      window   5
## 3591                                                       worth   5
## 3592                                                      anyway   5
## 3593                                                        beef   5
## 3594                                                        ever   5
## 3595                                                    everyone   5
## 3596                                                        jims   5
## 3597                                                        keep   5
## 3598                                                       local   5
## 3599                                                        look   5
## 3600                                                       maybe   5
## 3601                                                        mean   5
## 3602                                                        next   5
## 3603                                                    probably   5
## 3604                                                   provolone   5
## 3605                                                       right   5
## 3606                                                        side   5
## 3607                                                        size   5
## 3608                                                       spend   5
## 3609                                                      street   5
## 3610                                                        take   5
## 3611                                                        wife   5
## 3612                                                         wiz   5
## 3613                                                        wont   5
## 3614                                                         one   5
## 3615                                                      either   5
## 3616                                                         pat   5
## 3617                                                     quality   5
## 3618                                                         way   5
## 3619                                                        just   5
## 3620                                                       thats   5
## 3621                                                      across   5
## 3622                                                        hour   5
## 3623                                                       bread   5
## 3624                                                        earn   5
## 3625                                                        meat   5
## 3626                                                        time   5
## 3627                                                         say   5
## 3628                                                         pat   5
## 3629                                                     rivalry   5
## 3630                                                        deal   5
## 3631                                                       thats   5
## 3632                                                        rate   5
## 3633                                                  disappoint   5
## 3634                                                         atm   5
## 3635                                                        line   5
## 3636                                                         can   5
## 3637                                                         hot   5
## 3638                                                         say   5
## 3639                                                     opinion   5
## 3640                                                        good   5
## 3641                                                        just   5
## 3642                                                        meat   5
## 3643                                                      really   5
## 3644                                                    probably   5
## 3645                                                     ashamed   5
## 3646                                                        ever   5
## 3647                                                         say   5
## 3648                                                       still   5
## 3649                                                     tourist   5
## 3650                                                        will   5
## 3651                                                      either   5
## 3652                                                        rude   5
## 3653                                                        hall   5
## 3654                                                        find   5
## 3655                                                         pat   5
## 3656                                                        read   5
## 3657                                                        mike   5
## 3658                                                       genos   5
## 3659                                                      ventos   5
## 3660                                                        meat   5
## 3661                                                       onion   5
## 3662                                                      tender   5
## 3663                                                     another   5
## 3664                                                     compare   5
## 3665                                                      enough   5
## 3666                                                      little   5
## 3667                                                        long   5
## 3668                                                    mediocre   5
## 3669                                                      philly   5
## 3670                                                         sit   5
## 3671                                                       steak   5
## 3672                                                       tasty   5
## 3673                                                        move   5
## 3674                                                    everyone   5
## 3675                                                         get   5
## 3676                                                        give   5
## 3677                                                       lingo   5
## 3678                                                       thats   5
## 3679                                                         try   5
## 3680                                                        good   5
## 3681                                                      behind   5
## 3682                                                      window   5
## 3683                                                        week   5
## 3684                                                         try   5
## 3685                                                       clear   5
## 3686                                                         get   5
## 3687                                                          go   5
## 3688                                                        take   5
## 3689                                                        tell   5
## 3690                                                     picture   5
## 3691                                                        sign   5
## 3692                                                    anything   5
## 3693                                                cheesesteaks   5
## 3694                                                        chop   5
## 3695                                                        crap   5
## 3696                                                    everyone   5
## 3697                                                        fast   5
## 3698                                                         hot   5
## 3699                                                       idiot   5
## 3700                                                        like   5
## 3701                                                      little   5
## 3702                                                         lot   5
## 3703                                                        moth   5
## 3704                                                        need   5
## 3705                                                     nothing   5
## 3706                                                     regular   5
## 3707                                                      season   5
## 3708                                                        sign   5
## 3709                                                      theyre   5
## 3710                                                       thick   5
## 3711                                                        will   5
## 3712                                                      cheese   5
## 3713                                                        come   5
## 3714                                                        duty   5
## 3715                                                         eat   5
## 3716                                                        take   5
## 3717                                                        will   5
## 3718                                                   expensive   5
## 3719                                                   flavorful   5
## 3720                                                       salty   5
## 3721                                                       soggy   5
## 3722                                                     america   5
## 3723                                                        near   5
## 3724                                                          do   5
## 3725                                                         eat   5
## 3726                                                          go   5
## 3727                                                       pizza   5
## 3728                                                          go   5
## 3729                                                       night   5
## 3730                                                       stand   5
## 3731                                                       strip   5
## 3732                                                      appeal   5
## 3733                                                         lot   5
## 3734                                                         pat   5
## 3735                                                    sandwich   5
## 3736                                                       taste   5
## 3737                                                     angeles   5
## 3738                                                       bread   5
## 3739                                                         can   5
## 3740                                                       every   5
## 3741                                                          go   5
## 3742                                                       onion   5
## 3743                                                         way   5
## 3744                                                        find   5
## 3745                                                        warm   5
## 3746                                                         pat   5
## 3747                                                         bad   5
## 3748                                                         big   5
## 3749                                                         eye   5
## 3750                                                       fresh   5
## 3751                                                      pretty   5
## 3752                                                        sick   5
## 3753                                                       thing   5
## 3754                                                 cheesesteak   5
## 3755                                                        many   5
## 3756                                                    negative   5
## 3757                                                      option   5
## 3758                                                       other   5
## 3759                                                     produce   5
## 3760                                                      expect   5
## 3761                                                        like   5
## 3762                                                          im   5
## 3763                                                       thats   5
## 3764                                                  absolutely   5
## 3765                                                       great   5
## 3766                                                        lack   5
## 3767                                                       large   5
## 3768                                                         put   5
## 3769                                                     quality   5
## 3770                                                    slightly   5
## 3771                                                       steak   5
## 3772                                                       super   5
## 3773                                                   tasteless   5
## 3774                                                      though   5
## 3775                                                         wiz   5
## 3776                                                        food   5
## 3777                                                       steak   5
## 3778                                                      cheese   5
## 3779                                                         pat   5
## 3780                                                       night   5
## 3781                                                        blow   5
## 3782                                                        back   5
## 3783                                                       place   5
## 3784                                                       worth   5
## 3785                                                        line   5
## 3786                                                       vento   5
## 3787                                                         bad   5
## 3788                                                       bread   5
## 3789                                                        just   5
## 3790                                                      little   5
## 3791                                                         say   5
## 3792                                                        good   5
## 3793                                                        stop   5
## 3794                                                         pat   5
## 3795                                                        good   5
## 3796                                                        know   5
## 3797                                                   recommend   5
## 3798                                                      philly   5
## 3799                                                         hot   5
## 3800                                                        soft   5
## 3801                                                      philly   5
## 3802                                                         can   5
## 3803                                                          im   5
## 3804                                                         try   5
## 3805                                                        near   5
## 3806                                                         one   5
## 3807                                                        time   5
## 3808                                                        good   5
## 3809                                                         can   5
## 3810                                                       didnt   5
## 3811                                                       bread   5
## 3812                                                      decide   5
## 3813                                                         fry   5
## 3814                                                        must   5
## 3815                                                      reason   5
## 3816                                                       steak   5
## 3817                                                     tourist   5
## 3818                                                         try   5
## 3819                                                        want   5
## 3820                                                        will   5
## 3821                                                       arent   5
## 3822                                                        even   5
## 3823                                                   perfectly   5
## 3824                                                         say   5
## 3825                                                       sweet   5
## 3826                                                        will   5
## 3827                                                    american   5
## 3828                                                        fast   5
## 3829                                                        find   5
## 3830                                                       first   5
## 3831                                                      french   5
## 3832                                                        good   5
## 3833                                                        just   5
## 3834                                                       thats   5
## 3835                                                          us   5
## 3836                                                        will   5
## 3837                                                        soft   5
## 3838                                                       place   5
## 3839                                                      pretty   5
## 3840                                                       think   5
## 3841                                                        area   5
## 3842                                                       block   5
## 3843                                                       right   5
## 3844                                                        city   5
## 3845                                                       place   5
## 3846                                                    sandwich   5
## 3847                                                       south   5
## 3848                                                        town   5
## 3849                                                        away   5
## 3850                                                     weekend   5
## 3851                                                     another   5
## 3852                                                         buy   5
## 3853                                                      choose   5
## 3854                                                         eat   5
## 3855                                                         far   5
## 3856                                                       great   5
## 3857                                                        know   5
## 3858                                                        many   5
## 3859                                                        park   5
## 3860                                                      people   5
## 3861                                                        pick   5
## 3862                                                       serve   5
## 3863                                                           v   5
## 3864                                                         wiz   5
## 3865                                                     wouldnt   5
## 3866                                                   attention   5
## 3867                                                         eat   5
## 3868                                                    complain   5
## 3869                                                         get   5
## 3870                                                        make   5
## 3871                                                        rave   5
## 3872                                                        good   5
## 3873                                                        like   5
## 3874                                                      cheese   5
## 3875                                                cheesesteaks   5
## 3876                                                   tradition   5
## 3877                                                        also   5
## 3878                                                        cant   5
## 3879                                                     classic   5
## 3880                                                      course   5
## 3881                                                       drive   5
## 3882                                                        food   5
## 3883                                                        give   5
## 3884                                                         ive   5
## 3885                                                    landmark   5
## 3886                                                        long   5
## 3887                                                       order   5
## 3888                                                       youre   5
## 3889                                                 cheesesteak   5
## 3890                                                       sauce   5
## 3891                                                       steak   5
## 3892                                                        also   5
## 3893                                                      always   5
## 3894                                                       bread   5
## 3895                                                       check   5
## 3896                                                        cost   5
## 3897                                                        ever   5
## 3898                                                      expect   5
## 3899                                                         far   5
## 3900                                                    horrible   5
## 3901                                                        isnt   5
## 3902                                                       light   5
## 3903                                                        line   5
## 3904                                                        much   5
## 3905                                                      people   5
## 3906                                                       right   5
## 3907                                                         say   5
## 3908                                                       taste   5
## 3909                                                          go   5
## 3910                                                       order   5
## 3911                                                       force   5
## 3912                                                       place   5
## 3913                                                     tourist   5
## 3914                                                        tony   5
## 3915                                                        meat   5
## 3916                                                      excite   5
## 3917                                                        fast   5
## 3918                                                        rude   5
## 3919                                                       tasty   5
## 3920                                                         bad   5
## 3921                                                          go   5
## 3922                                                      little   5
## 3923                                                       steak   5
## 3924                                                         tag   5
## 3925                                                        make   5
## 3926                                                     wouldnt   5
## 3927                                                       grill   5
## 3928                                                     instead   5
## 3929                                                       bread   5
## 3930                                                       genos   5
## 3931                                                        meat   5
## 3932                                                    together   5
## 3933                                                       taste   5
## 3934                                                         pat   5
## 3935                                               establishment   5
## 3936                                                  xenophobic   5
## 3937                                                        star   5
## 3938                                                         eat   5
## 3939                                                     english   5
## 3940                                                    american   5
## 3941                                                        come   5
## 3942                                                       didnt   5
## 3943                                                      doesnt   5
## 3944                                                        fast   5
## 3945                                                      hungry   5
## 3946                                                        nice   5
## 3947                                                         say   5
## 3948                                                         see   5
## 3949                                                         try   5
## 3950                                                          im   5
## 3951                                                       price   5
## 3952                                                        move   5
## 3953                                                       serve   5
## 3954                                                      cheese   5
## 3955                                                         fry   5
## 3956                                                     ketchup   5
## 3957                                                        base   5
## 3958                                                      cheese   5
## 3959                                                        yelp   5
## 3960                                                       front   5
## 3961                                                      refuse   5
## 3962                                                      always   5
## 3963                                                       chewy   5
## 3964                                                         get   5
## 3965                                                    customer   5
## 3966                                                        just   5
## 3967                                                      people   5
## 3968                                                  experience   5
## 3969                                                       diego   5
## 3970                                                    actually   5
## 3971                                                     another   5
## 3972                                                         ask   5
## 3973                                                         big   5
## 3974                                                       cheez   5
## 3975                                                        cost   5
## 3976                                                       drink   5
## 3977                                                         eat   5
## 3978                                                       first   5
## 3979                                                      greasy   5
## 3980                                                       leave   5
## 3981                                                        line   5
## 3982                                                        love   5
## 3983                                                        much   5
## 3984                                                        must   5
## 3985                                                         pay   5
## 3986                                                       serve   5
## 3987                                                        take   5
## 3988                                                       think   5
## 3989                                                         wit   5
## 3990                                                 cheesesteak   5
## 3991                                                      hunger   5
## 3992                                                       bread   5
## 3993                                                         yes   5
## 3994                                                   cafeteria   5
## 3995                                                        good   5
## 3996                                                         pat   5
## 3997                                                       limit   5
## 3998                                                         big   5
## 3999                                                        food   5
## 4000                                                        like   5
## 4001                                                        line   5
## 4002                                                        make   5
## 4003                                                        back   5
## 4004                                                cheesesteaks   5
## 4005                                                        also   5
## 4006                                                      decent   5
## 4007                                                        just   5
## 4008                                                      little   5
## 4009                                                        need   5
## 4010                                                        poor   5
## 4011                                                        good   5
## 4012                                                         fry   5
## 4013                                                        like   5
## 4014                                                  comparison   5
## 4015                                                     america   5
## 4016                                                       genos   5
## 4017                                                         can   5
## 4018                                                       didnt   5
## 4019                                                         see   5
## 4020                                                         pat   5
## 4021                                                   provolone   5
## 4022                                                      rather   5
## 4023                                                        edge   5
## 4024                                                      medium   5
## 4025                                                         pat   5
## 4026                                                         yet   5
## 4027                                                        else   5
## 4028                                                       along   5
## 4029                                                         get   5
## 4030                                                         pat   5
## 4031                                                         say   5
## 4032                                                    sandwich   5
## 4033                                                          go   5
## 4034                                                 cheesesteak   5
## 4035                                                       bread   5
## 4036                                                        food   5
## 4037                                                      across   5
## 4038                                                     alright   5
## 4039                                                      always   5
## 4040                                                       amaze   5
## 4041                                                       arent   5
## 4042                                                     average   5
## 4043                                                       chewy   5
## 4044                                                      decide   5
## 4045                                                   different   5
## 4046                                                         far   5
## 4047                                                      greasy   5
## 4048                                                         hot   5
## 4049                                                     however   5
## 4050                                                        jims   5
## 4051                                                       light   5
## 4052                                                         lot   5
## 4053                                                       never   5
## 4054                                                        roll   5
## 4055                                                         say   5
## 4056                                                       thing   5
## 4057                                                        town   5
## 4058                                                        walk   5
## 4059                                                        want   5
## 4060                                                       worth   5
## 4061                                                      window   5
## 4062                                                          go   5
## 4063                                                        open   5
## 4064                                                        will   5
## 4065                                                        make   5
## 4066                                                        much   5
## 4067                                                        want   5
## 4068                                                        good   5
## 4069                                                       clean   5
## 4070                                                        good   5
## 4071                                                       troop   5
## 4072                                                       taste   5
## 4073                                                         get   5
## 4074                                                          go   5
## 4075                                                        hype   5
## 4076                                                       onion   5
## 4077                                                         eat   5
## 4078                                                      advice   5
## 4079                                                        card   5
## 4080                                                       genos   5
## 4081                                                         bad   5
## 4082                                                  difference   5
## 4083                                                   different   5
## 4084                                                         fry   5
## 4085                                                      little   5
## 4086                                                         old   5
## 4087                                                philadelphia   5
## 4088                                                      pretty   5
## 4089                                                      really   5
## 4090                                                      cheese   5
## 4091                                                       onion   5
## 4092                                                         pat   5
## 4093                                                        good   5
## 4094                                                       order   5
## 4095                                                       juicy   5
## 4096                                                       genos   5
## 4097                                                         god   5
## 4098                                                     exactly   5
## 4099                                                      philly   5
## 4100                                                     outdoor   5
## 4101                                                        sign   5
## 4102                                                        just   5
## 4103                                                        rude   5
## 4104                                                         get   5
## 4105                                                       bread   5
## 4106                                                        love   5
## 4107                                                        make   5
## 4108                                                      notice   5
## 4109                                                         can   5
## 4110                                                cheesesteaks   5
## 4111                                                       ginos   5
## 4112                                                          im   5
## 4113                                                        just   5
## 4114                                                        much   5
## 4115                                                       taste   5
## 4116                                                       twice   5
## 4117                                                        line   5
## 4118                                                    sandwich   5
## 4119                                                       think   5
## 4120                                                    sandwich   5
## 4121                                                       drive   5
## 4122                                                        look   5
## 4123                                                        make   5
## 4124                                                         one   5
## 4125                                                         see   5
## 4126                                                     tourist   5
## 4127                                                       bread   5
## 4128                                                        good   5
## 4129                                                        meat   5
## 4130                                                         hot   5
## 4131                                                        stop   5
## 4132                                                       genos   5
## 4133                                                         get   5
## 4134                                                         way   5
## 4135                                                    customer   5
## 4136                                                        like   5
## 4137                                                         can   5
## 4138                                                          do   5
## 4139                                                         eat   5
## 4140                                                      either   5
## 4141                                                       enjoy   5
## 4142                                                         fry   5
## 4143                                                        next   5
## 4144                                                   provolone   5
## 4145                                                       since   5
## 4146                                                   something   5
## 4147                                                       visit   5
## 4148                                                       world   5
## 4149                                                        away   5
## 4150                                                       place   5
## 4151                                                         big   5
## 4152                                                 cheesesteak   5
## 4153                                                cheesesteaks   5
## 4154                                               establishment   5
## 4155                                                       order   5
## 4156                                                    sandwich   5
## 4157                                                      driver   5
## 4158                                                       steak   5
## 4159                                                       agree   5
## 4160                                                    bathroom   5
## 4161                                                      little   5
## 4162                                                         get   5
## 4163                                                       genos   5
## 4164                                                       strip   5
## 4165                                                       owner   5
## 4166                                                         pat   5
## 4167                                                         pat   5
## 4168                                                        want   5
## 4169                                                          go   5
## 4170                                                        hour   5
## 4171                                                       block   5
## 4172                                                         pat   5
## 4173                                                     classic   5
## 4174                                                        food   5
## 4175                                                         fry   5
## 4176                                                      people   5
## 4177                                                       steak   5
## 4178                                                       taste   5
## 4179                                                     tourist   5
## 4180                                                        true   5
## 4181                                                         pat   5
## 4182                                                        blow   5
## 4183                                                      greasy   5
## 4184                                                      season   5
## 4185                                                      around   5
## 4186                                                      cheese   5
## 4187                                                         eat   5
## 4188                                                        like   5
## 4189                                                         say   5
## 4190                                                        want   5
## 4191                                                         way   5
## 4192                                                        good   5
## 4193                                                        ever   5
## 4194                                                    american   5
## 4195                                                        come   5
## 4196                                                  definitely   5
## 4197                                                       great   5
## 4198                                                        meat   5
## 4199                                                       order   5
## 4200                                                         put   5
## 4201                                                       piece   5
## 4202                                                    sandwich   5
## 4203                                                        time   5
## 4204                                                        find   5
## 4205                                                       stick   5
## 4206                                                       still   5
## 4207                                                       genos   5
## 4208                                                    sandwich   5
## 4209                                                        yell   5
## 4210                                                         put   5
## 4211                                                    american   5
## 4212                                                       genos   5
## 4213                                                        hour   5
## 4214                                                        mean   5
## 4215                                                         try   5
## 4216                                                    american   5
## 4217                                                        make   5
## 4218                                                        mean   5
## 4219                                                    mushroom   5
## 4220                                                         pat   5
## 4221                                                  disappoint   5
## 4222                                                        good   5
## 4223                                                  experience   5
## 4224                                                       money   5
## 4225                                                      racist   5
## 4226                                                        sign   5
## 4227                                                      always   5
## 4228                                                       genos   5
## 4229                                                         ive   5
## 4230                                                         ive   5
## 4231                                                       place   5
## 4232                                                          do   5
## 4233                                                         pay   5
## 4234                                                    probably   5
## 4235                                                        line   4
## 4236                                                         one   4
## 4237                                                       place   4
## 4238                                                         bad   4
## 4239                                                      flavor   4
## 4240                                                       steak   4
## 4241                                                        want   4
## 4242                                                         fry   4
## 4243                                                        salt   4
## 4244                                                          go   4
## 4245                                                         old   4
## 4246                                                       first   4
## 4247                                                          go   4
## 4248                                                         pat   4
## 4249                                                    location   4
## 4250                                                        find   4
## 4251                                                        lack   4
## 4252                                                        love   4
## 4253                                                        nice   4
## 4254                                                         pat   4
## 4255                                                       place   4
## 4256                                                         say   4
## 4257                                                        come   4
## 4258                                                         fun   4
## 4259                                                        tell   4
## 4260                                                      philly   4
## 4261                                                       steak   4
## 4262                                                        whiz   4
## 4263                                                    customer   4
## 4264                                                       genos   4
## 4265                                                    language   4
## 4266                                                        make   4
## 4267                                                         get   4
## 4268                                                        good   4
## 4269                                                        make   4
## 4270                                                       write   4
## 4271                                                         get   4
## 4272                                                      window   4
## 4273                                                        good   4
## 4274                                                         try   4
## 4275                                                        even   4
## 4276                                                        many   4
## 4277                                                     country   4
## 4278                                                          go   4
## 4279                                                       store   4
## 4280                                                        town   4
## 4281                                                       world   4
## 4282                                                      around   4
## 4283                                                      window   4
## 4284                                                        good   4
## 4285                                                    mushroom   4
## 4286                                                       onion   4
## 4287                                                        want   4
## 4288                                                          do   4
## 4289                                                       genos   4
## 4290                                                        good   4
## 4291                                                       place   4
## 4292                                                        back   4
## 4293                                                         car   4
## 4294                                                       forth   4
## 4295                                                      friend   4
## 4296                                                         get   4
## 4297                                                        come   4
## 4298                                                    customer   4
## 4299                                                        ever   4
## 4300                                                      flavor   4
## 4301                                                        good   4
## 4302                                                        idea   4
## 4303                                                     tourist   4
## 4304                                                       wasnt   4
## 4305                                                      across   4
## 4306                                                         put   4
## 4307                                                cheesesteaks   4
## 4308                                                       genos   4
## 4309                                                         pat   4
## 4310                                                        good   4
## 4311                                                       onion   4
## 4312                                                  everything   4
## 4313                                                        good   4
## 4314                                                  disappoint   4
## 4315                                                      decide   4
## 4316                                                        city   4
## 4317                                                      debate   4
## 4318                                                       piece   4
## 4319                                                     tourist   4
## 4320                                                 cheesesteak   4
## 4321                                                        just   4
## 4322                                                        long   4
## 4323                                                         say   4
## 4324                                                       wasnt   4
## 4325                                                      cheese   4
## 4326                                                        even   4
## 4327                                                  flavorless   4
## 4328                                                       steak   4
## 4329                                                       wasnt   4
## 4330                                                       wrong   4
## 4331                                                         add   4
## 4332                                                   fantastic   4
## 4333                                                        hold   4
## 4334                                                        like   4
## 4335                                                        look   4
## 4336                                                        much   4
## 4337                                                     perfect   4
## 4338                                                       thick   4
## 4339                                                      flavor   4
## 4340                                                        good   4
## 4341                                                       owner   4
## 4342                                                     tourist   4
## 4343                                                         fry   4
## 4344                                                       genos   4
## 4345                                                        ride   4
## 4346                                                      french   4
## 4347                                                      cheese   4
## 4348                                                        even   4
## 4349                                                        grab   4
## 4350                                                        long   4
## 4351                                                    mushroom   4
## 4352                                                    remember   4
## 4353                                                         sit   4
## 4354                                                       still   4
## 4355                                                         try   4
## 4356                                                        beat   4
## 4357                                                      decide   4
## 4358                                                        just   4
## 4359                                                    remember   4
## 4360                                                        much   4
## 4361                                                        food   4
## 4362                                                        good   4
## 4363                                                        park   4
## 4364                                                      refund   4
## 4365                                                       visit   4
## 4366                                                       worth   4
## 4367                                                         try   4
## 4368                                                       extra   4
## 4369                                                        meat   4
## 4370                                                         pat   4
## 4371                                                       place   4
## 4372                                                 cheesesteak   4
## 4373                                                      either   4
## 4374                                                        ever   4
## 4375                                                          go   4
## 4376                                                         ive   4
## 4377                                                        lack   4
## 4378                                                         lot   4
## 4379                                                        love   4
## 4380                                                         meh   4
## 4381                                                         one   4
## 4382                                                     overall   4
## 4383                                                       tasty   4
## 4384                                                         add   4
## 4385                                                 competition   4
## 4386                                                      corner   4
## 4387                                                        cost   4
## 4388                                                      doesnt   4
## 4389                                                      either   4
## 4390                                                      expert   4
## 4391                                                        food   4
## 4392                                                       ginos   4
## 4393                                                        give   4
## 4394                                                       guess   4
## 4395                                                        hand   4
## 4396                                                        hear   4
## 4397                                                        king   4
## 4398                                                        love   4
## 4399                                                         may   4
## 4400                                                        next   4
## 4401                                                     overall   4
## 4402                                                      pepper   4
## 4403                                                      please   4
## 4404                                                         run   4
## 4405                                                   something   4
## 4406                                                       steak   4
## 4407                                                     suppose   4
## 4408                                                       tasty   4
## 4409                                                       thats   4
## 4410                                                       thing   4
## 4411                                                         two   4
## 4412                                                        also   4
## 4413                                                        area   4
## 4414                                                       bland   4
## 4415                                                cheesesteaks   4
## 4416                                                   different   4
## 4417                                                         fry   4
## 4418                                                        live   4
## 4419                                                        meat   4
## 4420                                                     nothing   4
## 4421                                                philadelphia   4
## 4422                                                      pretty   4
## 4423                                                     suppose   4
## 4424                                                        will   4
## 4425                                                        whiz   4
## 4426                                                        roll   4
## 4427                                                       tough   4
## 4428                                                         two   4
## 4429                                                       genos   4
## 4430                                                      season   4
## 4431                                                         can   4
## 4432                                                       genos   4
## 4433                                                          go   4
## 4434                                                        good   4
## 4435                                                       offer   4
## 4436                                                        park   4
## 4437                                                      inside   4
## 4438                                                        look   4
## 4439                                                       staff   4
## 4440                                                      winner   4
## 4441                                                       genos   4
## 4442                                                       bread   4
## 4443                                                         fry   4
## 4444                                                       night   4
## 4445                                                     outside   4
## 4446                                                       windy   4
## 4447                                                        cash   4
## 4448                                                cheesesteaks   4
## 4449                                                      expect   4
## 4450                                                        fast   4
## 4451                                                        good   4
## 4452                                                      little   4
## 4453                                                          ny   4
## 4454                                                       onion   4
## 4455                                                      people   4
## 4456                                                         say   4
## 4457                                                        want   4
## 4458                                                    contrast   4
## 4459                                                        good   4
## 4460                                                        jims   4
## 4461                                                      review   4
## 4462                                                         pat   4
## 4463                                                       waste   4
## 4464                                                          go   4
## 4465                                                       stand   4
## 4466                                                     station   4
## 4467                                                     tourist   4
## 4468                                                      little   4
## 4469                                                         pat   4
## 4470                                                       pizza   4
## 4471                                                        stop   4
## 4472                                                          do   4
## 4473                                                        time   4
## 4474                                                         get   4
## 4475                                                          go   4
## 4476                                                          do   4
## 4477                                                       genos   4
## 4478                                                      philly   4
## 4479                                                     outside   4
## 4480                                                      bucket   4
## 4481                                                        come   4
## 4482                                                       speak   4
## 4483                                                        thin   4
## 4484                                                 cheesesteak   4
## 4485                                                         can   4
## 4486                                                        even   4
## 4487                                                         get   4
## 4488                                                        good   4
## 4489                                                        late   4
## 4490                                                        make   4
## 4491                                                       order   4
## 4492                                                         try   4
## 4493                                                     whether   4
## 4494                                                      amount   4
## 4495                                                         fry   4
## 4496                                                       check   4
## 4497                                                       drive   4
## 4498                                                         eat   4
## 4499                                                        good   4
## 4500                                                        just   4
## 4501                                                       order   4
## 4502                                                       split   4
## 4503                                                       place   4
## 4504                                                        need   4
## 4505                                                         pat   4
## 4506                                                      prefer   4
## 4507                                                         see   4
## 4508                                                         try   4
## 4509                                                         way   4
## 4510                                                     weather   4
## 4511                                                cheesesteaks   4
## 4512                                                        meat   4
## 4513                                                        star   4
## 4514                                                      bother   4
## 4515                                                        come   4
## 4516                                                      enough   4
## 4517                                                        give   4
## 4518                                                        time   4
## 4519                                                       first   4
## 4520                                                       place   4
## 4521                                                      people   4
## 4522                                                    anything   4
## 4523                                                        ever   4
## 4524                                                        fall   4
## 4525                                                        feel   4
## 4526                                                        good   4
## 4527                                                        live   4
## 4528                                                        mind   4
## 4529                                                        plan   4
## 4530                                                     support   4
## 4531                                                       taste   4
## 4532                                                         try   4
## 4533                                                        chop   4
## 4534                                                        even   4
## 4535                                                        like   4
## 4536                                                        live   4
## 4537                                                        take   4
## 4538                                                       crowd   4
## 4539                                                          do   4
## 4540                                                      hungry   4
## 4541                                                        just   4
## 4542                                                        okay   4
## 4543                                                      refill   4
## 4544                                                      cheese   4
## 4545                                                      grease   4
## 4546                                                    sandwich   4
## 4547                                                        back   4
## 4548                                                        past   4
## 4549                                                         two   4
## 4550                                                       didnt   4
## 4551                                                          do   4
## 4552                                                        lack   4
## 4553                                                     rubbery   4
## 4554                                                        spin   4
## 4555                                                        find   4
## 4556                                                     another   4
## 4557                                                        area   4
## 4558                                                        cold   4
## 4559                                                  experience   4
## 4560                                                       first   4
## 4561                                                      people   4
## 4562                                                       since   4
## 4563                                                         two   4
## 4564                                                        want   4
## 4565                                                        good   4
## 4566                                                        good   4
## 4567                                                         say   4
## 4568                                                    friendly   4
## 4569                                                         eat   4
## 4570                                                       genos   4
## 4571                                                    sandwich   4
## 4572                                                       genos   4
## 4573                                                      really   4
## 4574                                                       thank   4
## 4575                                                       every   4
## 4576                                                          go   4
## 4577                                                    actually   4
## 4578                                                        melt   4
## 4579                                                          go   4
## 4580                                                        call   4
## 4581                                                        cook   4
## 4582                                                        hard   4
## 4583                                                         one   4
## 4584                                                        tell   4
## 4585                                                        want   4
## 4586                                                       bread   4
## 4587                                                         one   4
## 4588                                                       spend   4
## 4589                                                       visit   4
## 4590                                                         can   4
## 4591                                                         say   4
## 4592                                                       genos   4
## 4593                                                        good   4
## 4594                                                        want   4
## 4595                                                 cheesesteak   4
## 4596                                                        know   4
## 4597                                                       place   4
## 4598                                                   something   4
## 4599                                                         wow   4
## 4600                                                        high   4
## 4601                                                 cheesesteak   4
## 4602                                                  disappoint   4
## 4603                                                         eat   4
## 4604                                                       place   4
## 4605                                                       still   4
## 4606                                                      though   4
## 4607                                                        want   4
## 4608                                                       onion   4
## 4609                                                          do   4
## 4610                                                       apart   4
## 4611                                                        hype   4
## 4612                                                        love   4
## 4613                                                      police   4
## 4614                                                       short   4
## 4615                                                     tourist   4
## 4616                                                       genos   4
## 4617                                                        come   4
## 4618                                                cheesesteaks   4
## 4619                                                cheesesteaks   4
## 4620                                                    sandwich   4
## 4621                                                   efficient   4
## 4622                                                     forward   4
## 4623                                                        good   4
## 4624                                                        take   4
## 4625                                                        part   4
## 4626                                                      cheese   4
## 4627                                                         pat   4
## 4628                                                        rush   4
## 4629                                                      though   4
## 4630                                               uncomfortable   4
## 4631                                                     welcome   4
## 4632                                                     yelpers   4
## 4633                                                          id   4
## 4634                                                       bread   4
## 4635                                                      cheese   4
## 4636                                                        much   4
## 4637                                                   somewhere   4
## 4638                                                      street   4
## 4639                                                       table   4
## 4640                                                    sandwich   4
## 4641                                                      cheese   4
## 4642                                                         eat   4
## 4643                                                      glance   4
## 4644                                                  impression   4
## 4645                                                    language   4
## 4646                                                       order   4
## 4647                                                        park   4
## 4648                                                       think   4
## 4649                                                        beef   4
## 4650                                                         can   4
## 4651                                                        like   4
## 4652                                                      little   4
## 4653                                                     overall   4
## 4654                                                   provolone   4
## 4655                                                     texture   4
## 4656                                                       wasnt   4
## 4657                                                      cheese   4
## 4658                                                       genos   4
## 4659                                                        good   4
## 4660                                                       juicy   4
## 4661                                                       onion   4
## 4662                                                      philly   4
## 4663                                                        game   4
## 4664                                                        food   4
## 4665                                                        also   4
## 4666                                                       bland   4
## 4667                                                     couldnt   4
## 4668                                                       court   4
## 4669                                                      critic   4
## 4670                                                  definitely   4
## 4671                                                         eat   4
## 4672                                                        even   4
## 4673                                                        ever   4
## 4674                                                        feud   4
## 4675                                                        food   4
## 4676                                                        like   4
## 4677                                                        need   4
## 4678                                                     nothing   4
## 4679                                                       order   4
## 4680                                                         pat   4
## 4681                                                      poison   4
## 4682                                                         say   4
## 4683                                                       serve   4
## 4684                                                        star   4
## 4685                                                        suck   4
## 4686                                                       worth   4
## 4687                                                       drink   4
## 4688                                                          us   4
## 4689                                                       mumia   4
## 4690                                                         fry   4
## 4691                                                      cheese   4
## 4692                                                        roll   4
## 4693                                                        make   4
## 4694                                                        mine   4
## 4695                                                       split   4
## 4696                                                 cheesesteak   4
## 4697                                                          us   4
## 4698                                                       amaze   4
## 4699                                                       arent   4
## 4700                                                        bomb   4
## 4701                                                        cash   4
## 4702                                                        coke   4
## 4703                                                      decent   4
## 4704                                                       didnt   4
## 4705                                                        even   4
## 4706                                                       extra   4
## 4707                                                      french   4
## 4708                                                        like   4
## 4709                                                        line   4
## 4710                                                        look   4
## 4711                                                     overall   4
## 4712                                                     perfect   4
## 4713                                                    sandwich   4
## 4714                                                      window   4
## 4715                                                         try   4
## 4716                                                     station   4
## 4717                                                        good   4
## 4718                                                       steak   4
## 4719                                                           2   4
## 4720                                                      accept   4
## 4721                                                    although   4
## 4722                                                      answer   4
## 4723                                                     anytime   4
## 4724                                                      battle   4
## 4725                                                       block   4
## 4726                                                      bright   4
## 4727                                                         buy   4
## 4728                                                        cash   4
## 4729                                                       cheap   4
## 4730                                                       close   4
## 4731                                                 competition   4
## 4732                                                    consider   4
## 4733                                                        cook   4
## 4734                                                      debate   4
## 4735                                                         eat   4
## 4736                                                        edge   4
## 4737                                                    employee   4
## 4738                                                        fact   4
## 4739                                                        fair   4
## 4740                                                      figure   4
## 4741                                                        fine   4
## 4742                                                   flavorful   4
## 4743                                                    honestly   4
## 4744                                                     husband   4
## 4745                                                       juicy   4
## 4746                                                       light   4
## 4747                                                        mean   4
## 4748                                                          nd   4
## 4749                                                        need   4
## 4750                                                       never   4
## 4751                                                       onion   4
## 4752                                                     opinion   4
## 4753                                                    overrate   4
## 4754                                                    question   4
## 4755                                                  restaurant   4
## 4756                                                        roll   4
## 4757                                                     service   4
## 4758                                                        side   4
## 4759                                                   something   4
## 4760                                                        sure   4
## 4761                                                       thats   4
## 4762                                                      travel   4
## 4763                                                        trip   4
## 4764                                                       visit   4
## 4765                                                        wait   4
## 4766                                                       worth   4
## 4767                                                      philly   4
## 4768                                                     another   4
## 4769                                                        away   4
## 4770                                                         bag   4
## 4771                                                         can   4
## 4772                                                       cheez   4
## 4773                                                     counter   4
## 4774                                                        even   4
## 4775                                                         fix   4
## 4776                                                        free   4
## 4777                                                         get   4
## 4778                                                        half   4
## 4779                                                        home   4
## 4780                                                        just   4
## 4781                                                       large   4
## 4782                                                       lucky   4
## 4783                                                         mad   4
## 4784                                                        many   4
## 4785                                                         old   4
## 4786                                                        past   4
## 4787                                                      people   4
## 4788                                                       pizza   4
## 4789                                                      really   4
## 4790                                                     regular   4
## 4791                                                       roast   4
## 4792                                                     service   4
## 4793                                                       shoot   4
## 4794                                                        side   4
## 4795                                                        vote   4
## 4796                                                        away   4
## 4797                                                    business   4
## 4798                                                      cheese   4
## 4799                                                    diarrhea   4
## 4800                                                      flavor   4
## 4801                                                        food   4
## 4802                                                        free   4
## 4803                                                       ginos   4
## 4804                                                         lot   4
## 4805                                                        nice   4
## 4806                                                      philly   4
## 4807                                                        shit   4
## 4808                                                     finally   4
## 4809                                                        also   4
## 4810                                                        base   4
## 4811                                                       bread   4
## 4812                                                         buy   4
## 4813                                                      couple   4
## 4814                                                       crazy   4
## 4815                                                dalessandros   4
## 4816                                                      detail   4
## 4817                                                         end   4
## 4818                                                      famous   4
## 4819                                                        feel   4
## 4820                                                        late   4
## 4821                                                        less   4
## 4822                                                         lol   4
## 4823                                                       lunch   4
## 4824                                                        name   4
## 4825                                                        pick   4
## 4826                                                      pretty   4
## 4827                                                       quick   4
## 4828                                                         sit   4
## 4829                                                      street   4
## 4830                                                        take   4
## 4831                                                       thats   4
## 4832                                                         yes   4
## 4833                                                        damn   4
## 4834                                                        sake   4
## 4835                                                        make   4
## 4836                                                           2   4
## 4837                                                      across   4
## 4838                                                    actually   4
## 4839                                                    although   4
## 4840                                                   authentic   4
## 4841                                                        back   4
## 4842                                                       cheap   4
## 4843                                                      choice   4
## 4844                                                       close   4
## 4845                                                         cut   4
## 4846                                                     english   4
## 4847                                                        fact   4
## 4848                                                         far   4
## 4849                                                        feel   4
## 4850                                                        four   4
## 4851                                                         fun   4
## 4852                                                       gotta   4
## 4853                                                        hand   4
## 4854                                                        home   4
## 4855                                                        kind   4
## 4856                                                        long   4
## 4857                                                        meal   4
## 4858                                                     neither   4
## 4859                                                       night   4
## 4860                                                          oh   4
## 4861                                                          ol   4
## 4862                                                     opinion   4
## 4863                                                     outside   4
## 4864                                                      pepper   4
## 4865                                                     phillys   4
## 4866                                                     product   4
## 4867                                                         put   4
## 4868                                                        read   4
## 4869                                                        seat   4
## 4870                                                        seem   4
## 4871                                                       share   4
## 4872                                                    slightly   4
## 4873                                                       small   4
## 4874                                                       sorry   4
## 4875                                                       stuff   4
## 4876                                                       super   4
## 4877                                                        sure   4
## 4878                                                     texture   4
## 4879                                                      theres   4
## 4880                                                         top   4
## 4881                                                     usually   4
## 4882                                                       value   4
## 4883                                                       visit   4
## 4884                                                      looies   4
## 4885                                                      louies   4
## 4886                                                      search   4
## 4887                                                       place   4
## 4888                                                         try   4
## 4889                                                       steak   4
## 4890                                                        meat   4
## 4891                                                        like   4
## 4892                                                       onion   4
## 4893                                                       first   4
## 4894                                                       genos   4
## 4895                                                         guy   4
## 4896                                                        meat   4
## 4897                                                        spot   4
## 4898                                                      pepper   4
## 4899                                                      expect   4
## 4900                                                         ill   4
## 4901                                                    pleasure   4
## 4902                                                          do   4
## 4903                                                       genos   4
## 4904                                                         get   4
## 4905                                                          go   4
## 4906                                                         say   4
## 4907                                                        away   4
## 4908                                                       genos   4
## 4909                                                       share   4
## 4910                                                       steak   4
## 4911                                                        meat   4
## 4912                                                         say   4
## 4913                                                        jims   4
## 4914                                                    straight   4
## 4915                                                        tony   4
## 4916                                                      attack   4
## 4917                                                        want   4
## 4918                                                          im   4
## 4919                                                       price   4
## 4920                                                        miss   4
## 4921                                                        good   4
## 4922                                                    together   4
## 4923                                                        also   4
## 4924                                                        town   4
## 4925                                                          do   4
## 4926                                                         get   4
## 4927                                                       think   4
## 4928                                                        good   4
## 4929                                                    attitude   4
## 4930                                                        food   4
## 4931                                                       place   4
## 4932                                                     service   4
## 4933                                                        like   4
## 4934                                                    sandwich   4
## 4935                                                        room   4
## 4936                                                         one   4
## 4937                                                       think   4
## 4938                                                        want   4
## 4939                                                cheesesteaks   4
## 4940                                                        hype   4
## 4941                                                        wait   4
## 4942                                                        cold   4
## 4943                                                         eat   4
## 4944                                                      prefer   4
## 4945                                                        tell   4
## 4946                                                         try   4
## 4947                                                        sign   4
## 4948                                                         man   4
## 4949                                                         eat   4
## 4950                                                         get   4
## 4951                                                        make   4
## 4952                                                      assume   4
## 4953                                                      cheese   4
## 4954                                                   embarrass   4
## 4955                                                         get   4
## 4956                                                        huge   4
## 4957                                                         pat   4
## 4958                                                philadelphia   4
## 4959                                                         sad   4
## 4960                                                    surprise   4
## 4961                                                        tell   4
## 4962                                                       genos   4
## 4963                                                       think   4
## 4964                                                 cheesesteak   4
## 4965                                                       genos   4
## 4966                                                         get   4
## 4967                                                       place   4
## 4968                                                       south   4
## 4969                                                       great   4
## 4970                                                        beef   4
## 4971                                                       bread   4
## 4972                                                      hoagie   4
## 4973                                                 cheesesteak   4
## 4974                                                  experience   4
## 4975                                                       genos   4
## 4976                                                       learn   4
## 4977                                                        live   4
## 4978                                                        many   4
## 4979                                                        much   4
## 4980                                                       vento   4
## 4981                                                      philly   4
## 4982                                                 cheesesteak   4
## 4983                                                        drip   4
## 4984                                                      greasy   4
## 4985                                                         big   4
## 4986                                                       bread   4
## 4987                                                        cant   4
## 4988                                                        cook   4
## 4989                                                     couldnt   4
## 4990                                                   downright   4
## 4991                                                      expect   4
## 4992                                                       focus   4
## 4993                                                      happen   4
## 4994                                                        kind   4
## 4995                                                        love   4
## 4996                                                        move   4
## 4997                                                        need   4
## 4998                                                         pay   4
## 4999                                                         put   4
## 5000                                                    remember   4
## 5001                                                       spend   4
## 5002                                                       stick   4
## 5003                                                        tell   4
## 5004                                                    terrible   4
## 5005                                                       visit   4
## 5006                                                        wish   4
## 5007                                                       write   4
## 5008                                                          go   4
## 5009                                                      people   4
## 5010                                                       short   4
## 5011                                                      simple   4
## 5012                                                         hot   4
## 5013                                                        line   4
## 5014                                                      philly   4
## 5015                                                        like   4
## 5016                                                        sock   4
## 5017                                                        hype   4
## 5018                                                        like   4
## 5019                                                        make   4
## 5020                                                        many   4
## 5021                                                      really   4
## 5022                                                       sound   4
## 5023                                                       wasnt   4
## 5024                                                     counter   4
## 5025                                                philadelphia   4
## 5026                                                        roll   4
## 5027                                                  impression   4
## 5028                                                      minute   4
## 5029                                                 enforcement   4
## 5030                                                     towards   4
## 5031                                                       speak   4
## 5032                                                         get   4
## 5033                                                         pat   4
## 5034                                                      people   4
## 5035                                                        face   4
## 5036                                                         put   4
## 5037                                                         one   4
## 5038                                                       south   4
## 5039                                                    assembly   4
## 5040                                                        beef   4
## 5041                                                        bite   4
## 5042                                                   cardboard   4
## 5043                                                        care   4
## 5044                                                       didnt   4
## 5045                                                      either   4
## 5046                                                       every   4
## 5047                                                       grill   4
## 5048                                                        jims   4
## 5049                                                        nice   4
## 5050                                                        okay   4
## 5051                                                     plastic   4
## 5052                                                        roll   4
## 5053                                                      rubber   4
## 5054                                                         see   4
## 5055                                                         sit   4
## 5056                                                       solid   4
## 5057                                                        spot   4
## 5058                                                        tony   4
## 5059                                                        wait   4
## 5060                                                       wasnt   4
## 5061                                                       water   4
## 5062                                                        seat   4
## 5063                                                        also   4
## 5064                                                      either   4
## 5065                                                        give   4
## 5066                                                        look   4
## 5067                                                         min   4
## 5068                                                      pretty   4
## 5069                                                     tourist   4
## 5070                                                         try   4
## 5071                                                         way   4
## 5072                                                        make   4
## 5073                                                        much   4
## 5074                                                      philly   4
## 5075                                                        star   4
## 5076                                                neighborhood   4
## 5077                                                  reputation   4
## 5078                                                       south   4
## 5079                                                        year   4
## 5080                                                         get   4
## 5081                                                        know   4
## 5082                                                       place   4
## 5083                                                        spot   4
## 5084                                                        will   4
## 5085                                                          do   4
## 5086                                                       drive   4
## 5087                                                        make   4
## 5088                                                         one   4
## 5089                                                       shoot   4
## 5090                                                       story   4
## 5091                                                   authentic   4
## 5092                                                    customer   4
## 5093                                                        much   4
## 5094                                                         one   4
## 5095                                                       photo   4
## 5096                                                        star   4
## 5097                                                     tourist   4
## 5098                                                        just   4
## 5099                                                       price   4
## 5100                                                        rate   4
## 5101                                                         fan   4
## 5102                                                      steves   4
## 5103                                                      dinner   4
## 5104                                                        time   4
## 5105                                                  difference   4
## 5106                                                      reason   4
## 5107                                                        bite   4
## 5108                                                       bread   4
## 5109                                                cheesesteaks   4
## 5110                                                      famous   4
## 5111                                                   flavorful   4
## 5112                                                        food   4
## 5113                                                       happy   4
## 5114                                                        look   4
## 5115                                                        mind   4
## 5116                                                      people   4
## 5117                                                     perfect   4
## 5118                                                     special   4
## 5119                                                        trek   4
## 5120                                                          us   4
## 5121                                                       whole   4
## 5122                                                       onion   4
## 5123                                                      review   4
## 5124                                                       steak   4
## 5125                                                        even   4
## 5126                                                        make   4
## 5127                                                         try   4
## 5128                                                        even   4
## 5129                                                          go   4
## 5130                                                      little   4
## 5131                                                        next   4
## 5132                                                         one   4
## 5133                                                         try   4
## 5134                                                         get   4
## 5135                                                          go   4
## 5136                                                         can   4
## 5137                                                          do   4
## 5138                                                         dry   4
## 5139                                                     instead   4
## 5140                                                       kinda   4
## 5141                                                        okay   4
## 5142                                                       ratio   4
## 5143                                                        soft   4
## 5144                                                       stale   4
## 5145                                                     texture   4
## 5146                                                       think   4
## 5147                                                     veggies   4
## 5148                                                        whiz   4
## 5149                                                 cheesesteak   4
## 5150                                                cheesesteaks   4
## 5151                                                       steak   4
## 5152                                                         way   4
## 5153                                                      street   4
## 5154                                                       genos   4
## 5155                                                   provolone   4
## 5156                                                       genos   4
## 5157                                                          go   4
## 5158                                                       steak   4
## 5159                                                         can   4
## 5160                                                         get   4
## 5161                                                        good   4
## 5162                                                        hand   4
## 5163                                                        will   4
## 5164                                                       bread   4
## 5165                                                        next   4
## 5166                                                philadelphia   4
## 5167                                                       quick   4
## 5168                                                      desire   4
## 5169                                                  difference   4
## 5170                                                      grease   4
## 5171                                                      prefer   4
## 5172                                                    sandwich   4
## 5173                                                       short   4
## 5174                                                        meat   4
## 5175                                                       admit   4
## 5176                                                        good   4
## 5177                                                      philly   4
## 5178                                                         see   4
## 5179                                                      philly   4
## 5180                                                        know   4
## 5181                                                       order   4
## 5182                                                        salt   4
## 5183                                                         say   4
## 5184                                                      season   4
## 5185                                                        take   4
## 5186                                                        star   4
## 5187                                                        good   4
## 5188                                                      travel   4
## 5189                                                    actually   4
## 5190                                                        good   4
## 5191                                                        hear   4
## 5192                                                        make   4
## 5193                                                      return   4
## 5194                                                 cheesesteak   4
## 5195                                                         big   4
## 5196                                                         day   4
## 5197                                                         pat   4
## 5198                                                      people   4
## 5199                                                       place   4
## 5200                                                       steak   4
## 5201                                                       thing   4
## 5202                                                       genos   4
## 5203                                                       place   4
## 5204                                                          us   4
## 5205                                                        cash   4
## 5206                                                     compare   4
## 5207                                                     tourist   4
## 5208                                                          do   4
## 5209                                                         see   4
## 5210                                                        want   4
## 5211                                                      daniel   4
## 5212                                                        also   4
## 5213                                                       bread   4
## 5214                                                  definitely   4
## 5215                                                       genos   4
## 5216                                                        like   4
## 5217                                                       order   4
## 5218                                                       price   4
## 5219                                                        also   4
## 5220                                                        cant   4
## 5221                                                        else   4
## 5222                                                         end   4
## 5223                                               establishment   4
## 5224                                                       great   4
## 5225                                                        know   4
## 5226                                                        make   4
## 5227                                                         may   4
## 5228                                                       onion   4
## 5229                                                        open   4
## 5230                                                    original   4
## 5231                                                       point   4
## 5232                                                       right   4
## 5233                                                        side   4
## 5234                                                        size   4
## 5235                                                       south   4
## 5236                                                       think   4
## 5237                                                         top   4
## 5238                                                          us   4
## 5239                                                         can   4
## 5240                                                       cheez   4
## 5241                                                       great   4
## 5242                                                         hot   4
## 5243                                                       large   4
## 5244                                                        love   4
## 5245                                                     nothing   4
## 5246                                                     perfect   4
## 5247                                                        seem   4
## 5248                                                 undercooked   4
## 5249                                                       wasnt   4
## 5250                                                         wit   4
## 5251                                                        good   4
## 5252                                                       place   4
## 5253                                                       still   4
## 5254                                                       genos   4
## 5255                                                    anything   4
## 5256                                                       didnt   4
## 5257                                                         end   4
## 5258                                                        even   4
## 5259                                                       exact   4
## 5260                                                    language   4
## 5261                                                        make   4
## 5262                                                    protocol   4
## 5263                                                        seem   4
## 5264                                                        soda   4
## 5265                                                    standard   4
## 5266                                                         sub   4
## 5267                                                         way   4
## 5268                                                         try   4
## 5269                                                       table   4
## 5270                                                         can   4
## 5271                                                         eat   4
## 5272                                                       genos   4
## 5273                                                       order   4
## 5274                                                         bad   4
## 5275                                                        okay   4
## 5276                                                       steak   4
## 5277                                                       worth   4
## 5278                                                      cheese   4
## 5279                                                  overpriced   4
## 5280                                                      around   4
## 5281                                                         car   4
## 5282                                                        hard   4
## 5283                                                    horrible   4
## 5284                                                   nightmare   4
## 5285                                                       rough   4
## 5286                                                      philly   4
## 5287                                                      review   4
## 5288                                                     accross   4
## 5289                                                    actually   4
## 5290                                                      around   4
## 5291                                                        back   4
## 5292                                                   challenge   4
## 5293                                                     couldnt   4
## 5294                                                    directly   4
## 5295                                                         end   4
## 5296                                                       enjoy   4
## 5297                                                        ever   4
## 5298                                                    everyone   4
## 5299                                                      famous   4
## 5300                                                         fan   4
## 5301                                                         fun   4
## 5302                                                          id   4
## 5303                                                        kind   4
## 5304                                                        last   4
## 5305                                                   literally   4
## 5306                                                       maybe   4
## 5307                                                        okay   4
## 5308                                                        plus   4
## 5309                                                    probably   4
## 5310                                                        rude   4
## 5311                                                     similar   4
## 5312                                                        tell   4
## 5313                                                      versus   4
## 5314                                                       visit   4
## 5315                                                        walk   4
## 5316                                                      police   4
## 5317                                                       genos   4
## 5318                                                       place   4
## 5319                                                        buck   4
## 5320                                                       drink   4
## 5321                                                        also   4
## 5322                                                      around   4
## 5323                                                         can   4
## 5324                                                       enjoy   4
## 5325                                                      prefer   4
## 5326                                                       serve   4
## 5327                                                       still   4
## 5328                                                        talk   4
## 5329                                                        town   4
## 5330                                                       watch   4
## 5331                                                         can   4
## 5332                                                     ketchup   4
## 5333                                                      amount   4
## 5334                                                     english   4
## 5335                                                        meat   4
## 5336                                                        cook   4
## 5337                                                          go   4
## 5338                                                    favorite   4
## 5339                                                          do   4
## 5340                                                      prefer   4
## 5341                                                        food   4
## 5342                                                        good   4
## 5343                                                 institution   4
## 5344                                                        many   4
## 5345                                                      native   4
## 5346                                                         one   4
## 5347                                                      police   4
## 5348                                                     tourist   4
## 5349                                                        want   4
## 5350                                                     weekend   4
## 5351                                                         ask   4
## 5352                                                         bad   4
## 5353                                                  definitely   4
## 5354                                                        feel   4
## 5355                                                      friend   4
## 5356                                                        line   4
## 5357                                                       maybe   4
## 5358                                                     nothing   4
## 5359                                                        park   4
## 5360                                                   recommend   4
## 5361                                                    resident   4
## 5362                                                    standard   4
## 5363                                                      street   4
## 5364                                                         sub   4
## 5365                                                        tell   4
## 5366                                                       thing   4
## 5367                                                        time   4
## 5368                                                   tradition   4
## 5369                                                       wasnt   4
## 5370                                                       genos   4
## 5371                                                      pepper   4
## 5372                                                        like   4
## 5373                                                        meat   4
## 5374                                                      anyone   4
## 5375                                                        area   4
## 5376                                                        beat   4
## 5377                                                      bright   4
## 5378                                                      choose   4
## 5379                                                       close   4
## 5380                                                     disgust   4
## 5381                                                      either   4
## 5382                                                        feel   4
## 5383                                                     however   4
## 5384                                                          id   4
## 5385                                                          im   4
## 5386                                                     instead   4
## 5387                                                        list   4
## 5388                                                        many   4
## 5389                                                        next   4
## 5390                                                        okay   4
## 5391                                                     popular   4
## 5392                                                         put   4
## 5393                                                      review   4
## 5394                                                    sandwich   4
## 5395                                                     service   4
## 5396                                                       south   4
## 5397                                                       staff   4
## 5398                                                        stop   4
## 5399                                                     survive   4
## 5400                                                    terrible   4
## 5401                                                       think   4
## 5402                                                          tv   4
## 5403                                                         two   4
## 5404                                                  everywhere   4
## 5405                                                    surprise   4
## 5406                                                      please   4
## 5407                                                      friday   4
## 5408                                                       genos   4
## 5409                                                        fire   4
## 5410                                                     quality   4
## 5411                                                     service   4
## 5412                                                 cheesesteak   4
## 5413                                                 cheesesteak   4
## 5414                                                        meat   4
## 5415                                                        size   4
## 5416                                                         say   4
## 5417                                                 cheesesteak   4
## 5418                                                        jims   4
## 5419                                                         way   4
## 5420                                                       genos   4
## 5421                                                       order   4
## 5422                                                       stand   4
## 5423                                                        wait   4
## 5424                                                       basic   4
## 5425                                                   expensive   4
## 5426                                                        sure   4
## 5427                                                      review   4
## 5428                                                        high   4
## 5429                                                         pat   4
## 5430                                                         pay   4
## 5431                                                         con   4
## 5432                                                        come   4
## 5433                                                         try   4
## 5434                                                        food   4
## 5435                                                        melt   4
## 5436                                                         pat   4
## 5437                                                    bathroom   4
## 5438                                                      effort   4
## 5439                                                      enough   4
## 5440                                                         hot   4
## 5441                                                         lot   4
## 5442                                                       onion   4
## 5443                                                         top   4
## 5444                                                         way   4
## 5445                                                      little   4
## 5446                                                        good   4
## 5447                                                         eat   4
## 5448                                                        make   4
## 5449                                                        chop   4
## 5450                                                         get   4
## 5451                                                       shred   4
## 5452                                                        spin   4
## 5453                                                       place   4
## 5454                                                       genos   4
## 5455                                                       thank   4
## 5456                                                         eat   4
## 5457                                                cheesesteaks   4
## 5458                                              philadelphians   4
## 5459                                                        cool   4
## 5460                                                          go   4
## 5461                                                     impress   4
## 5462                                                        meat   4
## 5463                                                       place   4
## 5464                                                       quick   4
## 5465                                                   recommend   4
## 5466                                                     special   4
## 5467                                                        spin   4
## 5468                                                    touristy   4
## 5469                                                        come   4
## 5470                                                        come   4
## 5471                                                         pat   4
## 5472                                                       visit   4
## 5473                                                       cream   4
## 5474                                                      pepper   4
## 5475                                                philadelphia   4
## 5476                                                       right   4
## 5477                                                        area   4
## 5478                                                    sandwich   4
## 5479                                                          go   4
## 5480                                                          do   4
## 5481                                                       first   4
## 5482                                                       never   4
## 5483                                                      really   4
## 5484                                                       steak   4
## 5485                                                      window   4
## 5486                                                      across   4
## 5487                                                      statue   4
## 5488                                                        bite   4
## 5489                                                         eye   4
## 5490                                                     perfect   4
## 5491                                                        soft   4
## 5492                                                        beer   4
## 5493                                                     cashier   4
## 5494                                                        food   4
## 5495                                                        make   4
## 5496                                                    business   4
## 5497                                                      philly   4
## 5498                                                    sandwich   4
## 5499                                                        side   4
## 5500                                                           2   4
## 5501                                                       amaze   4
## 5502                                                     average   4
## 5503                                                   delicious   4
## 5504                                                        feel   4
## 5505                                                       fresh   4
## 5506                                                    horrible   4
## 5507                                                          im   4
## 5508                                                        look   4
## 5509                                                        many   4
## 5510                                                        nice   4
## 5511                                                       price   4
## 5512                                                         say   4
## 5513                                                        seem   4
## 5514                                                        side   4
## 5515                                                       tasty   4
## 5516                                                    together   4
## 5517                                                     tourist   4
## 5518                                                        want   4
## 5519                                                     without   4
## 5520                                                      really   4
## 5521                                                       taste   4
## 5522                                                        will   4
## 5523                                                       onion   4
## 5524                                                        cash   4
## 5525                                                        come   4
## 5526                                                       first   4
## 5527                                                       great   4
## 5528                                                         hey   4
## 5529                                                        just   4
## 5530                                                         lot   4
## 5531                                                        okay   4
## 5532                                                      prefer   4
## 5533                                                    sandwich   4
## 5534                                                     service   4
## 5535                                                       speak   4
## 5536                                                       steak   4
## 5537                                                       wasnt   4
## 5538                                                       cover   4
## 5539                                                         get   4
## 5540                                                       order   4
## 5541                                                      cheese   4
## 5542                                                 cheesesteak   4
## 5543                                                       taste   4
## 5544                                                       think   4
## 5545                                                       clean   4
## 5546                                                      flavor   4
## 5547                                                       fresh   4
## 5548                                                         get   4
## 5549                                                      pretty   4
## 5550                                                        good   4
## 5551                                                          im   4
## 5552                                                        food   4
## 5553                                                       steak   4
## 5554                                                      people   4
## 5555                                                       place   4
## 5556                                                       staff   4
## 5557                                                       wasnt   4
## 5558                                                      people   4
## 5559                                                     compare   4
## 5560                                                         one   4
## 5561                                                   provolone   4
## 5562                                                        meat   4
## 5563                                                      across   4
## 5564                                                         get   4
## 5565                                                      philly   4
## 5566                                                        time   4
## 5567                                                          go   4
## 5568                                                      street   4
## 5569                                                          do   4
## 5570                                                      friend   4
## 5571                                                        just   4
## 5572                                                        line   4
## 5573                                                         try   4
## 5574                                                       tooth   4
## 5575                                                      around   4
## 5576                                                       grill   4
## 5577                                                       right   4
## 5578                                                    sandwich   4
## 5579                                                        meat   4
## 5580                                                        meat   4
## 5581                                                       genos   4
## 5582                                                       onion   4
## 5583                                                      little   4
## 5584                                                         pat   4
## 5585                                                     portion   4
## 5586                                                      enough   4
## 5587                                                       genos   4
## 5588                                                       onion   4
## 5589                                                       steak   4
## 5590                                                       bread   4
## 5591                                                   different   4
## 5592                                                        good   4
## 5593                                                       wrong   4
## 5594                                                        good   4
## 5595                                                         guy   4
## 5596                                                       thing   4
## 5597                                                    language   4
## 5598                                                      little   4
## 5599                                                         two   4
## 5600                                                       event   4
## 5601                                                         get   4
## 5602                                                        just   4
## 5603                                                        isnt   4
## 5604                                                        nice   4
## 5605                                                        long   4
## 5606                                                       cause   4
## 5607                                                          go   4
## 5608                                                          im   4
## 5609                                                       order   4
## 5610                                                       place   4
## 5611                                                        star   4
## 5612                                                       speak   4
## 5613                                                        area   4
## 5614                                                      around   4
## 5615                                                         ask   4
## 5616                                                     awesome   4
## 5617                                                      barely   4
## 5618                                                         buy   4
## 5619                                                      decent   4
## 5620                                              disappointment   4
## 5621                                                       doubt   4
## 5622                                                       drink   4
## 5623                                               establishment   4
## 5624                                                   extremely   4
## 5625                                                        find   4
## 5626                                                       fresh   4
## 5627                                                        give   4
## 5628                                                       grill   4
## 5629                                                        huge   4
## 5630                                                        know   4
## 5631                                                        late   4
## 5632                                                        line   4
## 5633                                                        next   4
## 5634                                                     nothing   4
## 5635                                                        part   4
## 5636                                                       ready   4
## 5637                                                  restaurant   4
## 5638                                                   sandwhich   4
## 5639                                                     service   4
## 5640                                                       small   4
## 5641                                                        soft   4
## 5642                                                        stop   4
## 5643                                                       super   4
## 5644                                                        tell   4
## 5645                                                         use   4
## 5646                                                     usually   4
## 5647                                                          vs   4
## 5648                                                       whole   4
## 5649                                                      window   4
## 5650                                                         say   4
## 5651                                                        come   4
## 5652                                                         eat   4
## 5653                                                         fun   4
## 5654                                                         get   4
## 5655                                                        glad   4
## 5656                                                   recommend   4
## 5657                                                       think   4
## 5658                                                       wasnt   4
## 5659                                                       check   4
## 5660                                                 cheesesteak   4
## 5661                                                       place   4
## 5662                                                       short   4
## 5663                                                         can   4
## 5664                                                         pat   4
## 5665                                                        also   4
## 5666                                                        even   4
## 5667                                                        food   4
## 5668                                                        like   4
## 5669                                                       order   4
## 5670                                                       place   4
## 5671                                                      really   4
## 5672                                                       rival   4
## 5673                                                       south   4
## 5674                                                         two   4
## 5675                                                         way   4
## 5676                                                       youre   4
## 5677                                                       steak   4
## 5678                                                        like   4
## 5679                                                        come   4
## 5680                                                        good   4
## 5681                                                        shop   4
## 5682                                                         bad   4
## 5683                                                          go   4
## 5684                                                     morning   4
## 5685                                                  disappoint   4
## 5686                                                      excite   4
## 5687                                                        spin   4
## 5688                                                       every   4
## 5689                                                         pat   4
## 5690                                                        also   4
## 5691                                                       bring   4
## 5692                                                        make   4
## 5693                                                       speak   4
## 5694                                                        take   4
## 5695                                                         use   4
## 5696                                                         see   4
## 5697                                                       drive   4
## 5698                                                      little   4
## 5699                                                      philly   4
## 5700                                                        road   4
## 5701                                                        time   4
## 5702                                                        like   4
## 5703                                                       amaze   4
## 5704                                                   authentic   4
## 5705                                                cheesesteaks   4
## 5706                                                       place   4
## 5707                                                        real   4
## 5708                                                      season   4
## 5709                                                       thing   4
## 5710                                                         way   4
## 5711                                                        wise   4
## 5712                                                        also   4
## 5713                                                         can   4
## 5714                                                       avoid   4
## 5715                                                     tourist   4
## 5716                                                        want   4
## 5717                                                        time   4
## 5718                                                        meat   4
## 5719                                                       onion   4
## 5720                                                       steak   4
## 5721                                                        late   4
## 5722                                                     teacher   4
## 5723                                                          do   4
## 5724                                                          go   4
## 5725                                                          im   4
## 5726                                                        like   4
## 5727                                                        part   4
## 5728                                                       place   4
## 5729                                                      pretty   4
## 5730                                                    probably   4
## 5731                                                       whole   4
## 5732                                                        good   4
## 5733                                                      really   4
## 5734                                                        good   4
## 5735                                                      pretty   4
## 5736                                                      racist   4
## 5737                                                      really   4
## 5738                                                       right   4
## 5739                                                      little   4
## 5740                                                         pat   4
## 5741                                                       didnt   4
## 5742                                                          do   4
## 5743                                                         eat   4
## 5744                                                      happen   4
## 5745                                                         ive   4
## 5746                                                        know   4
## 5747                                                      pretty   4
## 5748                                                         see   4
## 5749                                                         two   4
## 5750                                                      famous   4
## 5751                                                        like   4
## 5752                                                      little   4
## 5753                                                        need   4
## 5754                                                      theyre   4
## 5755                                                          do   4
## 5756                                                          go   4
## 5757                                                        good   4
## 5758                                                        know   4
## 5759                                                         pat   4
## 5760                                                      philly   4
## 5761                                                       place   4
## 5762                                                        good   4
## 5763                                                        hour   4
## 5764                                                        half   4
## 5765                                                     compare   4
## 5766                                                        give   4
## 5767                                                        last   4
## 5768                                                       leave   4
## 5769                                                       never   4
## 5770                                                philadelphia   4
## 5771                                                       since   4
## 5772                                                       spend   4
## 5773                                                        tell   4
## 5774                                                        town   4
## 5775                                                        walk   4
## 5776                                                      cheese   4
## 5777                                                        list   4
## 5778                                                   different   4
## 5779                                                       onion   4
## 5780                                                        spin   4
## 5781                                                       guide   4
## 5782                                                      philly   4
## 5783                                                 cheesesteak   4
## 5784                                                  experience   4
## 5785                                                       genos   4
## 5786                                                         get   4
## 5787                                                        good   4
## 5788                                                          im   4
## 5789                                                       visit   4
## 5790                                                        spot   4
## 5791                                                        come   4
## 5792                                                      decide   4
## 5793                                                       genos   4
## 5794                                                          go   4
## 5795                                                       guest   4
## 5796                                                         try   4
## 5797                                                       visit   4
## 5798                                                       genos   4
## 5799                                                     nothing   4
## 5800                                                        back   4
## 5801                                                philadelphia   4
## 5802                                               philadelphian   4
## 5803                                                       south   4
## 5804                                                dalessandros   4
## 5805                                                       judge   4
## 5806                                                        like   4
## 5807                                                        spot   4
## 5808                                                       three   4
## 5809                                                        time   4
## 5810                                                     tourist   4
## 5811                                                        true   4
## 5812                                                        whiz   4
## 5813                                                      around   4
## 5814                                                   different   4
## 5815                                                      minute   4
## 5816                                                      people   4
## 5817                                                      philly   4
## 5818                                                      reason   4
## 5819                                                       rival   4
## 5820                                                       thing   4
## 5821                                                       three   4
## 5822                                                        year   4
## 5823                                                     tourist   4
## 5824                                                        good   4
## 5825                                                       genos   4
## 5826                                                      flavor   4
## 5827                                                       taste   4
## 5828                                                        like   4
## 5829                                                        meat   4
## 5830                                                        hand   4
## 5831                                                       money   4
## 5832                                                         buy   4
## 5833                                                         can   4
## 5834                                                         eat   4
## 5835                                                       favor   4
## 5836                                                       genos   4
## 5837                                                         get   4
## 5838                                                        just   4
## 5839                                                        know   4
## 5840                                                       order   4
## 5841                                                       wrong   4
## 5842                                                        bite   4
## 5843                                                       great   4
## 5844                                                        live   4
## 5845                                                          do   4
## 5846                                                       light   4
## 5847                                                       genos   4
## 5848                                                       versa   4
## 5849                                                 cheesesteak   4
## 5850                                                         get   4
## 5851                                                        good   4
## 5852                                                     tourist   4
## 5853                                                        will   4
## 5854                                                       genos   4
## 5855                                                      little   4
## 5856                                                        time   4
## 5857                                                        back   4
## 5858                                                         one   4
## 5859                                                       order   4
## 5860                                                   authentic   4
## 5861                                                       drink   4
## 5862                                                       genos   4
## 5863                                                      greasy   4
## 5864                                                        keep   4
## 5865                                                       money   4
## 5866                                                         one   4
## 5867                                                      philly   4
## 5868                                                      really   4
## 5869                                                        wait   4
## 5870                                                        meat   4
## 5871                                                        soft   4
## 5872                                                         cut   4
## 5873                                                      expect   4
## 5874                                                    favorite   4
## 5875                                                    horrible   4
## 5876                                                        line   4
## 5877                                                         lot   4
## 5878                                                     problem   4
## 5879                                                       soggy   4
## 5880                                                       think   4
## 5881                                                         wow   4
## 5882                                                       paper   4
## 5883                                                       bread   4
## 5884                                                         can   4
## 5885                                                        home   4
## 5886                                                         pat   4
## 5887                                                       price   4
## 5888                                                    sandwich   4
## 5889                                                        take   4
## 5890                                                        trip   4
## 5891                                                        want   4
## 5892                                                        want   4
## 5893                                                        beef   4
## 5894                                                      castle   4
## 5895                                                        roll   4
## 5896                                                    actually   4
## 5897                                                         bun   4
## 5898                                                         can   4
## 5899                                                 cheesesteak   4
## 5900                                                         get   4
## 5901                                                        give   4
## 5902                                                          im   4
## 5903                                                     instead   4
## 5904                                                      little   4
## 5905                                                        melt   4
## 5906                                                       since   4
## 5907                                                       thats   4
## 5908                                                         top   4
## 5909                                                        whiz   4
## 5910                                                      witout   4
## 5911                                                      cheese   4
## 5912                                                      cheese   4
## 5913                                                       order   4
## 5914                                                     process   4
## 5915                                                        good   4
## 5916                                                        take   4
## 5917                                                        ever   4
## 5918                                                        keep   4
## 5919                                                      likely   4
## 5920                                                        line   4
## 5921                                                        need   4
## 5922                                                         pay   4
## 5923                                                     support   4
## 5924                                                       genos   4
## 5925                                                      cheese   4
## 5926                                                          do   4
## 5927                                                        give   4
## 5928                                                          go   4
## 5929                                                        read   4
## 5930                                                        take   4
## 5931                                                        tell   4
## 5932                                                      theres   4
## 5933                                                        will   4
## 5934                                                 cheesesteak   4
## 5935                                                         one   4
## 5936                                                         pat   4
## 5937                                                       block   4
## 5938                                                      second   4
## 5939                                                       doubt   4
## 5940                                                        even   4
## 5941                                                         get   4
## 5942                                                        stop   4
## 5943                                                       visit   4
## 5944                                                       onion   4
## 5945                                                       bread   4
## 5946                                                        meat   4
## 5947                                                      really   4
## 5948                                                      people   4
## 5949                                                        come   4
## 5950                                                         get   4
## 5951                                                        long   4
## 5952                                                        make   4
## 5953                                                        time   4
## 5954                                                         eat   4
## 5955                                                       genos   4
## 5956                                                       place   4
## 5957                                                     tourist   4
## 5958                                                       still   4
## 5959                                                        city   4
## 5960                                                      expect   4
## 5961                                                        good   4
## 5962                                                        know   4
## 5963                                                     america   4
## 5964                                                 cheesesteak   4
## 5965                                                        come   4
## 5966                                                         eat   4
## 5967                                                       genos   4
## 5968                                                         get   4
## 5969                                                        just   4
## 5970                                                        plan   4
## 5971                                                      really   4
## 5972                                                       south   4
## 5973                                                     suppose   4
## 5974                                                       gotta   4
## 5975                                                        meat   3
## 5976                                                         eat   3
## 5977                                                         say   3
## 5978                                                       taste   3
## 5979                                                         try   3
## 5980                                                        card   3
## 5981                                                         one   3
## 5982                                                      cheese   3
## 5983                                                       taste   3
## 5984                                                       enjoy   3
## 5985                                                    friendly   3
## 5986                                                        give   3
## 5987                                                        melt   3
## 5988                                                      philly   3
## 5989                                                         say   3
## 5990                                                    anything   3
## 5991                                                  experience   3
## 5992                                                      grease   3
## 5993                                                       grill   3
## 5994                                                     ketchup   3
## 5995                                                         lot   3
## 5996                                                      pepper   3
## 5997                                                      ribeye   3
## 5998                                                      friend   3
## 5999                                                        want   3
## 6000                                                       bread   3
## 6001                                                        good   3
## 6002                                                         eat   3
## 6003                                                         eat   3
## 6004                                                       never   3
## 6005                                                         non   3
## 6006                                                       clean   3
## 6007                                                         eat   3
## 6008                                                        know   3
## 6009                                                        make   3
## 6010                                                         say   3
## 6011                                                        good   3
## 6012                                                         ask   3
## 6013                                                       check   3
## 6014                                                       didnt   3
## 6015                                                       first   3
## 6016                                                       genos   3
## 6017                                                        hear   3
## 6018                                                        help   3
## 6019                                                        know   3
## 6020                                                         lot   3
## 6021                                                         one   3
## 6022                                                      prefer   3
## 6023                                                      really   3
## 6024                                                   something   3
## 6025                                                      theres   3
## 6026                                                     tourist   3
## 6027                                                       wasnt   3
## 6028                                                       genos   3
## 6029                                                        cook   3
## 6030                                                        like   3
## 6031                                                       order   3
## 6032                                                      prefer   3
## 6033                                                         see   3
## 6034                                                        stop   3
## 6035                                                       taste   3
## 6036                                                         job   3
## 6037                                                       dream   3
## 6038                                                         fry   3
## 6039                                                     instead   3
## 6040                                                        like   3
## 6041                                                       order   3
## 6042                                                       speak   3
## 6043                                                     without   3
## 6044                                                       onion   3
## 6045                                                      couple   3
## 6046                                                        good   3
## 6047                                                        sign   3
## 6048                                                       thing   3
## 6049                                                    question   3
## 6050                                                      doesnt   3
## 6051                                                        else   3
## 6052                                                        ever   3
## 6053                                                        want   3
## 6054                                                         bad   3
## 6055                                                       genos   3
## 6056                                                       think   3
## 6057                                                          go   3
## 6058                                                        near   3
## 6059                                                 cheesesteak   3
## 6060                                                        know   3
## 6061                                                        call   3
## 6062                                                         can   3
## 6063                                                       genos   3
## 6064                                                         get   3
## 6065                                                        just   3
## 6066                                                         pat   3
## 6067                                                        seem   3
## 6068                                                        stop   3
## 6069                                                       worth   3
## 6070                                                        year   3
## 6071                                                        rude   3
## 6072                                                       worth   3
## 6073                                                        even   3
## 6074                                                        long   3
## 6075                                                      minute   3
## 6076                                                neighborhood   3
## 6077                                                         try   3
## 6078                                                philadelphia   3
## 6079                                                    american   3
## 6080                                                      around   3
## 6081                                                         bag   3
## 6082                                                      cheese   3
## 6083                                                         cut   3
## 6084                                                       drink   3
## 6085                                                       extra   3
## 6086                                                         fry   3
## 6087                                                         get   3
## 6088                                                         hot   3
## 6089                                                    sandwich   3
## 6090                                                     someone   3
## 6091                                                        tell   3
## 6092                                                          us   3
## 6093                                                       steak   3
## 6094                                                         fee   3
## 6095                                                       genos   3
## 6096                                                         can   3
## 6097                                                         get   3
## 6098                                                       place   3
## 6099                                                       staff   3
## 6100                                                      people   3
## 6101                                                     tourist   3
## 6102                                                       steak   3
## 6103                                                       steak   3
## 6104                                                         get   3
## 6105                                                          go   3
## 6106                                                      friend   3
## 6107                                                        just   3
## 6108                                                         pat   3
## 6109                                                       bread   3
## 6110                                                      cheese   3
## 6111                                                 cheesesteak   3
## 6112                                                  experience   3
## 6113                                                       place   3
## 6114                                                       taste   3
## 6115                                                     another   3
## 6116                                                        cali   3
## 6117                                                cheesesteaks   3
## 6118                                                     country   3
## 6119                                                       didnt   3
## 6120                                                         eat   3
## 6121                                                      either   3
## 6122                                                        even   3
## 6123                                                        head   3
## 6124                                                       hotel   3
## 6125                                                          im   3
## 6126                                                        just   3
## 6127                                                         let   3
## 6128                                                   recommend   3
## 6129                                                        sure   3
## 6130                                                        time   3
## 6131                                                      unless   3
## 6132                                                         way   3
## 6133                                                      window   3
## 6134                                                        cant   3
## 6135                                                        give   3
## 6136                                                          go   3
## 6137                                                        like   3
## 6138                                                     quality   3
## 6139                                                         say   3
## 6140                                                   seriously   3
## 6141                                                         yes   3
## 6142                                                        buck   3
## 6143                                                        cook   3
## 6144                                                         eat   3
## 6145                                                        meat   3
## 6146                                                   provolone   3
## 6147                                                       order   3
## 6148                                                      review   3
## 6149                                                 cheesesteak   3
## 6150                                                      philly   3
## 6151                                                 cheesesteak   3
## 6152                                                        area   3
## 6153                                                         pat   3
## 6154                                                         day   3
## 6155                                                        spin   3
## 6156                                                          us   3
## 6157                                                         can   3
## 6158                                                       genos   3
## 6159                                                          im   3
## 6160                                                         pat   3
## 6161                                                         eat   3
## 6162                                                     outside   3
## 6163                                              disappointment   3
## 6164                                                       genos   3
## 6165                                                       light   3
## 6166                                                        name   3
## 6167                                                        neon   3
## 6168                                                         pat   3
## 6169                                                        time   3
## 6170                                                      racist   3
## 6171                                                   different   3
## 6172                                                  disappoint   3
## 6173                                                    friendly   3
## 6174                                                          go   3
## 6175                                                        hard   3
## 6176                                                  overpriced   3
## 6177                                                        slow   3
## 6178                                                       stale   3
## 6179                                                        thin   3
## 6180                                                    touristy   3
## 6181                                                        wait   3
## 6182                                                         add   3
## 6183                                                          do   3
## 6184                                                        food   3
## 6185                                                        good   3
## 6186                                                        roll   3
## 6187                                                     service   3
## 6188                                                       tough   3
## 6189                                                      racist   3
## 6190                                                        good   3
## 6191                                                          go   3
## 6192                                                      collar   3
## 6193                                                        even   3
## 6194                                                    actually   3
## 6195                                                       awful   3
## 6196                                                         can   3
## 6197                                                        come   3
## 6198                                                       didnt   3
## 6199                                                         fry   3
## 6200                                                         get   3
## 6201                                                        give   3
## 6202                                                        isnt   3
## 6203                                                        kind   3
## 6204                                                       kinda   3
## 6205                                                        less   3
## 6206                                                         low   3
## 6207                                                     nothing   3
## 6208                                                         old   3
## 6209                                                       order   3
## 6210                                                         put   3
## 6211                                                     rubbery   3
## 6212                                                        suck   3
## 6213                                                       super   3
## 6214                                                         way   3
## 6215                                                       night   3
## 6216                                                      people   3
## 6217                                                      philly   3
## 6218                                                        rabe   3
## 6219                                                      decide   3
## 6220                                                        good   3
## 6221                                                         get   3
## 6222                                                        cold   3
## 6223                                                        good   3
## 6224                                                        meat   3
## 6225                                                       steak   3
## 6226                                                         hot   3
## 6227                                                         get   3
## 6228                                                    practice   3
## 6229                                                     support   3
## 6230                                                        trip   3
## 6231                                                      around   3
## 6232                                                        time   3
## 6233                                                      cheese   3
## 6234                                                        food   3
## 6235                                                      driver   3
## 6236                                                         fry   3
## 6237                                                       argue   3
## 6238                                                      barely   3
## 6239                                                        call   3
## 6240                                                 cheesesteak   3
## 6241                                                  definitely   3
## 6242                                                       enjoy   3
## 6243                                                      handle   3
## 6244                                                     imagine   3
## 6245                                                        just   3
## 6246                                                        less   3
## 6247                                                         now   3
## 6248                                                         pay   3
## 6249                                                       place   3
## 6250                                                         put   3
## 6251                                                        suck   3
## 6252                                                       think   3
## 6253                                                     compare   3
## 6254                                                      figure   3
## 6255                                                        help   3
## 6256                                                       judge   3
## 6257                                                    parallel   3
## 6258                                                  understand   3
## 6259                                                        park   3
## 6260                                                      accept   3
## 6261                                                    customer   3
## 6262                                                        cash   3
## 6263                                                        atms   3
## 6264                                                      credit   3
## 6265                                                        hand   3
## 6266                                                        know   3
## 6267                                                     luckily   3
## 6268                                                         pay   3
## 6269                                                       place   3
## 6270                                                     prepare   3
## 6271                                                    sandwich   3
## 6272                                                        sign   3
## 6273                                                        want   3
## 6274                                                         get   3
## 6275                                                        dead   3
## 6276                                                       photo   3
## 6277                                                         pic   3
## 6278                                                       genos   3
## 6279                                                         pat   3
## 6280                                                    sandwich   3
## 6281                                                 cheesesteak   3
## 6282                                                        just   3
## 6283                                                        list   3
## 6284                                                       steak   3
## 6285                                                    actually   3
## 6286                                                         ask   3
## 6287                                                     awesome   3
## 6288                                                         bad   3
## 6289                                                      choice   3
## 6290                                                        cost   3
## 6291                                                        like   3
## 6292                                                      little   3
## 6293                                                        long   3
## 6294                                                         mix   3
## 6295                                                    mushroom   3
## 6296                                                        need   3
## 6297                                                      option   3
## 6298                                                       ratio   3
## 6299                                                     regular   3
## 6300                                                         say   3
## 6301                                                   slathered   3
## 6302                                                       slice   3
## 6303                                                       water   3
## 6304                                                         way   3
## 6305                                                    actually   3
## 6306                                                     another   3
## 6307                                                  california   3
## 6308                                                       crave   3
## 6309                                                     craving   3
## 6310                                                         fan   3
## 6311                                                        feel   3
## 6312                                                        home   3
## 6313                                                     however   3
## 6314                                                          id   3
## 6315                                                         ill   3
## 6316                                                       juicy   3
## 6317                                                        life   3
## 6318                                                        live   3
## 6319                                                    location   3
## 6320                                                         lot   3
## 6321                                                       lover   3
## 6322                                                        many   3
## 6323                                                        open   3
## 6324                                                    probably   3
## 6325                                                     quality   3
## 6326                                                       ready   3
## 6327                                                   recommend   3
## 6328                                                  restaurant   3
## 6329                                                       rival   3
## 6330                                                     rivalry   3
## 6331                                                       serve   3
## 6332                                                       slice   3
## 6333                                                        suck   3
## 6334                                                      though   3
## 6335                                                     tourist   3
## 6336                                                      unless   3
## 6337                                                        will   3
## 6338                                                      across   3
## 6339                                                     another   3
## 6340                                                      around   3
## 6341                                                        cold   3
## 6342                                                      course   3
## 6343                                                   delicious   3
## 6344                                                        find   3
## 6345                                                       first   3
## 6346                                                        life   3
## 6347                                                        look   3
## 6348                                                         now   3
## 6349                                                          ny   3
## 6350                                                    probably   3
## 6351                                                        suck   3
## 6352                                                        take   3
## 6353                                                         two   3
## 6354                                                        whiz   3
## 6355                                                    goodness   3
## 6356                                                         wiz   3
## 6357                                                        meat   3
## 6358                                                        bite   3
## 6359                                                       didnt   3
## 6360                                                        good   3
## 6361                                                        hard   3
## 6362                                                       onion   3
## 6363                                                     texture   3
## 6364                                                 cheesesteak   3
## 6365                                                     takeout   3
## 6366                                                      philly   3
## 6367                                                 cheesesteak   3
## 6368                                                         eat   3
## 6369                                                          go   3
## 6370                                                        good   3
## 6371                                                       place   3
## 6372                                                      enough   3
## 6373                                                        good   3
## 6374                                                       piece   3
## 6375                                                       steak   3
## 6376                                                    surround   3
## 6377                                                        know   3
## 6378                                                        meat   3
## 6379                                                       steak   3
## 6380                                                        want   3
## 6381                                                        fast   3
## 6382                                                        food   3
## 6383                                                     outside   3
## 6384                                                  restaurant   3
## 6385                                                       table   3
## 6386                                                      artery   3
## 6387                                                     product   3
## 6388                                                         can   3
## 6389                                                       chewy   3
## 6390                                                        cold   3
## 6391                                                         day   3
## 6392                                                       didnt   3
## 6393                                                      flavor   3
## 6394                                                         sit   3
## 6395                                                       stale   3
## 6396                                                           2   3
## 6397                                                         bad   3
## 6398                                                  california   3
## 6399                                                        city   3
## 6400                                                         fry   3
## 6401                                                          im   3
## 6402                                                        last   3
## 6403                                                        like   3
## 6404                                                        open   3
## 6405                                                      pretty   3
## 6406                                                     quickly   3
## 6407                                                      really   3
## 6408                                                       slice   3
## 6409                                                       south   3
## 6410                                                        time   3
## 6411                                                    together   3
## 6412                                                         top   3
## 6413                                                        upon   3
## 6414                                                          us   3
## 6415                                                       whole   3
## 6416                                                     without   3
## 6417                                                       steak   3
## 6418                                                         two   3
## 6419                                                         two   3
## 6420                                                     service   3
## 6421                                                       genos   3
## 6422                                                      honest   3
## 6423                                                       genos   3
## 6424                                                         get   3
## 6425                                                    sandwich   3
## 6426                                                      island   3
## 6427                                                         one   3
## 6428                                                          go   3
## 6429                                                        meat   3
## 6430                                                       genos   3
## 6431                                                      cheese   3
## 6432                                                        food   3
## 6433                                                       grill   3
## 6434                                                   perfectly   3
## 6435                                                  experience   3
## 6436                                                 firefighter   3
## 6437                                                        kill   3
## 6438                                                 cheesesteak   3
## 6439                                                        deli   3
## 6440                                                        buck   3
## 6441                                                        good   3
## 6442                                                        high   3
## 6443                                                       leave   3
## 6444                                                  understand   3
## 6445                                                        wait   3
## 6446                                                         get   3
## 6447                                                        make   3
## 6448                                                        tell   3
## 6449                                                        bite   3
## 6450                                                      minute   3
## 6451                                                       genos   3
## 6452                                                       taste   3
## 6453                                                         try   3
## 6454                                                        want   3
## 6455                                                    sandwich   3
## 6456                                                       serve   3
## 6457                                                    sandwich   3
## 6458                                                 cheesesteak   3
## 6459                                                        good   3
## 6460                                                     outside   3
## 6461                                                      cheese   3
## 6462                                                         fry   3
## 6463                                                         tap   3
## 6464                                                       water   3
## 6465                                                         can   3
## 6466                                                        good   3
## 6467                                                        like   3
## 6468                                                       never   3
## 6469                                                        will   3
## 6470                                                       genos   3
## 6471                                                        good   3
## 6472                                                    honestly   3
## 6473                                                        line   3
## 6474                                                         pat   3
## 6475                                                       still   3
## 6476                                                       visit   3
## 6477                                                        walk   3
## 6478                                                      decide   3
## 6479                                                      winter   3
## 6480                                                      cheese   3
## 6481                                                        good   3
## 6482                                                         ive   3
## 6483                                                        come   3
## 6484                                                        grab   3
## 6485                                                        like   3
## 6486                                                        make   3
## 6487                                                         pat   3
## 6488                                                       place   3
## 6489                                                         two   3
## 6490                                                          go   3
## 6491                                                         one   3
## 6492                                                       worth   3
## 6493                                                        back   3
## 6494                                                       didnt   3
## 6495                                                          do   3
## 6496                                                        hype   3
## 6497                                                        make   3
## 6498                                                       think   3
## 6499                                                         win   3
## 6500                                                  definitely   3
## 6501                                                         fry   3
## 6502                                                         get   3
## 6503                                                     however   3
## 6504                                                      philly   3
## 6505                                                    sandwich   3
## 6506                                                        time   3
## 6507                                                     america   3
## 6508                                                       place   3
## 6509                                                        good   3
## 6510                                                         one   3
## 6511                                                        hype   3
## 6512                                                        line   3
## 6513                                                       onion   3
## 6514                                                         cut   3
## 6515                                                         lot   3
## 6516                                                         put   3
## 6517                                                     realize   3
## 6518                                                       speak   3
## 6519                                                        take   3
## 6520                                                        hard   3
## 6521                                                        meat   3
## 6522                                                    sandwich   3
## 6523                                                 cheesesteak   3
## 6524                                                    language   3
## 6525                                                         one   3
## 6526                                                        spot   3
## 6527                                                        type   3
## 6528                                                         eat   3
## 6529                                                       table   3
## 6530                                                        come   3
## 6531                                                        food   3
## 6532                                                         get   3
## 6533                                                       maybe   3
## 6534                                                     service   3
## 6535                                                       steak   3
## 6536                                                       think   3
## 6537                                                     tourist   3
## 6538                                                         try   3
## 6539                                                        wait   3
## 6540                                                       wasnt   3
## 6541                                                        will   3
## 6542                                                        just   3
## 6543                                                      window   3
## 6544                                                       agree   3
## 6545                                                         cut   3
## 6546                                                        look   3
## 6547                                                        mean   3
## 6548                                                        mess   3
## 6549                                                        much   3
## 6550                                                       offer   3
## 6551                                                         one   3
## 6552                                                        play   3
## 6553                                                       serve   3
## 6554                                                        wait   3
## 6555                                                        work   3
## 6556                                                        come   3
## 6557                                                        look   3
## 6558                                                      matter   3
## 6559                                                      really   3
## 6560                                                       place   3
## 6561                                                           2   3
## 6562                                                        even   3
## 6563                                                        next   3
## 6564                                                       night   3
## 6565                                                         pay   3
## 6566                                                    sandwich   3
## 6567                                                         way   3
## 6568                                                       youre   3
## 6569                                                        city   3
## 6570                                                          dc   3
## 6571                                                       genos   3
## 6572                                                         get   3
## 6573                                                      jersey   3
## 6574                                                         new   3
## 6575                                                          ny   3
## 6576                                                      street   3
## 6577                                                        take   3
## 6578                                                         say   3
## 6579                                                        beef   3
## 6580                                                         fry   3
## 6581                                                       genos   3
## 6582                                                        good   3
## 6583                                                     however   3
## 6584                                                        just   3
## 6585                                                     overall   3
## 6586                                                       salty   3
## 6587                                                     service   3
## 6588                                                       slice   3
## 6589                                                      theres   3
## 6590                                                  unseasoned   3
## 6591                                                     history   3
## 6592                                                      cheese   3
## 6593                                                         fan   3
## 6594                                                     morning   3
## 6595                                                       money   3
## 6596                                                        chew   3
## 6597                                                         get   3
## 6598                                                        beef   3
## 6599                                                       bring   3
## 6600                                                    complete   3
## 6601                                                         day   3
## 6602                                                          do   3
## 6603                                                      entire   3
## 6604                                                       floor   3
## 6605                                                         fry   3
## 6606                                                        love   3
## 6607                                                        much   3
## 6608                                                       order   3
## 6609                                                     overall   3
## 6610                                                  overpriced   3
## 6611                                                      reason   3
## 6612                                                   somewhere   3
## 6613                                                       thats   3
## 6614                                                         try   3
## 6615                                                        will   3
## 6616                                                        okay   3
## 6617                                                        just   3
## 6618                                                        also   3
## 6619                                                 cheesesteak   3
## 6620                                                        city   3
## 6621                                                        just   3
## 6622                                                      matter   3
## 6623                                                        next   3
## 6624                                                     nothing   3
## 6625                                                      philly   3
## 6626                                                    sandwich   3
## 6627                                                       genos   3
## 6628                                                         cup   3
## 6629                                                        even   3
## 6630                                                         one   3
## 6631                                                       throw   3
## 6632                                                     another   3
## 6633                                                      either   3
## 6634                                                      expect   3
## 6635                                                        like   3
## 6636                                                        make   3
## 6637                                                       since   3
## 6638                                                       speak   3
## 6639                                                       thats   3
## 6640                                                        will   3
## 6641                                                        wont   3
## 6642                                                        word   3
## 6643                                                        sign   3
## 6644                                                         fry   3
## 6645                                                        meal   3
## 6646                                                        much   3
## 6647                                                         one   3
## 6648                                                      philly   3
## 6649                                                       steak   3
## 6650                                                       bread   3
## 6651                                                       onion   3
## 6652                                                         say   3
## 6653                                                        seat   3
## 6654                                                       taste   3
## 6655                                                         wiz   3
## 6656                                                  experience   3
## 6657                                                     tourist   3
## 6658                                                         bad   3
## 6659                                                        good   3
## 6660                                                       night   3
## 6661                                                       genos   3
## 6662                                                          go   3
## 6663                                                        good   3
## 6664                                                        like   3
## 6665                                                    probably   3
## 6666                                                         say   3
## 6667                                                         one   3
## 6668                                                         add   3
## 6669                                                        cant   3
## 6670                                                        come   3
## 6671                                                    consider   3
## 6672                                                     contest   3
## 6673                                                       drink   3
## 6674                                                        food   3
## 6675                                                       genos   3
## 6676                                                       great   3
## 6677                                                        jims   3
## 6678                                                        line   3
## 6679                                                        long   3
## 6680                                                       order   3
## 6681                                                         pat   3
## 6682                                                          pm   3
## 6683                                                   recommend   3
## 6684                                                         see   3
## 6685                                                   something   3
## 6686                                                       think   3
## 6687                                                       toast   3
## 6688                                                        tony   3
## 6689                                                     tourist   3
## 6690                                                        back   3
## 6691                                                  experience   3
## 6692                                                        meet   3
## 6693                                                       order   3
## 6694                                                       steak   3
## 6695                                                        want   3
## 6696                                                       local   3
## 6697                                                       often   3
## 6698                                                      philly   3
## 6699                                                      single   3
## 6700                                                        year   3
## 6701                                                    favorite   3
## 6702                                                       group   3
## 6703                                                  preference   3
## 6704                                                        rave   3
## 6705                                                        tell   3
## 6706                                                        will   3
## 6707                                                        make   3
## 6708                                                      expect   3
## 6709                                                        look   3
## 6710                                                   provolone   3
## 6711                                                      cheese   3
## 6712                                                         eat   3
## 6713                                                     finally   3
## 6714                                                          go   3
## 6715                                                       visit   3
## 6716                                                        bite   3
## 6717                                                      cheese   3
## 6718                                                        fast   3
## 6719                                                        line   3
## 6720                                                        meat   3
## 6721                                                         pay   3
## 6722                                                       steak   3
## 6723                                                        want   3
## 6724                                                         way   3
## 6725                                                       genos   3
## 6726                                                      honest   3
## 6727                                                       place   3
## 6728                                                        cant   3
## 6729                                                        come   3
## 6730                                                        even   3
## 6731                                                        ever   3
## 6732                                                       first   3
## 6733                                                         get   3
## 6734                                                         ive   3
## 6735                                                        like   3
## 6736                                                      little   3
## 6737                                                        make   3
## 6738                                                       never   3
## 6739                                                      rather   3
## 6740                                                   recommend   3
## 6741                                                         say   3
## 6742                                                       since   3
## 6743                                                     wouldnt   3
## 6744                                                    sandwich   3
## 6745                                                        star   3
## 6746                                                   delicious   3
## 6747                                                        fast   3
## 6748                                                       salty   3
## 6749                                                         one   3
## 6750                                                       share   3
## 6751                                                      decide   3
## 6752                                                      friend   3
## 6753                                                      member   3
## 6754                                                     rivalry   3
## 6755                                                    sandwich   3
## 6756                                                     tourist   3
## 6757                                                       place   3
## 6758                                                      cheese   3
## 6759                                                        give   3
## 6760                                                          im   3
## 6761                                                        much   3
## 6762                                                     service   3
## 6763                                                      cheese   3
## 6764                                                          do   3
## 6765                                                        just   3
## 6766                                                        know   3
## 6767                                                        like   3
## 6768                                                    sandwich   3
## 6769                                                        seat   3
## 6770                                                        meat   3
## 6771                                                        meat   3
## 6772                                                         pat   3
## 6773                                                        food   3
## 6774                                                        mine   3
## 6775                                                         two   3
## 6776                                                        good   3
## 6777                                                        bite   3
## 6778                                                      compel   3
## 6779                                                        free   3
## 6780                                                        need   3
## 6781                                                       place   3
## 6782                                                      really   3
## 6783                                                         rip   3
## 6784                                                        sick   3
## 6785                                                    strongly   3
## 6786                                                         pat   3
## 6787                                                        good   3
## 6788                                                        want   3
## 6789                                                         wed   3
## 6790                                                      mignon   3
## 6791                                                 cheesesteak   3
## 6792                                                       order   3
## 6793                                                        find   3
## 6794                                                         one   3
## 6795                                                        take   3
## 6796                                                     another   3
## 6797                                                        just   3
## 6798                                                       price   3
## 6799                                                       small   3
## 6800                                                         get   3
## 6801                                                       steak   3
## 6802                                                       order   3
## 6803                                                       bread   3
## 6804                                                        cash   3
## 6805                                                        come   3
## 6806                                                    foremost   3
## 6807                                                        good   3
## 6808                                                         ill   3
## 6809                                                        last   3
## 6810                                                        meat   3
## 6811                                                        move   3
## 6812                                                         one   3
## 6813                                                         pat   3
## 6814                                                      people   3
## 6815                                                      simply   3
## 6816                                                      theyre   3
## 6817                                                        want   3
## 6818                                                        neon   3
## 6819                                                        just   3
## 6820                                                        neon   3
## 6821                                                       bland   3
## 6822                                                 cheesesteak   3
## 6823                                                         eat   3
## 6824                                                      either   3
## 6825                                                        ever   3
## 6826                                                         fry   3
## 6827                                                          go   3
## 6828                                                        lack   3
## 6829                                                        lady   3
## 6830                                                       never   3
## 6831                                                     profile   3
## 6832                                                     quality   3
## 6833                                                       think   3
## 6834                                                      though   3
## 6835                                                         top   3
## 6836                                                         use   3
## 6837                                                        will   3
## 6838                                                         pat   3
## 6839                                                       steak   3
## 6840                                                      cheese   3
## 6841                                                       onion   3
## 6842                                                       steak   3
## 6843                                                       order   3
## 6844                                                     alright   3
## 6845                                                        bite   3
## 6846                                                         boy   3
## 6847                                                   challenge   3
## 6848                                                 cheesesteak   3
## 6849                                                        city   3
## 6850                                                        cook   3
## 6851                                                 destination   3
## 6852                                                  disappoint   3
## 6853                                                       drink   3
## 6854                                                      expect   3
## 6855                                                       first   3
## 6856                                                      flavor   3
## 6857                                                       fresh   3
## 6858                                                     garbage   3
## 6859                                                        hear   3
## 6860                                                          im   3
## 6861                                                      option   3
## 6862                                                     quickly   3
## 6863                                                  restaurant   3
## 6864                                                       right   3
## 6865                                                     rivalry   3
## 6866                                                        rude   3
## 6867                                                       stand   3
## 6868                                                     tourist   3
## 6869                                                         war   3
## 6870                                                     without   3
## 6871                                                        away   3
## 6872                                                       order   3
## 6873                                                         try   3
## 6874                                                        soda   3
## 6875                                                         ive   3
## 6876                                                      speech   3
## 6877                                                       bread   3
## 6878                                                   delicious   3
## 6879                                                   flavorful   3
## 6880                                                        like   3
## 6881                                                        meat   3
## 6882                                                       order   3
## 6883                                                       taste   3
## 6884                                                        also   3
## 6885                                                        life   3
## 6886                                                        like   3
## 6887                                                      philly   3
## 6888                                                        rave   3
## 6889                                                   recommend   3
## 6890                                                       state   3
## 6891                                                         pat   3
## 6892                                                      people   3
## 6893                                                     cashier   3
## 6894                                                        line   3
## 6895                                                     alright   3
## 6896                                                         bad   3
## 6897                                                       bland   3
## 6898                                                       bread   3
## 6899                                                cheesesteaks   3
## 6900                                                          do   3
## 6901                                                       enjoy   3
## 6902                                                        feel   3
## 6903                                                      greasy   3
## 6904                                                          id   3
## 6905                                                         ive   3
## 6906                                                        menu   3
## 6907                                                        nice   3
## 6908                                                     nothing   3
## 6909                                                       place   3
## 6910                                                        save   3
## 6911                                                    separate   3
## 6912                                                        side   3
## 6913                                                       soggy   3
## 6914                                                       still   3
## 6915                                                        take   3
## 6916                                                        thin   3
## 6917                                                      though   3
## 6918                                                         two   3
## 6919                                                        whiz   3
## 6920                                                         wiz   3
## 6921                                                  experience   3
## 6922                                                       slice   3
## 6923                                                        cook   3
## 6924                                                          go   3
## 6925                                                     tourist   3
## 6926                                                    touristy   3
## 6927                                                     portion   3
## 6928                                                          go   3
## 6929                                                        take   3
## 6930                                                         add   3
## 6931                                                        aint   3
## 6932                                                    american   3
## 6933                                                     awesome   3
## 6934                                                        back   3
## 6935                                                        cant   3
## 6936                                                   certainly   3
## 6937                                                      cheesy   3
## 6938                                                        chop   3
## 6939                                                        cool   3
## 6940                                                      decent   3
## 6941                                                     despite   3
## 6942                                                      either   3
## 6943                                                        fall   3
## 6944                                                       fault   3
## 6945                                                     feature   3
## 6946                                                      flavor   3
## 6947                                                    friendly   3
## 6948                                                       gonna   3
## 6949                                                        half   3
## 6950                                                        head   3
## 6951                                                         ill   3
## 6952                                                     italian   3
## 6953                                                        kind   3
## 6954                                                       large   3
## 6955                                                        late   3
## 6956                                                        list   3
## 6957                                                       lunch   3
## 6958                                                       maybe   3
## 6959                                                        move   3
## 6960                                                        none   3
## 6961                                                       owner   3
## 6962                                                      period   3
## 6963                                                     popular   3
## 6964                                                    probably   3
## 6965                                                      racist   3
## 6966                                                     realize   3
## 6967                                                      reason   3
## 6968                                                      recent   3
## 6969                                                      review   3
## 6970                                                     rivalry   3
## 6971                                                       shame   3
## 6972                                                    showdown   3
## 6973                                                      simply   3
## 6974                                                    somewhat   3
## 6975                                                       start   3
## 6976                                                      tender   3
## 6977                                                        tony   3
## 6978                                                         top   3
## 6979                                                  understand   3
## 6980                                                     usually   3
## 6981                                                      versus   3
## 6982                                                         war   3
## 6983                                                      winner   3
## 6984                                                     wouldnt   3
## 6985                                                         yes   3
## 6986                                                       youll   3
## 6987                                                           2   3
## 6988                                                      across   3
## 6989                                                       annoy   3
## 6990                                                    anywhere   3
## 6991                                                        busy   3
## 6992                                                         car   3
## 6993                                                    customer   3
## 6994                                                      either   3
## 6995                                                  experience   3
## 6996                                                      famous   3
## 6997                                                        fill   3
## 6998                                                       first   3
## 6999                                                       ginos   3
## 7000                                                        hand   3
## 7001                                                      hungry   3
## 7002                                                         ive   3
## 7003                                                       leave   3
## 7004                                                         lot   3
## 7005                                                    mediocre   3
## 7006                                                        move   3
## 7007                                                       nasty   3
## 7008                                                      offend   3
## 7009                                                       plain   3
## 7010                                                        sick   3
## 7011                                                    standard   3
## 7012                                                       stick   3
## 7013                                                       table   3
## 7014                                                        take   3
## 7015                                                        time   3
## 7016                                                     without   3
## 7017                                                        shop   3
## 7018                                                  disappoint   3
## 7019                                                       steak   3
## 7020                                                        four   3
## 7021                                                        full   3
## 7022                                                          go   3
## 7023                                                        high   3
## 7024                                                        hype   3
## 7025                                                       large   3
## 7026                                                       steak   3
## 7027                                                        able   3
## 7028                                                        glam   3
## 7029                                                    american   3
## 7030                                                         atm   3
## 7031                                                       bunch   3
## 7032                                                        cash   3
## 7033                                                       check   3
## 7034                                                     classic   3
## 7035                                                        come   3
## 7036                                                  definitely   3
## 7037                                                         die   3
## 7038                                                       enjoy   3
## 7039                                                      friend   3
## 7040                                                        high   3
## 7041                                                        hour   3
## 7042                                                      inside   3
## 7043                                                ishkabibbles   3
## 7044                                                         ive   3
## 7045                                                        know   3
## 7046                                                   literally   3
## 7047                                                        look   3
## 7048                                                         may   3
## 7049                                                         new   3
## 7050                                                     prepare   3
## 7051                                                        real   3
## 7052                                                       right   3
## 7053                                                         run   3
## 7054                                                    saturday   3
## 7055                                                      school   3
## 7056                                                   seriously   3
## 7057                                                     service   3
## 7058                                                       since   3
## 7059                                                   someplace   3
## 7060                                                       spend   3
## 7061                                                        spot   3
## 7062                                                        tell   3
## 7063                                                      though   3
## 7064                                                       waste   3
## 7065                                                        week   3
## 7066                                                     without   3
## 7067                                                   yesterday   3
## 7068                                                       bless   3
## 7069                                                        know   3
## 7070                                                          go   3
## 7071                                                         try   3
## 7072                                                      always   3
## 7073                                                       amaze   3
## 7074                                                    american   3
## 7075                                                      around   3
## 7076                                                     balance   3
## 7077                                                         big   3
## 7078                                                         boy   3
## 7079                                                   boyfriend   3
## 7080                                                   breakfast   3
## 7081                                                    business   3
## 7082                                                        cash   3
## 7083                                                   certainly   3
## 7084                                                  cheesteaks   3
## 7085                                                        chop   3
## 7086                                                 competition   3
## 7087                                                   condiment   3
## 7088                                                      couple   3
## 7089                                                      course   3
## 7090                                                      crispy   3
## 7091                                                         def   3
## 7092                                                  disappoint   3
## 7093                                                      doesnt   3
## 7094                                                       drink   3
## 7095                                                       drive   3
## 7096                                                   elsewhere   3
## 7097                                                       every   3
## 7098                                                       ginos   3
## 7099                                                         guy   3
## 7100                                                        haha   3
## 7101                                                       happy   3
## 7102                                                        head   3
## 7103                                                        hear   3
## 7104                                                        help   3
## 7105                                                         hot   3
## 7106                                                     husband   3
## 7107                                                         ill   3
## 7108                                                      jersey   3
## 7109                                                       joint   3
## 7110                                                         mix   3
## 7111                                                        much   3
## 7112                                                         nyc   3
## 7113                                                         ole   3
## 7114                                                    original   3
## 7115                                                      rather   3
## 7116                                                    remember   3
## 7117                                                  restaurant   3
## 7118                                                   seriously   3
## 7119                                                       stand   3
## 7120                                                        star   3
## 7121                                                        stay   3
## 7122                                                        stop   3
## 7123                                                      theyre   3
## 7124                                                    together   3
## 7125                                                     tourist   3
## 7126                                                        true   3
## 7127                                                      unless   3
## 7128                                                         use   3
## 7129                                                        warm   3
## 7130                                                        wish   3
## 7131                                                        word   3
## 7132                                                         yet   3
## 7133                                                       youll   3
## 7134                                                         get   3
## 7135                                                 cheesesteak   3
## 7136                                                          go   3
## 7137                                                      philly   3
## 7138                                                      cheese   3
## 7139                                                       bland   3
## 7140                                                       bread   3
## 7141                                                      cheese   3
## 7142                                                       gross   3
## 7143                                                    sandwich   3
## 7144                                                        side   3
## 7145                                                       taste   3
## 7146                                                        also   3
## 7147                                                       drink   3
## 7148                                                         eat   3
## 7149                                                      expect   3
## 7150                                                 expectation   3
## 7151                                                        fast   3
## 7152                                                         fry   3
## 7153                                                        good   3
## 7154                                                         job   3
## 7155                                                        love   3
## 7156                                                      market   3
## 7157                                                      option   3
## 7158                                                       staff   3
## 7159                                                       think   3
## 7160                                                         get   3
## 7161                                                      pepper   3
## 7162                                                        meat   3
## 7163                                                       gross   3
## 7164                                                      philly   3
## 7165                                                       south   3
## 7166                                                         can   3
## 7167                                                       didnt   3
## 7168                                                          do   3
## 7169                                                          im   3
## 7170                                                       order   3
## 7171                                                      prefer   3
## 7172                                                    sandwich   3
## 7173                                                         ask   3
## 7174                                                         can   3
## 7175                                                      doesnt   3
## 7176                                                       fieri   3
## 7177                                                        look   3
## 7178                                                        make   3
## 7179                                                        next   3
## 7180                                                        seem   3
## 7181                                                         use   3
## 7182                                                         get   3
## 7183                                                         pat   3
## 7184                                                        back   3
## 7185                                                        even   3
## 7186                                                        like   3
## 7187                                                         pat   3
## 7188                                                    sandwich   3
## 7189                                                   sanitizer   3
## 7190                                                       staff   3
## 7191                                                        time   3
## 7192                                                         eat   3
## 7193                                                        food   3
## 7194                                                      cheese   3
## 7195                                                       chewy   3
## 7196                                                        mess   3
## 7197                                                        miss   3
## 7198                                                       money   3
## 7199                                                         job   3
## 7200                                                       taste   3
## 7201                                                      friend   3
## 7202                                                         lot   3
## 7203                                                         mix   3
## 7204                                                        much   3
## 7205                                                         one   3
## 7206                                                      people   3
## 7207                                                     someone   3
## 7208                                                       story   3
## 7209                                                         get   3
## 7210                                                        make   3
## 7211                                                          us   3
## 7212                                                    friendly   3
## 7213                                                         tip   3
## 7214                                                        less   3
## 7215                                                        hope   3
## 7216                                                        list   3
## 7217                                                     suggest   3
## 7218                                                      philly   3
## 7219                                                        site   3
## 7220                                                        food   3
## 7221                                                      philly   3
## 7222                                                 cheesesteak   3
## 7223                                                       juice   3
## 7224                                                        meat   3
## 7225                                                       place   3
## 7226                                                    sandwich   3
## 7227                                                        crap   3
## 7228                                                        good   3
## 7229                                                        good   3
## 7230                                                     opinion   3
## 7231                                                         bad   3
## 7232                                                        find   3
## 7233                                                      forget   3
## 7234                                                         ive   3
## 7235                                                        like   3
## 7236                                                       taste   3
## 7237                                                       genos   3
## 7238                                                       order   3
## 7239                                                        take   3
## 7240                                                        beef   3
## 7241                                                 cheesesteak   3
## 7242                                                   chocolate   3
## 7243                                                          do   3
## 7244                                                       fresh   3
## 7245                                                        good   3
## 7246                                                       juicy   3
## 7247                                                        melt   3
## 7248                                                       think   3
## 7249                                                         eat   3
## 7250                                                        half   3
## 7251                                                   operation   3
## 7252                                                         try   3
## 7253                                                       agree   3
## 7254                                                       bread   3
## 7255                                                        much   3
## 7256                                                      prefer   3
## 7257                                                       still   3
## 7258                                                       wasnt   3
## 7259                                                     letdown   3
## 7260                                                     tourist   3
## 7261                                                         eat   3
## 7262                                                        good   3
## 7263                                                      decide   3
## 7264                                                        also   3
## 7265                                                       bread   3
## 7266                                                        come   3
## 7267                                                        feel   3
## 7268                                                       first   3
## 7269                                                        line   3
## 7270                                                        much   3
## 7271                                                    sandwich   3
## 7272                                                       steak   3
## 7273                                                       thats   3
## 7274                                                     tourist   3
## 7275                                                         try   3
## 7276                                                 cheesesteak   3
## 7277                                                  definitely   3
## 7278                                                         get   3
## 7279                                                        hear   3
## 7280                                                      really   3
## 7281                                                       still   3
## 7282                                                        take   3
## 7283                                                       place   3
## 7284                                                      always   3
## 7285                                                       order   3
## 7286                                                         say   3
## 7287                                                       start   3
## 7288                                                       alien   3
## 7289                                                        also   3
## 7290                                                    american   3
## 7291                                                        back   3
## 7292                                                     compare   3
## 7293                                                     concern   3
## 7294                                                         eat   3
## 7295                                                       genos   3
## 7296                                                        good   3
## 7297                                                       guess   3
## 7298                                                       happy   3
## 7299                                                          la   3
## 7300                                                        like   3
## 7301                                                       local   3
## 7302                                                        look   3
## 7303                                                         pay   3
## 7304                                                      pretty   3
## 7305                                                     suppose   3
## 7306                                                        talk   3
## 7307                                                         try   3
## 7308                                                     usually   3
## 7309                                                       white   3
## 7310                                                          go   3
## 7311                                                        note   3
## 7312                                                        meat   3
## 7313                                                       steak   3
## 7314                                                        fast   3
## 7315                                                       bread   3
## 7316                                                       genos   3
## 7317                                                    sandwich   3
## 7318                                                          do   3
## 7319                                                       genos   3
## 7320                                                          go   3
## 7321                                                         one   3
## 7322                                                         try   3
## 7323                                                        whiz   3
## 7324                                                         try   3
## 7325                                                        chop   3
## 7326                                                        even   3
## 7327                                                      season   3
## 7328                                                       worth   3
## 7329                                                      cheese   3
## 7330                                                    actually   3
## 7331                                                         bad   3
## 7332                                                cheesesteaks   3
## 7333                                                  definitely   3
## 7334                                                    honestly   3
## 7335                                                       steak   3
## 7336                                                         way   3
## 7337                                                       shore   3
## 7338                                                           g   3
## 7339                                                       still   3
## 7340                                                         way   3
## 7341                                                        keep   3
## 7342                                                       steak   3
## 7343                                                philadelphia   3
## 7344                                                   delicious   3
## 7345                                                         pat   3
## 7346                                                       tasty   3
## 7347                                                       wasnt   3
## 7348                                                     alright   3
## 7349                                                      assume   3
## 7350                                                     awesome   3
## 7351                                                      barely   3
## 7352                                                       basic   3
## 7353                                                        blah   3
## 7354                                                        blow   3
## 7355                                                         can   3
## 7356                                                  disappoint   3
## 7357                                                       every   3
## 7358                                                        fast   3
## 7359                                                      finish   3
## 7360                                                        food   3
## 7361                                                       genos   3
## 7362                                                       gross   3
## 7363                                                        huge   3
## 7364                                                        hype   3
## 7365                                                      ignore   3
## 7366                                                        isnt   3
## 7367                                                        lack   3
## 7368                                                       leave   3
## 7369                                                         meh   3
## 7370                                                        melt   3
## 7371                                                       never   3
## 7372                                                     overall   3
## 7373                                                        part   3
## 7374                                                         see   3
## 7375                                                       serve   3
## 7376                                                      simply   3
## 7377                                                        slap   3
## 7378                                                   something   3
## 7379                                                       split   3
## 7380                                                       start   3
## 7381                                                         sub   3
## 7382                                                        sure   3
## 7383                                                        thin   3
## 7384                                                         two   3
## 7385                                                        wait   3
## 7386                                                       worth   3
## 7387                                                        away   3
## 7388                                                       genos   3
## 7389                                                         one   3
## 7390                                                        open   3
## 7391                                                       place   3
## 7392                                                     politic   3
## 7393                                                        real   3
## 7394                                                        good   3
## 7395                                                         put   3
## 7396                                                        know   3
## 7397                                                       mumia   3
## 7398                                                 cheesesteak   3
## 7399                                                  disappoint   3
## 7400                                                      person   3
## 7401                                                         say   3
## 7402                                                        spin   3
## 7403                                                        hard   3
## 7404                                                         bad   3
## 7405                                                          do   3
## 7406                                                         eat   3
## 7407                                                      expect   3
## 7408                                                        hate   3
## 7409                                                         ill   3
## 7410                                                       local   3
## 7411                                                        long   3
## 7412                                                         may   3
## 7413                                                       maybe   3
## 7414                                                        mean   3
## 7415                                                        much   3
## 7416                                                        real   3
## 7417                                                        spot   3
## 7418                                                    touristy   3
## 7419                                                        true   3
## 7420                                                        will   3
## 7421                                                         wit   3
## 7422                                                        meat   3
## 7423                                                      season   3
## 7424                                                       steak   3
## 7425                                                        work   3
## 7426                                                          us   3
## 7427                                                        will   3
## 7428                                                     portion   3
## 7429                                                        sign   3
## 7430                                                        stop   3
## 7431                                                        trip   3
## 7432                                                         two   3
## 7433                                                        even   3
## 7434                                                        joey   3
## 7435                                                       owner   3
## 7436                                                       genos   3
## 7437                                                       lingo   3
## 7438                                                        much   3
## 7439                                                       place   3
## 7440                                                      review   3
## 7441                                                        want   3
## 7442                                                 cheesesteak   3
## 7443                                                 cheesesteak   3
## 7444                                                       genos   3
## 7445                                                        give   3
## 7446                                                         min   3
## 7447                                                        long   3
## 7448                                                         say   3
## 7449                                                        long   3
## 7450                                                     attract   3
## 7451                                                  ridiculous   3
## 7452                                                        also   3
## 7453                                                     america   3
## 7454                                                         bad   3
## 7455                                                         can   3
## 7456                                                       crazy   3
## 7457                                                         cut   3
## 7458                                                       dirty   3
## 7459                                                   everybody   3
## 7460                                                         fly   3
## 7461                                                        geno   3
## 7462                                                      greasy   3
## 7463                                                       great   3
## 7464                                                         hey   3
## 7465                                                        kind   3
## 7466                                                        love   3
## 7467                                                   mcdonalds   3
## 7468                                                    original   3
## 7469                                                      people   3
## 7470                                                       piece   3
## 7471                                                         put   3
## 7472                                                     quality   3
## 7473                                                      racist   3
## 7474                                                        shit   3
## 7475                                                       small   3
## 7476                                                        star   3
## 7477                                                    steakums   3
## 7478                                                       still   3
## 7479                                                        stop   3
## 7480                                                        take   3
## 7481                                                     texture   3
## 7482                                                       think   3
## 7483                                                         two   3
## 7484                                                         big   3
## 7485                                                       block   3
## 7486                                                cheesesteaks   3
## 7487                                                        cold   3
## 7488                                                    customer   3
## 7489                                                       didnt   3
## 7490                                                        fast   3
## 7491                                                     forever   3
## 7492                                                      freeze   3
## 7493                                                         fry   3
## 7494                                                        hour   3
## 7495                                                      little   3
## 7496                                                        make   3
## 7497                                                         may   3
## 7498                                                     overall   3
## 7499                                                        park   3
## 7500                                                     service   3
## 7501                                                     someone   3
## 7502                                                   something   3
## 7503                                                       super   3
## 7504                                                      theres   3
## 7505                                                      though   3
## 7506                                                        time   3
## 7507                                                     usually   3
## 7508                                                      cheese   3
## 7509                                                       place   3
## 7510                                                       taste   3
## 7511                                                      appeal   3
## 7512                                                       clean   3
## 7513                                                     confuse   3
## 7514                                                        cook   3
## 7515                                                  disappoint   3
## 7516                                                      flashy   3
## 7517                                                    generous   3
## 7518                                                       light   3
## 7519                                                       messy   3
## 7520                                                       money   3
## 7521                                                       onion   3
## 7522                                                  overpriced   3
## 7523                                                         pat   3
## 7524                                                       piece   3
## 7525                                                        salt   3
## 7526                                                        soft   3
## 7527                                                  underwhelm   3
## 7528                                                      around   3
## 7529                                                       block   3
## 7530                                                        west   3
## 7531                                                       onion   3
## 7532                                                       bread   3
## 7533                                                         can   3
## 7534                                                        come   3
## 7535                                                        deli   3
## 7536                                                      friend   3
## 7537                                                       genos   3
## 7538                                                        good   3
## 7539                                                         guy   3
## 7540                                                      philly   3
## 7541                                                        shop   3
## 7542                                                       genos   3
## 7543                                                         get   3
## 7544                                                        good   3
## 7545                                                       genos   3
## 7546                                                         ago   3
## 7547                                                        even   3
## 7548                                                      flight   3
## 7549                                                       genos   3
## 7550                                                        know   3
## 7551                                                        long   3
## 7552                                                        meat   3
## 7553                                                       order   3
## 7554                                                        roll   3
## 7555                                                         run   3
## 7556                                                       steak   3
## 7557                                                       think   3
## 7558                                                        trip   3
## 7559                                                        walk   3
## 7560                                                         way   3
## 7561                                                     weekend   3
## 7562                                                       worth   3
## 7563                                                      almost   3
## 7564                                                        back   3
## 7565                                                     confuse   3
## 7566                                                   elsewhere   3
## 7567                                                       genos   3
## 7568                                                          go   3
## 7569                                                       great   3
## 7570                                                       kinda   3
## 7571                                                      little   3
## 7572                                                        park   3
## 7573                                                     picture   3
## 7574                                                      pretty   3
## 7575                                                      review   3
## 7576                                                      window   3
## 7577                                                    appetite   3
## 7578                                                       clean   3
## 7579                                                        food   3
## 7580                                                      little   3
## 7581                                                         lot   3
## 7582                                                        nice   3
## 7583                                                     picture   3
## 7584                                                      review   3
## 7585                                                        salt   3
## 7586                                                       steak   3
## 7587                                                     country   3
## 7588                                                        fact   3
## 7589                                                       first   3
## 7590                                                         hot   3
## 7591                                                         put   3
## 7592                                                       think   3
## 7593                                                      cheese   3
## 7594                                                         atm   3
## 7595                                                       wasnt   3
## 7596                                                      enough   3
## 7597                                                      campos   3
## 7598                                                     instead   3
## 7599                                                        much   3
## 7600                                                      oregon   3
## 7601                                                        want   3
## 7602                                                        will   3
## 7603                                                       genos   3
## 7604                                                         pat   3
## 7605                                                      driver   3
## 7606                                                        hell   3
## 7607                                                  competitor   3
## 7608                                                       chewy   3
## 7609                                                       clear   3
## 7610                                                  comparison   3
## 7611                                                        easy   3
## 7612                                                         eat   3
## 7613                                                  experience   3
## 7614                                                         fun   3
## 7615                                                      hungry   3
## 7616                                                      little   3
## 7617                                                    purchase   3
## 7618                                                       sound   3
## 7619                                                     tourist   3
## 7620                                                      wonder   3
## 7621                                                       worth   3
## 7622                                                           v   3
## 7623                                                          vs   3
## 7624                                                     reserve   3
## 7625                                                         bad   3
## 7626                                                       local   3
## 7627                                                      philly   3
## 7628                                                         way   3
## 7629                                                       sauce   3
## 7630                                                       genos   3
## 7631                                                       steak   3
## 7632                                                    actually   3
## 7633                                                         add   3
## 7634                                                       agree   3
## 7635                                                      change   3
## 7636                                                        give   3
## 7637                                                          go   3
## 7638                                                        know   3
## 7639                                                      return   3
## 7640                                                       didnt   3
## 7641                                                          do   3
## 7642                                                      expect   3
## 7643                                                         get   3
## 7644                                                        hype   3
## 7645                                                         ill   3
## 7646                                                         pat   3
## 7647                                                         bad   3
## 7648                                                         can   3
## 7649                                                        come   3
## 7650                                                        like   3
## 7651                                                        love   3
## 7652                                                         one   3
## 7653                                                        want   3
## 7654                                                         yes   3
## 7655                                                        also   3
## 7656                                                      always   3
## 7657                                                     average   3
## 7658                                                         bad   3
## 7659                                                       break   3
## 7660                                                       chewy   3
## 7661                                                     compare   3
## 7662                                                       cover   3
## 7663                                                      either   3
## 7664                                                        feel   3
## 7665                                                      finely   3
## 7666                                                        flat   3
## 7667                                                  flavorless   3
## 7668                                                      greasy   3
## 7669                                                         hot   3
## 7670                                                       juice   3
## 7671                                                        keep   3
## 7672                                                        long   3
## 7673                                                         may   3
## 7674                                                        nice   3
## 7675                                                     nothing   3
## 7676                                                     overall   3
## 7677                                                      pepper   3
## 7678                                                      prefer   3
## 7679                                                       price   3
## 7680                                                    probably   3
## 7681                                                   provolone   3
## 7682                                                      skimpy   3
## 7683                                                       small   3
## 7684                                                       thats   3
## 7685                                                        thin   3
## 7686                                                         way   3
## 7687                                                        wish   3
## 7688                                                 expectation   3
## 7689                                                        joey   3
## 7690                                                        good   3
## 7691                                                         ive   3
## 7692                                                        meat   3
## 7693                                                       gooey   3
## 7694                                                  expedition   3
## 7695                                                         day   3
## 7696                                                       genos   3
## 7697                                                       limit   3
## 7698                                                      option   3
## 7699                                                        good   3
## 7700                                                        away   3
## 7701                                                       place   3
## 7702                                                        much   3
## 7703                                                       think   3
## 7704                                                        meat   3
## 7705                                                        star   3
## 7706                                                       drive   3
## 7707                                                        fast   3
## 7708                                                       genos   3
## 7709                                                          go   3
## 7710                                                    sandwich   3
## 7711                                                       steak   3
## 7712                                                    anything   3
## 7713                                                          go   3
## 7714                                                   something   3
## 7715                                                       order   3
## 7716                                                        good   3
## 7717                                                        meat   3
## 7718                                                        come   3
## 7719                                                         pay   3
## 7720                                                   principle   3
## 7721                                                     tourist   3
## 7722                                                      fairly   3
## 7723                                                        onto   3
## 7724                                                          pa   3
## 7725                                                      either   3
## 7726                                                        else   3
## 7727                                                       enjoy   3
## 7728                                                  everything   3
## 7729                                                 expectation   3
## 7730                                                         fat   3
## 7731                                                          go   3
## 7732                                                      handle   3
## 7733                                                        line   3
## 7734                                                       right   3
## 7735                                                       small   3
## 7736                                                       tasty   3
## 7737                                                        time   3
## 7738                                                        sign   3
## 7739                                                        time   3
## 7740                                                         art   3
## 7741                                                         etc   3
## 7742                                                    straight   3
## 7743                                                       taste   3
## 7744                                                         get   3
## 7745                                                        just   3
## 7746                                                        know   3
## 7747                                                         one   3
## 7748                                                       speak   3
## 7749                                                          go   3
## 7750                                                        good   3
## 7751                                                   condiment   3
## 7752                                                 cheesesteak   3
## 7753                                                        food   3
## 7754                                                         sub   3
## 7755                                                    american   3
## 7756                                                        know   3
## 7757                                                         new   3
## 7758                                               philadelphian   3
## 7759                                                     italian   3
## 7760                                                       order   3
## 7761                                                      enough   3
## 7762                                                         eat   3
## 7763                                                        sign   3
## 7764                                                       steak   3
## 7765                                                     comment   3
## 7766                                                       genos   3
## 7767                                                       place   3
## 7768                                                       genos   3
## 7769                                                      orange   3
## 7770                                                        back   3
## 7771                                                         bad   3
## 7772                                                       close   3
## 7773                                                         end   3
## 7774                                                        even   3
## 7775                                                        fail   3
## 7776                                                        mind   3
## 7777                                                         one   3
## 7778                                                       order   3
## 7779                                                         pat   3
## 7780                                                       steak   3
## 7781                                                        will   3
## 7782                                                     england   3
## 7783                                                  management   3
## 7784                                                     orleans   3
## 7785                                                       place   3
## 7786                                                        year   3
## 7787                                                       crisp   3
## 7788                                                         cut   3
## 7789                                                      flavor   3
## 7790                                                    friendly   3
## 7791                                                        good   3
## 7792                                                         guy   3
## 7793                                                      little   3
## 7794                                                        meat   3
## 7795                                                       order   3
## 7796                                                       touch   3
## 7797                                                         eat   3
## 7798                                                        just   3
## 7799                                                      philly   3
## 7800                                                       snack   3
## 7801                                                        stop   3
## 7802                                                    existent   3
## 7803                                                         one   3
## 7804                                                       place   3
## 7805                                                        beat   3
## 7806                                                         can   3
## 7807                                                    sandwich   3
## 7808                                                       genos   3
## 7809                                                       genos   3
## 7810                                                         let   3
## 7811                                                        live   3
## 7812                                                         may   3
## 7813                                                       place   3
## 7814                                                         say   3
## 7815                                                        time   3
## 7816                                                         say   3
## 7817                                                      philly   3
## 7818                                                      decide   3
## 7819                                                         try   3
## 7820                                                       light   3
## 7821                                                          do   3
## 7822                                                      enough   3
## 7823                                                          do   3
## 7824                                                      forget   3
## 7825                                                       genos   3
## 7826                                                         god   3
## 7827                                                         add   3
## 7828                                                 cheesesteak   3
## 7829                                                          do   3
## 7830                                                      expect   3
## 7831                                                       first   3
## 7832                                                       onion   3
## 7833                                                         pat   3
## 7834                                                         say   3
## 7835                                                         try   3
## 7836                                                        city   3
## 7837                                                      friend   3
## 7838                                                      school   3
## 7839                                                         son   3
## 7840                                                         buy   3
## 7841                                                   complaint   3
## 7842                                                       drink   3
## 7843                                                         eat   3
## 7844                                                        half   3
## 7845                                                        hand   3
## 7846                                                        heck   3
## 7847                                                          im   3
## 7848                                                         ive   3
## 7849                                                      little   3
## 7850                                                       local   3
## 7851                                                        many   3
## 7852                                                     phillys   3
## 7853                                                         put   3
## 7854                                                      really   3
## 7855                                                         sit   3
## 7856                                                    touristy   3
## 7857                                                         win   3
## 7858                                                       worth   3
## 7859                                                         big   3
## 7860                                                         bit   3
## 7861                                                        bite   3
## 7862                                                     couldnt   3
## 7863                                                  definitely   3
## 7864                                                       didnt   3
## 7865                                                          do   3
## 7866                                                       first   3
## 7867                                                        give   3
## 7868                                                         guy   3
## 7869                                                     ketchup   3
## 7870                                                        know   3
## 7871                                                         let   3
## 7872                                                      nicely   3
## 7873                                                        okay   3
## 7874                                                        roll   3
## 7875                                                     service   3
## 7876                                                        spin   3
## 7877                                                       staff   3
## 7878                                                       still   3
## 7879                                                        wait   3
## 7880                                                         yes   3
## 7881                                                        mind   3
## 7882                                                        time   3
## 7883                                                        just   3
## 7884                                                         pat   3
## 7885                                                         try   3
## 7886                                                        chop   3
## 7887                                                   provolone   3
## 7888                                                      cheese   3
## 7889                                                        city   3
## 7890                                                      philly   3
## 7891                                                      cheese   3
## 7892                                                           2   3
## 7893                                                        also   3
## 7894                                                         ask   3
## 7895                                                     classic   3
## 7896                                                          im   3
## 7897                                                        line   3
## 7898                                                         lol   3
## 7899                                                        meat   3
## 7900                                                        nice   3
## 7901                                                    original   3
## 7902                                                       plain   3
## 7903                                                     regular   3
## 7904                                                         say   3
## 7905                                                    separate   3
## 7906                                                        slow   3
## 7907                                                   something   3
## 7908                                                     station   3
## 7909                                                        take   3
## 7910                                                      though   3
## 7911                                                         try   3
## 7912                                                         pat   3
## 7913                                                         say   3
## 7914                                                          go   3
## 7915                                                      picnic   3
## 7916                                                        city   3
## 7917                                                          go   3
## 7918                                                       place   3
## 7919                                                       enjoy   3
## 7920                                                     however   3
## 7921                                                         pat   3
## 7922                                                      though   3
## 7923                                                      greasy   3
## 7924                                                 cheesesteak   3
## 7925                                                        good   3
## 7926                                                    sandwich   3
## 7927                                                        good   3
## 7928                                                       steak   3
## 7929                                                     tourist   3
## 7930                                                   something   3
## 7931                                                        geno   3
## 7932                                                      racist   3
## 7933                                                         son   3
## 7934                                                       genos   3
## 7935                                                        park   3
## 7936                                                       close   3
## 7937                                                          do   3
## 7938                                                       genos   3
## 7939                                                         get   3
## 7940                                                        near   3
## 7941                                                neighborhood   3
## 7942                                                 nonexistent   3
## 7943                                                        suck   3
## 7944                                                        walk   3
## 7945                                                       wasnt   3
## 7946                                                      though   3
## 7947                                                       visit   3
## 7948                                                        melt   3
## 7949                                                         day   3
## 7950                                                        food   3
## 7951                                                       genos   3
## 7952                                                         pat   3
## 7953                                                       youre   3
## 7954                                                       place   3
## 7955                                                           2   3
## 7956                                                  absolutely   3
## 7957                                                       amaze   3
## 7958                                                         ask   3
## 7959                                                        base   3
## 7960                                                        beat   3
## 7961                                                         big   3
## 7962                                                       clear   3
## 7963                                                    customer   3
## 7964                                                         cut   3
## 7965                                                    daughter   3
## 7966                                                  difference   3
## 7967                                                      doesnt   3
## 7968                                                     equally   3
## 7969                                                  especially   3
## 7970                                                    everyday   3
## 7971                                                  everything   3
## 7972                                                  experience   3
## 7973                                                   flavorful   3
## 7974                                                        food   3
## 7975                                                    honestly   3
## 7976                                                      invent   3
## 7977                                                ishkabibbles   3
## 7978                                                      locate   3
## 7979                                                      matter   3
## 7980                                                        open   3
## 7981                                                       plain   3
## 7982                                                      pretty   3
## 7983                                                       price   3
## 7984                                                   provolone   3
## 7985                                                         put   3
## 7986                                                       quite   3
## 7987                                                        read   3
## 7988                                                        roll   3
## 7989                                                       share   3
## 7990                                                        side   3
## 7991                                                         sit   3
## 7992                                                        soft   3
## 7993                                                       sorry   3
## 7994                                                        sure   3
## 7995                                                        talk   3
## 7996                                                       thing   3
## 7997                                                       throw   3
## 7998                                                        wife   3
## 7999                                                         wit   3
## 8000                                                    business   3
## 8001                                                      cheese   3
## 8002                                                       close   3
## 8003                                                      dollar   3
## 8004                                                         get   3
## 8005                                                        half   3
## 8006                                                        nice   3
## 8007                                                       order   3
## 8008                                                       visit   3
## 8009                                                    actually   3
## 8010                                                       arent   3
## 8011                                                       front   3
## 8012                                                      havent   3
## 8013                                                      little   3
## 8014                                                        live   3
## 8015                                                        nice   3
## 8016                                                philadelphia   3
## 8017                                                       right   3
## 8018                                                    sandwich   3
## 8019                                                       super   3
## 8020                                                       visit   3
## 8021                                                        want   3
## 8022                                                      window   3
## 8023                                                         bar   3
## 8024                                                      cheese   3
## 8025                                                        cook   3
## 8026                                                       pizza   3
## 8027                                                        side   3
## 8028                                                       spicy   3
## 8029                                                         way   3
## 8030                                                    sandwich   3
## 8031                                                      philly   3
## 8032                                                        line   3
## 8033                                                       taste   3
## 8034                                                     another   3
## 8035                                                        come   3
## 8036                                                    complete   3
## 8037                                                         eat   3
## 8038                                                        know   3
## 8039                                                        make   3
## 8040                                                      museum   3
## 8041                                                        must   3
## 8042                                                          pa   3
## 8043                                                     without   3
## 8044                                                        year   3
## 8045                                                         eat   3
## 8046                                                    actually   3
## 8047                                                     airport   3
## 8048                                                      almost   3
## 8049                                                     another   3
## 8050                                                        call   3
## 8051                                                  cheeseteak   3
## 8052                                                      choose   3
## 8053                                                       enjoy   3
## 8054                                                        even   3
## 8055                                                        ever   3
## 8056                                                    everyone   3
## 8057                                                      figure   3
## 8058                                                        folk   3
## 8059                                                        girl   3
## 8060                                                        home   3
## 8061                                                        hype   3
## 8062                                                     italian   3
## 8063                                                        last   3
## 8064                                                         let   3
## 8065                                                         lot   3
## 8066                                                        love   3
## 8067                                                        many   3
## 8068                                                        mean   3
## 8069                                                        meat   3
## 8070                                                        need   3
## 8071                                                       never   3
## 8072                                                        next   3
## 8073                                                        open   3
## 8074                                                      person   3
## 8075                                                    recently   3
## 8076                                                  restaurant   3
## 8077                                                     service   3
## 8078                                                       since   3
## 8079                                                        take   3
## 8080                                                       taste   3
## 8081                                                        tony   3
## 8082                                                         top   3
## 8083                                                         two   3
## 8084                                                       youve   3
## 8085                                                      philly   3
## 8086                                                     airport   3
## 8087                                                   celebrity   3
## 8088                                                       leave   3
## 8089                                                       bread   3
## 8090                                                   cardboard   3
## 8091                                                        chop   3
## 8092                                                    sandwich   3
## 8093                                                        shit   3
## 8094                                                       joint   3
## 8095                                                       amaze   3
## 8096                                                       arent   3
## 8097                                                        call   3
## 8098                                                        cant   3
## 8099                                                     compare   3
## 8100                                                  completely   3
## 8101                                                      decide   3
## 8102                                                        else   3
## 8103                                                    employee   3
## 8104                                                       every   3
## 8105                                                       exist   3
## 8106                                                        hear   3
## 8107                                                        high   3
## 8108                                                        huge   3
## 8109                                                      iconic   3
## 8110                                                        kind   3
## 8111                                                        last   3
## 8112                                                        long   3
## 8113                                                       maybe   3
## 8114                                                        meat   3
## 8115                                                      nearby   3
## 8116                                                       never   3
## 8117                                                     nothing   3
## 8118                                                         now   3
## 8119                                                         pop   3
## 8120                                                       price   3
## 8121                                                    probably   3
## 8122                                                        rude   3
## 8123                                                        sell   3
## 8124                                                       steak   3
## 8125                                                     totally   3
## 8126                                                        walk   3
## 8127                                                      wonder   3
## 8128                                                       worth   3
## 8129                                                      cheese   3
## 8130                                                       taste   3
## 8131                                                         get   3
## 8132                                                  experience   3
## 8133                                                        just   3
## 8134                                                        save   3
## 8135                                                         say   3
## 8136                                                        stay   3
## 8137                                                        stop   3
## 8138                                                        good   3
## 8139                                                      cheese   3
## 8140                                                          do   3
## 8141                                                       genos   3
## 8142                                                         pat   3
## 8143                                                    sandwich   3
## 8144                                                        line   3
## 8145                                                         get   3
## 8146                                                        just   3
## 8147                                                  department   3
## 8148                                                        food   3
## 8149                                                   statement   3
## 8150                                                    customer   3
## 8151                                                        shop   3
## 8152                                                        food   3
## 8153                                                        good   3
## 8154                                                      oregon   3
## 8155                                                        wall   3
## 8156                                                      cheese   3
## 8157                                                       ginos   3
## 8158                                                   provolone   3
## 8159                                                        food   3
## 8160                                                         get   3
## 8161                                                     awesome   3
## 8162                                                         big   3
## 8163                                                       clear   3
## 8164                                                        darn   3
## 8165                                                    friendly   3
## 8166                                                        hard   3
## 8167                                                     similar   3
## 8168                                                       owner   3
## 8169                                                    reviewer   3
## 8170                                                        fair   3
## 8171                                                        food   3
## 8172                                                       genos   3
## 8173                                                         get   3
## 8174                                                        just   3
## 8175                                                       place   3
## 8176                                                       price   3
## 8177                                                  reasonable   3
## 8178                                                  ridiculous   3
## 8179                                                       worth   3
## 8180                                                        side   3
## 8181                                                         age   3
## 8182                                                        give   3
## 8183                                                        like   3
## 8184                                                     tourist   3
## 8185                                                        will   3
## 8186                                                       genos   3
## 8187                                                       genos   3
## 8188                                                     service   3
## 8189                                                     display   3
## 8190                                                     english   3
## 8191                                                         way   3
## 8192                                                    american   3
## 8193                                                         wit   3
## 8194                                                        good   3
## 8195                                                         get   3
## 8196                                                    mushroom   3
## 8197                                                         one   3
## 8198                                                      philly   3
## 8199                                                        spin   3
## 8200                                                       think   3
## 8201                                                        want   3
## 8202                                                   provolone   3
## 8203                                                       genos   3
## 8204                                                       drink   3
## 8205                                                 cheesesteak   3
## 8206                                                   condiment   3
## 8207                                                  everything   3
## 8208                                                        food   3
## 8209                                                        much   3
## 8210                                                     mustard   3
## 8211                                                       place   3
## 8212                                                        roll   3
## 8213                                                        salt   3
## 8214                                                 cheesesteak   3
## 8215                                                       genos   3
## 8216                                                       price   3
## 8217                                                        meat   3
## 8218                                                       order   3
## 8219                                                  disappoint   3
## 8220                                                    attitude   3
## 8221                                                      racist   3
## 8222                                                      remark   3
## 8223                                                      philly   3
## 8224                                                        good   3
## 8225                                                       steak   3
## 8226                                                         pat   3
## 8227                                                       spend   3
## 8228                                                        many   3
## 8229                                                      market   3
## 8230                                                       place   3
## 8231                                                        want   3
## 8232                                                        yelp   3
## 8233                                                        will   3
## 8234                                                   authentic   3
## 8235                                                        good   3
## 8236                                                       quick   3
## 8237                                                       slice   3
## 8238                                                         way   3
## 8239                                                       bland   3
## 8240                                                 cheesesteak   3
## 8241                                                       chewy   3
## 8242                                                     couldnt   3
## 8243                                                        feel   3
## 8244                                                      flavor   3
## 8245                                                        hard   3
## 8246                                                         hot   3
## 8247                                                       juicy   3
## 8248                                                        know   3
## 8249                                                        lack   3
## 8250                                                        much   3
## 8251                                                        rude   3
## 8252                                                       speak   3
## 8253                                                      stupid   3
## 8254                                                        suck   3
## 8255                                                        sure   3
## 8256                                                       think   3
## 8257                                                       wasnt   3
## 8258                                                         way   3
## 8259                                                        wish   3
## 8260                                                       youre   3
## 8261                                                        ever   3
## 8262                                                       genos   3
## 8263                                                        give   3
## 8264                                                        like   3
## 8265                                                       visit   3
## 8266                                                    sandwich   3
## 8267                                                       visit   3
## 8268                                                       visit   3
## 8269                                                        find   3
## 8270                                                         get   3
## 8271                                                        skip   3
## 8272                                                     tourist   3
## 8273                                                      unless   3
## 8274                                                        meat   3
## 8275                                                     quality   3
## 8276                                                     supreme   3
## 8277                                                       visit   3
## 8278                                                       order   3
## 8279                                                         see   3
## 8280                                                         day   3
## 8281                                                        just   3
## 8282                                                        nice   3
## 8283                                                         see   3
## 8284                                                     service   3
## 8285                                                      philly   3
## 8286                                                        come   3
## 8287                                                      detail   3
## 8288                                                        food   3
## 8289                                                        good   3
## 8290                                                        know   3
## 8291                                                         one   3
## 8292                                                     service   3
## 8293                                                       steak   3
## 8294                                                       thing   3
## 8295                                                       think   3
## 8296                                                         two   3
## 8297                                                       wasnt   3
## 8298                                                        will   3
## 8299                                                      amount   3
## 8300                                                        sign   3
## 8301                                                         eat   3
## 8302                                                        free   3
## 8303                                                         get   3
## 8304                                                          go   3
## 8305                                                        good   3
## 8306                                                       order   3
## 8307                                                         pat   3
## 8308                                                       place   3
## 8309                                                       right   3
## 8310                                                       thing   3
## 8311                                                        bite   3
## 8312                                                        joey   3
## 8313                                                        step   3
## 8314                                                       bread   3
## 8315                                                        just   3
## 8316                                                        meat   3
## 8317                                                        nice   3
## 8318                                                     nothing   3
## 8319                                                         pat   3
## 8320                                                       wasnt   3
## 8321                                                        meat   3
## 8322                                                      cheese   3
## 8323                                                    employee   3
## 8324                                                       genos   3
## 8325                                                          go   3
## 8326                                                        hell   3
## 8327                                                        lady   3
## 8328                                                   miserable   3
## 8329                                                       never   3
## 8330                                                      racist   3
## 8331                                                        take   3
## 8332                                                       thats   3
## 8333                                                  unpleasant   3
## 8334                                                        back   3
## 8335                                                        good   3
## 8336                                                       place   3
## 8337                                                        back   3
## 8338                                                         say   3
## 8339                                                       arent   3
## 8340                                                         bun   3
## 8341                                                        cant   3
## 8342                                                        cash   3
## 8343                                                 cheesesteak   3
## 8344                                                     couldnt   3
## 8345                                                      decent   3
## 8346                                                      either   3
## 8347                                                         far   3
## 8348                                                        fast   3
## 8349                                                        find   3
## 8350                                                      friend   3
## 8351                                                      highly   3
## 8352                                                    honestly   3
## 8353                                                        kind   3
## 8354                                                       local   3
## 8355                                                        melt   3
## 8356                                                       never   3
## 8357                                                     overall   3
## 8358                                                philadelphia   3
## 8359                                                       ready   3
## 8360                                                       right   3
## 8361                                                        roll   3
## 8362                                                       since   3
## 8363                                                    slightly   3
## 8364                                                       staff   3
## 8365                                                       still   3
## 8366                                                   tasteless   3
## 8367                                                      theyre   3
## 8368                                                       thing   3
## 8369                                                        time   3
## 8370                                                         ton   3
## 8371                                                         top   3
## 8372                                                         try   3
## 8373                                                          us   3
## 8374                                                           w   3
## 8375                                                       whole   3
## 8376                                                         wiz   3
## 8377                                                       youll   3
## 8378                                                       youre   3
## 8379                                                       palin   3
## 8380                                                     morning   3
## 8381                                                   condiment   3
## 8382                                                        just   3
## 8383                                                        room   3
## 8384                                                    sandwich   3
## 8385                                                    anything   3
## 8386                                                         bad   3
## 8387                                                  definitely   3
## 8388                                                  disappoint   3
## 8389                                                     english   3
## 8390                                                       enjoy   3
## 8391                                                        even   3
## 8392                                                  experience   3
## 8393                                                       hasnt   3
## 8394                                                        line   3
## 8395                                                        look   3
## 8396                                                        love   3
## 8397                                                        must   3
## 8398                                                        need   3
## 8399                                                        next   3
## 8400                                                   provolone   3
## 8401                                                         put   3
## 8402                                                      really   3
## 8403                                                       staff   3
## 8404                                                      theres   3
## 8405                                                        true   3
## 8406                                                         two   3
## 8407                                                  understand   3
## 8408                                                       visit   3
## 8409                                                        whiz   3
## 8410                                                         wit   3
## 8411                                                       worth   3
## 8412                                                       lunch   3
## 8413                                                      flavor   3
## 8414                                                        just   3
## 8415                                                        cash   3
## 8416                                                        good   3
## 8417                                                        long   3
## 8418                                                        open   3
## 8419                                                       place   3
## 8420                                                    anything   3
## 8421                                                cheesesteaks   3
## 8422                                                       other   3
## 8423                                                     picture   3
## 8424                                                      racist   3
## 8425                                                  restaurant   3
## 8426                                                      theres   3
## 8427                                                      travel   3
## 8428                                                         two   3
## 8429                                                         lot   3
## 8430                                                      really   3
## 8431                                                       thick   3
## 8432                                                         use   3
## 8433                                                        work   3
## 8434                                                        even   3
## 8435                                                         get   3
## 8436                                                       place   3
## 8437                                                      though   3
## 8438                                                        coke   3
## 8439                                                        cold   3
## 8440                                                   delicious   3
## 8441                                                       place   3
## 8442                                                          us   3
## 8443                                                      always   3
## 8444                                                          do   3
## 8445                                                        fine   3
## 8446                                                         get   3
## 8447                                                          go   3
## 8448                                                        kind   3
## 8449                                                         one   3
## 8450                                                     problem   3
## 8451                                                      really   3
## 8452                                                       since   3
## 8453                                                        foot   3
## 8454                                                       block   3
## 8455                                                      friend   3
## 8456                                                       light   3
## 8457                                                      change   3
## 8458                                                       taste   3
## 8459                                                          go   3
## 8460                                                       build   3
## 8461                                                          do   3
## 8462                                                        love   3
## 8463                                                       order   3
## 8464                                                        town   3
## 8465                                                         see   3
## 8466                                                      demand   3
## 8467                                                  everywhere   3
## 8468                                                        food   3
## 8469                                                          go   3
## 8470                                                        just   3
## 8471                                                      little   3
## 8472                                                   offensive   3
## 8473                                                     outside   3
## 8474                                                    register   3
## 8475                                                         see   3
## 8476                                                         pat   3
## 8477                                                       price   3
## 8478                                                        menu   3
## 8479                                                         put   3
## 8480                                                     already   3
## 8481                                                         pat   3
## 8482                                                      really   3
## 8483                                                       right   3
## 8484                                                           s   3
## 8485                                                        year   3
## 8486                                                        area   3
## 8487                                                       bench   3
## 8488                                                       enjoy   3
## 8489                                                         one   3
## 8490                                                       price   3
## 8491                                                      cheese   3
## 8492                                                       steak   3
## 8493                                                    together   3
## 8494                                                         cut   3
## 8495                                                      flavor   3
## 8496                                                       genos   3
## 8497                                                       grill   3
## 8498                                                      heaven   3
## 8499                                                        like   3
## 8500                                                        make   3
## 8501                                                    sandwich   3
## 8502                                                      thinly   3
## 8503                                                         bad   3
## 8504                                                       cheap   3
## 8505                                                       chewy   3
## 8506                                                   different   3
## 8507                                                    business   3
## 8508                                                        line   3
## 8509                                                        side   3
## 8510                                                       slice   3
## 8511                                                        good   3
## 8512                                                       trash   3
## 8513                                                       juice   3
## 8514                                                       order   3
## 8515                                                         bun   3
## 8516                                                        good   3
## 8517                                                      cheese   3
## 8518                                                 cheesesteak   3
## 8519                                                         fry   3
## 8520                                                        meat   3
## 8521                                                     overall   3
## 8522                                                      really   3
## 8523                                                      cheese   3
## 8524                                                 cheesesteak   3
## 8525                                                        star   3
## 8526                                                         say   3
## 8527                                                        tell   3
## 8528                                                        whos   3
## 8529                                                         bad   3
## 8530                                                         can   3
## 8531                                                         ive   3
## 8532                                                        just   3
## 8533                                                        less   3
## 8534                                                      little   3
## 8535                                                        make   3
## 8536                                                        need   3
## 8537                                                       right   3
## 8538                                                       taste   3
## 8539                                                        will   3
## 8540                                                        take   3
## 8541                                                       didnt   3
## 8542                                                          do   3
## 8543                                                        just   3
## 8544                                                  california   3
## 8545                                                    american   3
## 8546                                                   different   3
## 8547                                                       local   3
## 8548                                                      native   3
## 8549                                                     perfect   3
## 8550                                                     spanish   3
## 8551                                                      cheese   3
## 8552                                                        meat   3
## 8553                                                      philly   3
## 8554                                                       steak   3
## 8555                                                        like   3
## 8556                                                       sauce   3
## 8557                                                      cheese   3
## 8558                                                        hair   3
## 8559                                                        half   3
## 8560                                                        team   3
## 8561                                                      across   3
## 8562                                                      always   3
## 8563                                                      around   3
## 8564                                                 cheesesteak   3
## 8565                                                          do   3
## 8566                                                        line   3
## 8567                                                       local   3
## 8568                                                        much   3
## 8569                                                         one   3
## 8570                                                         pat   3
## 8571                                                      cheese   3
## 8572                                                     century   3
## 8573                                                        time   3
## 8574                                                    actually   3
## 8575                                                      either   3
## 8576                                                   extremely   3
## 8577                                                         get   3
## 8578                                                        just   3
## 8579                                                      member   3
## 8580                                                         pat   3
## 8581                                                       wasnt   3
## 8582                                                        good   3
## 8583                                                      around   3
## 8584                                                         eat   3
## 8585                                                       front   3
## 8586                                                       order   3
## 8587                                                      street   3
## 8588                                                      cheese   3
## 8589                                                philadelphia   3
## 8590                                                       genos   3
## 8591                                                         ill   3
## 8592                                                     instead   3
## 8593                                                       joint   3
## 8594                                                        like   3
## 8595                                                        meat   3
## 8596                                                         one   3
## 8597                                                         pat   3
## 8598                                                      people   3
## 8599                                                      philly   3
## 8600                                                        rude   3
## 8601                                                    sandwich   3
## 8602                                                        yelp   3
## 8603                                                         pat   3
## 8604                                                     america   3
## 8605                                                    official   3
## 8606                                                      philly   3
## 8607                                                    although   3
## 8608                                                     another   3
## 8609                                                    anything   3
## 8610                                                       awful   3
## 8611                                                        back   3
## 8612                                                       begin   3
## 8613                                                         big   3
## 8614                                                       bring   3
## 8615                                                        cant   3
## 8616                                                      choice   3
## 8617                                                     counter   3
## 8618                                                      course   3
## 8619                                                       crave   3
## 8620                                                       cross   3
## 8621                                                         day   3
## 8622                                                   delicious   3
## 8623                                                  disappoint   3
## 8624                                                         eat   3
## 8625                                                   elsewhere   3
## 8626                                                       enjoy   3
## 8627                                                      enough   3
## 8628                                                       extra   3
## 8629                                                      famous   3
## 8630                                                        feel   3
## 8631                                                        fine   3
## 8632                                                        flat   3
## 8633                                                  flavorless   3
## 8634                                                         god   3
## 8635                                                        grey   3
## 8636                                                          id   3
## 8637                                                ishkabibbles   3
## 8638                                                        kind   3
## 8639                                                       leave   3
## 8640                                                        less   3
## 8641                                                         may   3
## 8642                                                         meh   3
## 8643                                                       money   3
## 8644                                                           n   3
## 8645                                                        nice   3
## 8646                                                        none   3
## 8647                                                        open   3
## 8648                                                      oppose   3
## 8649                                                      people   3
## 8650                                                     perfect   3
## 8651                                                      prefer   3
## 8652                                                       quite   3
## 8653                                                        read   3
## 8654                                                        real   3
## 8655                                                       rival   3
## 8656                                                         see   3
## 8657                                                       serve   3
## 8658                                                       shred   3
## 8659                                                        side   3
## 8660                                                      simply   3
## 8661                                                       since   3
## 8662                                                         sit   3
## 8663                                                        soda   3
## 8664                                                       stand   3
## 8665                                                        star   3
## 8666                                                       start   3
## 8667                                                       still   3
## 8668                                                       strip   3
## 8669                                                     suppose   3
## 8670                                                      theres   3
## 8671                                                      thinly   3
## 8672                                                      though   3
## 8673                                                        time   3
## 8674                                                          um   3
## 8675                                                       visit   3
## 8676                                                        wait   3
## 8677                                                         war   3
## 8678                                                       white   3
## 8679                                                      window   3
## 8680                                                       world   3
## 8681                                                       youre   3
## 8682                                                        away   3
## 8683                                                       genos   3
## 8684                                                    together   3
## 8685                                                       order   3
## 8686                                                   delicious   3
## 8687                                                          do   3
## 8688                                                        even   3
## 8689                                                        give   3
## 8690                                                      hungry   3
## 8691                                                        like   3
## 8692                                                        line   3
## 8693                                                        live   3
## 8694                                                        love   3
## 8695                                                        okay   3
## 8696                                                      prefer   3
## 8697                                                      really   3
## 8698                                                     suggest   3
## 8699                                                       taste   3
## 8700                                                         win   3
## 8701                                                        ache   3
## 8702                                                        pain   3
## 8703                                                       throw   3
## 8704                                                      cheese   3
## 8705                                                          go   3
## 8706                                                        just   3
## 8707                                                        list   3
## 8708                                                philadelphia   3
## 8709                                                       taste   3
## 8710                                                        tour   3
## 8711                                                     tourist   3
## 8712                                                       visit   3
## 8713                                                         way   3
## 8714                                                       front   3
## 8715                                                       genos   3
## 8716                                                       genos   3
## 8717                                                    actually   3
## 8718                                                      always   3
## 8719                                                     another   3
## 8720                                                         can   3
## 8721                                                        cant   3
## 8722                                                      choose   3
## 8723                                                        come   3
## 8724                                                  definitely   3
## 8725                                                          do   3
## 8726                                                         eat   3
## 8727                                                      friend   3
## 8728                                                        give   3
## 8729                                                         let   3
## 8730                                                        must   3
## 8731                                                     overall   3
## 8732                                                      philly   3
## 8733                                                        real   3
## 8734                                                         say   3
## 8735                                                       steak   3
## 8736                                                        take   3
## 8737                                                       taste   3
## 8738                                                      theres   3
## 8739                                                     tourist   3
## 8740                                                        club   3
## 8741                                                        just   3
## 8742                                                       bread   3
## 8743                                                 cheesesteak   3
## 8744                                                        roll   3
## 8745                                                        spin   3
## 8746                                                       bread   3
## 8747                                                    sandwich   3
## 8748                                                        good   3
## 8749                                                      theres   3
## 8750                                                         get   3
## 8751                                                       night   3
## 8752                                                   afternoon   3
## 8753                                                       bland   3
## 8754                                                        nice   3
## 8755                                                        rude   3
## 8756                                                       genos   3
## 8757                                                    military   3
## 8758                                                      racist   3
## 8759                                                      anyone   3
## 8760                                                         big   3
## 8761                                                         can   3
## 8762                                                        even   3
## 8763                                                       genos   3
## 8764                                                          id   3
## 8765                                                        just   3
## 8766                                                       owner   3
## 8767                                                      people   3
## 8768                                                       think   3
## 8769                                                        will   3
## 8770                                                        much   3
## 8771                                                        fast   3
## 8772                                                        just   3
## 8773                                                        seat   3
## 8774                                                        bite   3
## 8775                                                         bus   3
## 8776                                                        cake   3
## 8777                                                      couple   3
## 8778                                                         get   3
## 8779                                                        half   3
## 8780                                                       pride   3
## 8781                                                      second   3
## 8782                                                     someone   3
## 8783                                                   somewhere   3
## 8784                                                        star   3
## 8785                                                        town   3
## 8786                                                        food   3
## 8787                                                       genos   3
## 8788                                                     awesome   3
## 8789                                                       awful   3
## 8790                                                  comparison   3
## 8791                                                          do   3
## 8792                                                         get   3
## 8793                                                        make   3
## 8794                                                     nothing   3
## 8795                                                      prefer   3
## 8796                                                   provolone   3
## 8797                                                     texture   3
## 8798                                                        spin   3
## 8799                                                       bread   3
## 8800                                                         fry   3
## 8801                                                        good   3
## 8802                                                       party   3
## 8803                                                        come   3
## 8804                                                       didnt   3
## 8805                                                  difference   3
## 8806                                                          do   3
## 8807                                                       first   3
## 8808                                                       genos   3
## 8809                                                         get   3
## 8810                                                        like   3
## 8811                                                       local   3
## 8812                                                         one   3
## 8813                                                         you   3
## 8814                                                      dollar   3
## 8815                                                        chop   3
## 8816                                                   flavorful   3
## 8817                                                     quality   3
## 8818                                                    customer   3
## 8819                                                        food   3
## 8820                                                        good   3
## 8821                                                     service   3
## 8822                                                         get   3
## 8823                                                        like   3
## 8824                                                      philly   3
## 8825                                                        yelp   3
## 8826                                                      marine   3
## 8827                                                         bad   3
## 8828                                                        make   3
## 8829                                                         one   3
## 8830                                                      really   3
## 8831                                                      reason   3
## 8832                                                       thing   3
## 8833                                                         way   3
## 8834                                                      indoor   3
## 8835                                                        just   3
## 8836                                                        line   3
## 8837                                                        many   3
## 8838                                                         one   3
## 8839                                                       place   3
## 8840                                                         two   3
## 8841                                                         way   3
## 8842                                                        make   3
## 8843                                                        much   3
## 8844                                                        open   3
## 8845                                                       still   3
## 8846                                                       chewy   3
## 8847                                                       layer   3
## 8848                                                       runny   3
## 8849                                                       steak   3
## 8850                                                         bad   3
## 8851                                                 cheesesteak   3
## 8852                                                        just   3
## 8853                                                        keep   3
## 8854                                                        line   3
## 8855                                                      little   3
## 8856                                                        meat   3
## 8857                                                         pat   3
## 8858                                                      people   3
## 8859                                                         say   3
## 8860                                                        sure   3
## 8861                                                       taste   3
## 8862                                                       think   3
## 8863                                                         fun   3
## 8864                                                       funny   3
## 8865                                                       great   3
## 8866                                                         guy   3
## 8867                                                        know   3
## 8868                                                        must   3
## 8869                                                         one   3
## 8870                                                  overpriced   3
## 8871                                                      philly   3
## 8872                                                      prefer   3
## 8873                                                         say   3
## 8874                                                     service   3
## 8875                                                       think   3
## 8876                                                        time   3
## 8877                                                       didnt   3
## 8878                                                          im   3
## 8879                                                        just   3
## 8880                                                        like   3
## 8881                                                        meat   3
## 8882                                                         one   3
## 8883                                                      really   3
## 8884                                                      dollar   3
## 8885                                                      cheese   3
## 8886                                                cheesesteaks   3
## 8887                                                       place   3
## 8888                                                        time   3
## 8889                                                        year   3
## 8890                                                       genos   3
## 8891                                                        also   3
## 8892                                                         bad   3
## 8893                                                       cause   3
## 8894                                                       check   3
## 8895                                                 cheesesteak   3
## 8896                                                      decide   3
## 8897                                                          do   3
## 8898                                                      either   3
## 8899                                                  experience   3
## 8900                                                        feel   3
## 8901                                                        life   3
## 8902                                                         pat   3
## 8903                                                        wait   3
## 8904                                                       youre   3
## 8905                                                        bite   3
## 8906                                                       bring   3
## 8907                                                        know   3
## 8908                                                 cheesesteak   3
## 8909                                                          go   3
## 8910                                                 cheesesteak   3
## 8911                                                        good   3
## 8912                                                       place   3
## 8913                                                        make   3
## 8914                                                       notch   3
## 8915                                                     service   3
## 8916                                                        want   3
## 8917                                              disappointment   3
## 8918                                                       waste   3
## 8919                                                  disappoint   3
## 8920                                                      barely   3
## 8921                                                        bite   3
## 8922                                                        chew   3
## 8923                                                         eat   3
## 8924                                                       genos   3
## 8925                                                       steak   3
## 8926                                                philadelphia   3
## 8927                                                      appeal   3
## 8928                                                      beware   3
## 8929                                                     country   3
## 8930                                                        food   3
## 8931                                                        give   3
## 8932                                                       order   3
## 8933                                                philadelphia   3
## 8934                                                         see   3
## 8935                                                       steak   3
## 8936                                                       stuff   3
## 8937                                                       think   3
## 8938                                                         pat   3
## 8939                                                          do   3
## 8940                                                      friend   3
## 8941                                                        good   3
## 8942                                                        many   3
## 8943                                                     weekend   3
## 8944                                                        like   3
## 8945                                                        good   3
## 8946                                                      cheese   3
## 8947                                                 cheesesteak   3
## 8948                                                       along   3
## 8949                                                          do   3
## 8950                                                        like   3
## 8951                                                       local   3
## 8952                                                         now   3
## 8953                                                         pat   3
## 8954                                                      really   3
## 8955                                                       serve   3
## 8956                                                       steak   3
## 8957                                                     tourist   3
## 8958                                                         try   3
## 8959                                                         yes   3
## 8960                                                        mile   3
## 8961                                                         way   3
## 8962                                                       bread   3
## 8963                                                    complete   3
## 8964                                                      decide   3
## 8965                                                        east   3
## 8966                                                        home   3
## 8967                                                        just   3
## 8968                                                         nyc   3
## 8969                                                       south   3
## 8970                                                       visit   3
## 8971                                                       great   3
## 8972                                                        able   3
## 8973                                                         big   3
## 8974                                                        bite   3
## 8975                                                     compare   3
## 8976                                                  competitor   3
## 8977                                                  experience   3
## 8978                                                      figure   3
## 8979                                                        food   3
## 8980                                                      friend   3
## 8981                                                       ginos   3
## 8982                                                        hard   3
## 8983                                                        hear   3
## 8984                                                         hot   3
## 8985                                                    infamous   3
## 8986                                                         let   3
## 8987                                                philadelphia   3
## 8988                                                     popular   3
## 8989                                                         put   3
## 8990                                                       roast   3
## 8991                                                         say   3
## 8992                                                        tell   3
## 8993                                                       thing   3
## 8994                                                       think   3
## 8995                                                        will   3
## 8996                                                         war   3
## 8997                                                        size   3
## 8998                                                        cent   3
## 8999                                                      friend   3
## 9000                                                        like   3
## 9001                                                      prefer   3
## 9002                                                    separate   3
## 9003                                                       young   3
## 9004                                                       place   3
## 9005                                                          uh   3
## 9006                                                       onion   3
## 9007                                                         big   3
## 9008                                                        need   3
## 9009                                                      people   3
## 9010                                                       place   3
## 9011                                                         get   3
## 9012                                                      cheese   3
## 9013                                                     arrival   3
## 9014                                                        away   3
## 9015                                                        come   3
## 9016                                                     impress   3
## 9017                                                       steak   3
## 9018                                                        wait   3
## 9019                                                       cheap   3
## 9020                                                         eat   3
## 9021                                                       glove   3
## 9022                                                          go   3
## 9023                                                     ketchup   3
## 9024                                                         low   3
## 9025                                                        real   3
## 9026                                                    restroom   3
## 9027                                                       taste   3
## 9028                                                       thick   3
## 9029                                              disappointment   3
## 9030                                                        food   3
## 9031                                                      philly   3
## 9032                                                        menu   3
## 9033                                                        pass   3
## 9034                                                         pat   3
## 9035                                                       place   3
## 9036                                                        area   3
## 9037                                                        just   3
## 9038                                                        look   3
## 9039                                                  restaurant   3
## 9040                                                         see   3
## 9041                                                       south   3
## 9042                                                       steak   3
## 9043                                                       youre   3
## 9044                                                          go   3
## 9045                                                    american   3
## 9046                                                         bad   3
## 9047                                                        even   3
## 9048                                                         pat   3
## 9049                                                      really   3
## 9050                                                    sandwich   3
## 9051                                                       steak   3
## 9052                                                       wasnt   3
## 9053                                                    distance   3
## 9054                                                       right   3
## 9055                                                      street   3
## 9056                                                         way   3
## 9057                                                          go   3
## 9058                                                        cash   3
## 9059                                                       check   3
## 9060                                                        feel   3
## 9061                                                       first   3
## 9062                                                         gag   3
## 9063                                                        know   3
## 9064                                                   patsgenos   3
## 9065                                                       place   3
## 9066                                                       vomit   3
## 9067                                                       bread   3
## 9068                                                        hand   3
## 9069                                                       amaze   3
## 9070                                                       aware   3
## 9071                                                  disappoint   3
## 9072                                                         fan   3
## 9073                                                         hot   3
## 9074                                                        look   3
## 9075                                                       quite   3
## 9076                                                        spin   3
## 9077                                                      thrill   3
## 9078                                                       toast   3
## 9079                                                        cook   3
## 9080                                                        food   3
## 9081                                                        make   3
## 9082                                                        just   3
## 9083                                                         cut   3
## 9084                                                          dc   3
## 9085                                                          do   3
## 9086                                                         fry   3
## 9087                                                      greasy   3
## 9088                                                          id   3
## 9089                                                      little   3
## 9090                                                        long   3
## 9091                                                        nice   3
## 9092                                                   overhyped   3
## 9093                                                      please   3
## 9094                                                      street   3
## 9095                                                        town   3
## 9096                                                       treat   3
## 9097                                                        will   3
## 9098                                                 cheesesteak   3
## 9099                                                         try   3
## 9100                                                         get   3
## 9101                                                        last   3
## 9102                                                    anything   3
## 9103                                                       great   3
## 9104                                                      philly   3
## 9105                                                          im   3
## 9106                                                      philly   3
## 9107                                                         pat   3
## 9108                                                       bread   3
## 9109                                                        bite   3
## 9110                                                        drip   3
## 9111                                                       guess   3
## 9112                                                         hot   3
## 9113                                                        kind   3
## 9114                                                        line   3
## 9115                                                        much   3
## 9116                                                        nice   3
## 9117                                                          oh   3
## 9118                                                      option   3
## 9119                                                      pepper   3
## 9120                                                       salty   3
## 9121                                                         say   3
## 9122                                                   something   3
## 9123                                                         try   3
## 9124                                                        turn   3
## 9125                                                      watery   3
## 9126                                                         way   3
## 9127                                                         yes   3
## 9128                                                 cheesesteak   3
## 9129                                                        chop   3
## 9130                                                      family   3
## 9131                                                       place   3
## 9132                                                      cheese   3
## 9133                                                    daughter   3
## 9134                                                         get   3
## 9135                                                         try   3
## 9136                                                       admit   3
## 9137                                                   certainly   3
## 9138                                                        help   3
## 9139                                                        know   3
## 9140                                                        love   3
## 9141                                                       order   3
## 9142                                                       place   3
## 9143                                                        stop   3
## 9144                                                       taste   3
## 9145                                                        wait   3
## 9146                                                   landslide   3
## 9147                                                        blow   3
## 9148                                                        cash   3
## 9149                                                       first   3
## 9150                                                         guy   3
## 9151                                                      notice   3
## 9152                                                         pay   3
## 9153                                                        rude   3
## 9154                                                        seem   3
## 9155                                                        soda   3
## 9156                                                        want   3
## 9157                                                       whole   3
## 9158                                                         eat   3
## 9159                                                       never   3
## 9160                                                        read   3
## 9161                                                         get   3
## 9162                                                        good   3
## 9163                                                        just   3
## 9164                                                      philly   3
## 9165                                                      please   3
## 9166                                                         wit   3
## 9167                                                     without   3
## 9168                                                         one   3
## 9169                                                        also   3
## 9170                                                         can   3
## 9171                                                  definitely   3
## 9172                                                       didnt   3
## 9173                                                          go   3
## 9174                                                        know   3
## 9175                                                      pepper   3
## 9176                                                       tasty   3
## 9177                                                      watery   3
## 9178                                                         way   3
## 9179                                                      witout   3
## 9180                                                         wiz   3
## 9181                                                     counter   3
## 9182                                                        fuss   3
## 9183                                                        give   3
## 9184                                                      return   3
## 9185                                                        take   3
## 9186                                                      advice   3
## 9187                                                         day   3
## 9188                                                       order   3
## 9189                                                      really   3
## 9190                                                        will   3
## 9191                                                      window   3
## 9192                                                       great   3
## 9193                                                       check   3
## 9194                                                         eat   3
## 9195                                                      effort   3
## 9196                                                        good   3
## 9197                                                        line   3
## 9198                                                          oh   3
## 9199                                                        stop   3
## 9200                                                        trek   3
## 9201                                                       drive   3
## 9202                                                         let   3
## 9203                                                        mind   3
## 9204                                                      return   3
## 9205                                                         say   3
## 9206                                                        wait   3
## 9207                                                       waste   3
## 9208                                                       taste   3
## 9209                                                       place   3
## 9210                                                       paper   3
## 9211                                                         bad   3
## 9212                                                      cheese   3
## 9213                                                 cheesesteak   3
## 9214                                                      either   3
## 9215                                                         way   3
## 9216                                                          go   3
## 9217                                                        good   3
## 9218                                                        just   3
## 9219                                                        late   3
## 9220                                                       never   3
## 9221                                                         pat   3
## 9222                                                        time   3
## 9223                                                    whenever   3
## 9224                                                    customer   3
## 9225                                                       daddy   3
## 9226                                                        page   3
## 9227                                                          do   3
## 9228                                                         pat   3
## 9229                                                         say   3
## 9230                                                       taste   3
## 9231                                                      theres   3
## 9232                                                     another   3
## 9233                                                        love   3
## 9234                                                    probably   3
## 9235                                                         see   3
## 9236                                                neighborhood   3
## 9237                                                philadelphia   3
## 9238                                                        read   3
## 9239                                                        talk   3
## 9240                                                        wait   3
## 9241                                                         see   3
## 9242                                                         yum   3
## 9243                                                      chance   2
## 9244                                                 cheesesteak   2
## 9245                                                    favorite   2
## 9246                                                        good   2
## 9247                                                       guess   2
## 9248                                                    language   2
## 9249                                                       steak   2
## 9250                                                       thing   2
## 9251                                                           4   2
## 9252                                                       place   2
## 9253                                                       world   2
## 9254                                                        give   2
## 9255                                                          go   2
## 9256                                                        hold   2
## 9257                                                        make   2
## 9258                                                       order   2
## 9259                                                        park   2
## 9260                                                        tell   2
## 9261                                                       trash   2
## 9262                                                         bad   2
## 9263                                                   delicious   2
## 9264                                                          do   2
## 9265                                                        hate   2
## 9266                                                        none   2
## 9267                                                     nothing   2
## 9268                                                      season   2
## 9269                                                    terrible   2
## 9270                                                        zero   2
## 9271                                                       booze   2
## 9272                                                         may   2
## 9273                                                       sound   2
## 9274                                                 creditdebit   2
## 9275                                                        goal   2
## 9276                                                     america   2
## 9277                                                     another   2
## 9278                                                     country   2
## 9279                                                        make   2
## 9280                                                        road   2
## 9281                                                    sidewalk   2
## 9282                                                        town   2
## 9283                                                        good   2
## 9284                                                         bad   2
## 9285                                                         buy   2
## 9286                                                        cook   2
## 9287                                                    favorite   2
## 9288                                                        feel   2
## 9289                                                        find   2
## 9290                                                      flavor   2
## 9291                                                          go   2
## 9292                                                        jims   2
## 9293                                                        line   2
## 9294                                                        mean   2
## 9295                                                         one   2
## 9296                                                       order   2
## 9297                                                        sell   2
## 9298                                                       serve   2
## 9299                                                       small   2
## 9300                                                    somewhat   2
## 9301                                                    surprise   2
## 9302                                                        take   2
## 9303                                                       tasty   2
## 9304                                                       bunch   2
## 9305                                                  creaminess   2
## 9306                                                       genos   2
## 9307                                                        good   2
## 9308                                                      insult   2
## 9309                                                      little   2
## 9310                                                        make   2
## 9311                                                        much   2
## 9312                                                    mushroom   2
## 9313                                                         two   2
## 9314                                                      dollar   2
## 9315                                                        come   2
## 9316                                                          do   2
## 9317                                                        skip   2
## 9318                                                    american   2
## 9319                                                        time   2
## 9320                                                         big   2
## 9321                                                        come   2
## 9322                                                         get   2
## 9323                                                          im   2
## 9324                                                        make   2
## 9325                                                       place   2
## 9326                                                    remember   2
## 9327                                                       still   2
## 9328                                                         eat   2
## 9329                                                       other   2
## 9330                                                      people   2
## 9331                                                         pat   2
## 9332                                                         get   2
## 9333                                                        good   2
## 9334                                                    employee   2
## 9335                                                       genos   2
## 9336                                                          go   2
## 9337                                                         way   2
## 9338                                                       place   2
## 9339                                                       onion   2
## 9340                                                        feel   2
## 9341                                                         get   2
## 9342                                                        good   2
## 9343                                                        like   2
## 9344                                                         one   2
## 9345                                                         raw   2
## 9346                                                      review   2
## 9347                                                        seem   2
## 9348                                                         two   2
## 9349                                                    sidewalk   2
## 9350                                                         way   2
## 9351                                                       genos   2
## 9352                                                        good   2
## 9353                                                          go   2
## 9354                                                       grill   2
## 9355                                                         pay   2
## 9356                                                        wrap   2
## 9357                                                          do   2
## 9358                                                         pat   2
## 9359                                                       think   2
## 9360                                                        beef   2
## 9361                                                         add   2
## 9362                                                         big   2
## 9363                                                        bite   2
## 9364                                                       bread   2
## 9365                                                       cheap   2
## 9366                                                        cold   2
## 9367                                                        cook   2
## 9368                                                   expensive   2
## 9369                                                        fair   2
## 9370                                                         fan   2
## 9371                                                       fatty   2
## 9372                                                         fun   2
## 9373                                                      greasy   2
## 9374                                                        hand   2
## 9375                                                     include   2
## 9376                                                      insult   2
## 9377                                                       juicy   2
## 9378                                                        just   2
## 9379                                                        kind   2
## 9380                                                       maybe   2
## 9381                                                        meat   2
## 9382                                                     mention   2
## 9383                                                        much   2
## 9384                                                        note   2
## 9385                                                      notice   2
## 9386                                                     outdoor   2
## 9387                                                        park   2
## 9388                                                     picture   2
## 9389                                                      pretty   2
## 9390                                                         put   2
## 9391                                                      racist   2
## 9392                                                   recommend   2
## 9393                                                       since   2
## 9394                                                       slice   2
## 9395                                                        soft   2
## 9396                                                        stop   2
## 9397                                                     support   2
## 9398                                                       thick   2
## 9399                                                       think   2
## 9400                                                       tough   2
## 9401                                                         wit   2
## 9402                                                         ive   2
## 9403                                                        like   2
## 9404                                                        line   2
## 9405                                                        live   2
## 9406                                                     nothing   2
## 9407                                                      prefer   2
## 9408                                                    sandwich   2
## 9409                                                       steak   2
## 9410                                                       wasnt   2
## 9411                                                         big   2
## 9412                                                         eat   2
## 9413                                                       enjoy   2
## 9414                                                         fan   2
## 9415                                                        feel   2
## 9416                                                        find   2
## 9417                                                    friendly   2
## 9418                                                        give   2
## 9419                                                       great   2
## 9420                                                      happen   2
## 9421                                                         hot   2
## 9422                                                        keep   2
## 9423                                                       leave   2
## 9424                                                        make   2
## 9425                                                     mention   2
## 9426                                                         opt   2
## 9427                                                         say   2
## 9428                                                       think   2
## 9429                                                      wonder   2
## 9430                                                        beef   2
## 9431                                                       bread   2
## 9432                                                      cheese   2
## 9433                                                 cheesesteak   2
## 9434                                                        come   2
## 9435                                                         day   2
## 9436                                                        food   2
## 9437                                                       great   2
## 9438                                                        just   2
## 9439                                                      matter   2
## 9440                                                        meat   2
## 9441                                                       place   2
## 9442                                                     service   2
## 9443                                                        will   2
## 9444                                                        good   2
## 9445                                                     diverse   2
## 9446                                                          do   2
## 9447                                                     english   2
## 9448                                                         get   2
## 9449                                                    official   2
## 9450                                                      people   2
## 9451                                                        food   2
## 9452                                                     history   2
## 9453                                                        idol   2
## 9454                                                          im   2
## 9455                                                        meat   2
## 9456                                                       pride   2
## 9457                                                        sign   2
## 9458                                                        step   2
## 9459                                                        whiz   2
## 9460                                                      cheese   2
## 9461                                                         big   2
## 9462                                                      grease   2
## 9463                                                 opportunity   2
## 9464                                                       place   2
## 9465                                                       thats   2
## 9466                                                     airport   2
## 9467                                                         day   2
## 9468                                                     example   2
## 9469                                                      famous   2
## 9470                                                         fry   2
## 9471                                                      minute   2
## 9472                                                       order   2
## 9473                                                         pat   2
## 9474                                                      patron   2
## 9475                                                      person   2
## 9476                                                      reason   2
## 9477                                                      review   2
## 9478                                                    sandwich   2
## 9479                                                        spot   2
## 9480                                                        time   2
## 9481                                                        trip   2
## 9482                                                       genos   2
## 9483                                                     neither   2
## 9484                                                        year   2
## 9485                                                        sign   2
## 9486                                                        give   2
## 9487                                                        read   2
## 9488                                                         say   2
## 9489                                                       visit   2
## 9490                                                     english   2
## 9491                                                        food   2
## 9492                                                 spectacular   2
## 9493                                                        want   2
## 9494                                                         wiz   2
## 9495                                                          do   2
## 9496                                                        even   2
## 9497                                                       genos   2
## 9498                                                         get   2
## 9499                                                        good   2
## 9500                                                       steak   2
## 9501                                                         try   2
## 9502                                                       order   2
## 9503                                                        like   2
## 9504                                                     outside   2
## 9505                                                         pat   2
## 9506                                                        cant   2
## 9507                                                       taste   2
## 9508                                                       tough   2
## 9509                                                         pat   2
## 9510                                                       apple   2
## 9511                                                       genos   2
## 9512                                                     nemesis   2
## 9513                                                      always   2
## 9514                                                   basically   2
## 9515                                                      decide   2
## 9516                                                        huge   2
## 9517                                                        like   2
## 9518                                                        look   2
## 9519                                                        many   2
## 9520                                                         may   2
## 9521                                                       night   2
## 9522                                                    probably   2
## 9523                                                       quick   2
## 9524                                                      really   2
## 9525                                                         say   2
## 9526                                                       wasnt   2
## 9527                                                        make   2
## 9528                                                        much   2
## 9529                                                        want   2
## 9530                                                       force   2
## 9531                                                    downtown   2
## 9532                                                         eat   2
## 9533                                                        edge   2
## 9534                                                        good   2
## 9535                                                     italian   2
## 9536                                                     morning   2
## 9537                                                         one   2
## 9538                                                       order   2
## 9539                                                        part   2
## 9540                                                         pat   2
## 9541                                                philadelphia   2
## 9542                                                      really   2
## 9543                                                  restaurant   2
## 9544                                                         see   2
## 9545                                                      street   2
## 9546                                                        time   2
## 9547                                                     tourist   2
## 9548                                                        year   2
## 9549                                                        city   2
## 9550                                                       early   2
## 9551                                                       genos   2
## 9552                                                        just   2
## 9553                                                        line   2
## 9554                                                        noon   2
## 9555                                                      philly   2
## 9556                                                        rude   2
## 9557                                                       admit   2
## 9558                                                       place   2
## 9559                                                         say   2
## 9560                                                       genos   2
## 9561                                                         pat   2
## 9562                                                 cheesesteak   2
## 9563                                                        ever   2
## 9564                                                        give   2
## 9565                                                         guy   2
## 9566                                                     ketchup   2
## 9567                                                        kind   2
## 9568                                                        many   2
## 9569                                                        mayo   2
## 9570                                                        mean   2
## 9571                                                       money   2
## 9572                                                         one   2
## 9573                                                       order   2
## 9574                                                      people   2
## 9575                                                   provolone   2
## 9576                                                     regular   2
## 9577                                                       right   2
## 9578                                                         say   2
## 9579                                                     several   2
## 9580                                                       speak   2
## 9581                                                       genos   2
## 9582                                                       clown   2
## 9583                                                        line   2
## 9584                                                         get   2
## 9585                                                      nearby   2
## 9586                                                        even   2
## 9587                                                       great   2
## 9588                                                      nearby   2
## 9589                                                        next   2
## 9590                                                       order   2
## 9591                                                    customer   2
## 9592                                                        even   2
## 9593                                                       genos   2
## 9594                                                          im   2
## 9595                                                        like   2
## 9596                                                        make   2
## 9597                                                        part   2
## 9598                                                     problem   2
## 9599                                                    sandwich   2
## 9600                                                       wasnt   2
## 9601                                                    anything   2
## 9602                                                      pretty   2
## 9603                                                       steak   2
## 9604                                                       thats   2
## 9605                                                       light   2
## 9606                                                        make   2
## 9607                                                cheesesteaks   2
## 9608                                                       taste   2
## 9609                                                       photo   2
## 9610                                                      cheese   2
## 9611                                                       didnt   2
## 9612                                                         get   2
## 9613                                                     nothing   2
## 9614                                                       taste   2
## 9615                                                       think   2
## 9616                                                     tourist   2
## 9617                                                       avoid   2
## 9618                                                     tourist   2
## 9619                                                       bread   2
## 9620                                                         can   2
## 9621                                                 cheesesteak   2
## 9622                                                       every   2
## 9623                                                         get   2
## 9624                                                         hes   2
## 9625                                                          im   2
## 9626                                                        like   2
## 9627                                                         new   2
## 9628                                                         one   2
## 9629                                                     overall   2
## 9630                                                  restaurant   2
## 9631                                                    sandwich   2
## 9632                                                       speak   2
## 9633                                                      street   2
## 9634                                                       taste   2
## 9635                                                       think   2
## 9636                                                          us   2
## 9637                                                        walk   2
## 9638                                                        want   2
## 9639                                                       genos   2
## 9640                                                        good   2
## 9641                                                        love   2
## 9642                                                    sandwich   2
## 9643                                                       bread   2
## 9644                                                  experience   2
## 9645                                                      flavor   2
## 9646                                                       steak   2
## 9647                                                       stand   2
## 9648                                                        like   2
## 9649                                                       order   2
## 9650                                                         pat   2
## 9651                                                       party   2
## 9652                                                           2   2
## 9653                                                        area   2
## 9654                                                         ask   2
## 9655                                                        base   2
## 9656                                                      boston   2
## 9657                                                      change   2
## 9658                                                      cheese   2
## 9659                                                 cheesesteak   2
## 9660                                                     counter   2
## 9661                                                      couple   2
## 9662                                                    customer   2
## 9663                                                          dc   2
## 9664                                                      decide   2
## 9665                                                         due   2
## 9666                                                         end   2
## 9667                                                       every   2
## 9668                                                        geno   2
## 9669                                                        good   2
## 9670                                                         ill   2
## 9671                                                     instead   2
## 9672                                                        late   2
## 9673                                                        make   2
## 9674                                                       maybe   2
## 9675                                                        meat   2
## 9676                                                         new   2
## 9677                                                         now   2
## 9678                                                     october   2
## 9679                                                       order   2
## 9680                                                    original   2
## 9681                                                philadelphia   2
## 9682                                                     quality   2
## 9683                                                        read   2
## 9684                                                      reason   2
## 9685                                                           s   2
## 9686                                                        seat   2
## 9687                                                        sign   2
## 9688                                                        soon   2
## 9689                                                       steak   2
## 9690                                                    terrible   2
## 9691                                                       thats   2
## 9692                                                         two   2
## 9693                                                       visit   2
## 9694                                                       wasnt   2
## 9695                                                     another   2
## 9696                                                         can   2
## 9697                                                        cold   2
## 9698                                                  definitely   2
## 9699                                                      either   2
## 9700                                                  everything   2
## 9701                                                      expect   2
## 9702                                                         fry   2
## 9703                                                        fuck   2
## 9704                                                       great   2
## 9705                                                    honestly   2
## 9706                                                          im   2
## 9707                                                        make   2
## 9708                                                        mean   2
## 9709                                                      people   2
## 9710                                                        rate   2
## 9711                                                      really   2
## 9712                                                  restaurant   2
## 9713                                                       since   2
## 9714                                                       still   2
## 9715                                                        take   2
## 9716                                                       thats   2
## 9717                                                      theyre   2
## 9718                                                       throw   2
## 9719                                                         tip   2
## 9720                                                        want   2
## 9721                                                         way   2
## 9722                                                        will   2
## 9723                                                        wish   2
## 9724                                                     display   2
## 9725                                                       order   2
## 9726                                                      cynwyd   2
## 9727                                                      cheese   2
## 9728                                                        meat   2
## 9729                                                    sandwich   2
## 9730                                                         bbq   2
## 9731                                                        none   2
## 9732                                                      edible   2
## 9733                                                        even   2
## 9734                                                        give   2
## 9735                                                        good   2
## 9736                                                       grill   2
## 9737                                                        melt   2
## 9738                                                        name   2
## 9739                                              recommendation   2
## 9740                                                       taste   2
## 9741                                                        game   2
## 9742                                                       place   2
## 9743                                                      cheese   2
## 9744                                                      cheese   2
## 9745                                                         get   2
## 9746                                                          go   2
## 9747                                                         one   2
## 9748                                                       taste   2
## 9749                                                       court   2
## 9750                                                        even   2
## 9751                                                         pay   2
## 9752                                                         see   2
## 9753                                                       thank   2
## 9754                                                        will   2
## 9755                                                       didnt   2
## 9756                                                         pat   2
## 9757                                                      philly   2
## 9758                                                       breed   2
## 9759                                                cheesesteaks   2
## 9760                                                        look   2
## 9761                                                        path   2
## 9762                                                       clear   2
## 9763                                                        soft   2
## 9764                                                       bread   2
## 9765                                                        chop   2
## 9766                                                        come   2
## 9767                                                      doesnt   2
## 9768                                                      flavor   2
## 9769                                                       genos   2
## 9770                                                       steak   2
## 9771                                                       still   2
## 9772                                                       taste   2
## 9773                                                   tasteless   2
## 9774                                                       wasnt   2
## 9775                                                      flavor   2
## 9776                                                      cheese   2
## 9777                                                    fountain   2
## 9778                                                        good   2
## 9779                                                    describe   2
## 9780                                                         eat   2
## 9781                                                       whole   2
## 9782                                                        sign   2
## 9783                                                        take   2
## 9784                                                        wait   2
## 9785                                                         bad   2
## 9786                                                        come   2
## 9787                                                         one   2
## 9788                                                      people   2
## 9789                                                       place   2
## 9790                                                       steak   2
## 9791                                                      theyre   2
## 9792                                                       think   2
## 9793                                                     whistle   2
## 9794                                                    franklin   2
## 9795                                                         pat   2
## 9796                                                      people   2
## 9797                                                         hot   2
## 9798                                                      pepper   2
## 9799                                               comprehension   2
## 9800                                                        good   2
## 9801                                                       first   2
## 9802                                                        geno   2
## 9803                                                   challenge   2
## 9804                                                       cheap   2
## 9805                                                       crowd   2
## 9806                                                    customer   2
## 9807                                                        fuss   2
## 9808                                                      greasy   2
## 9809                                                        hype   2
## 9810                                                       issue   2
## 9811                                                       johns   2
## 9812                                                        line   2
## 9813                                                         mac   2
## 9814                                                         one   2
## 9815                                                      philly   2
## 9816                                                     portion   2
## 9817                                                    sandwich   2
## 9818                                                       three   2
## 9819                                                        turn   2
## 9820                                                        shop   2
## 9821                                                        tiao   2
## 9822                                                 cheesesteak   2
## 9823                                                       piece   2
## 9824                                                        bite   2
## 9825                                                        chew   2
## 9826                                                        chop   2
## 9827                                                     couldnt   2
## 9828                                                      decide   2
## 9829                                                   delicious   2
## 9830                                                   difficult   2
## 9831                                                   expensive   2
## 9832                                                        feel   2
## 9833                                                        find   2
## 9834                                                      friend   2
## 9835                                                         get   2
## 9836                                                        high   2
## 9837                                                        mine   2
## 9838                                                      notice   2
## 9839                                                       onion   2
## 9840                                                      pepper   2
## 9841                                                      philly   2
## 9842                                                       piece   2
## 9843                                                       place   2
## 9844                                                       price   2
## 9845                                                         raw   2
## 9846                                                        rude   2
## 9847                                                      season   2
## 9848                                                       small   2
## 9849                                                        spot   2
## 9850                                                       steam   2
## 9851                                                      stingy   2
## 9852                                                       surly   2
## 9853                                                   sweetness   2
## 9854                                                       tacky   2
## 9855                                                       tasty   2
## 9856                                                       thick   2
## 9857                                                         top   2
## 9858                                                        toss   2
## 9859                                                         two   2
## 9860                                                      watery   2
## 9861                                                         wiz   2
## 9862                                                       steak   2
## 9863                                                       bland   2
## 9864                                                         can   2
## 9865                                                      enough   2
## 9866                                                        feel   2
## 9867                                                          go   2
## 9868                                                      greasy   2
## 9869                                                         ive   2
## 9870                                                        just   2
## 9871                                                    majority   2
## 9872                                                        much   2
## 9873                                                     nothing   2
## 9874                                                         pat   2
## 9875                                                       soggy   2
## 9876                                                       staff   2
## 9877                                                   tasteless   2
## 9878                                                      theres   2
## 9879                                                         use   2
## 9880                                                      racism   2
## 9881                                                      flavor   2
## 9882                                                    together   2
## 9883                                                       taste   2
## 9884                                                         eye   2
## 9885                                                       genos   2
## 9886                                                         pat   2
## 9887                                                       place   2
## 9888                                                         two   2
## 9889                                                         pat   2
## 9890                                                          us   2
## 9891                                                       water   2
## 9892                                                    appetite   2
## 9893                                                         pat   2
## 9894                                                      racist   2
## 9895                                                         say   2
## 9896                                                       genos   2
## 9897                                                        make   2
## 9898                                                        much   2
## 9899                                                   patronize   2
## 9900                                                        list   2
## 9901                                                          dc   2
## 9902                                                       steak   2
## 9903                                                  disappoint   2
## 9904                                                          ii   2
## 9905                                                       worth   2
## 9906                                                      friend   2
## 9907                                                        road   2
## 9908                                                         try   2
## 9909                                                       visit   2
## 9910                                                         way   2
## 9911                                                          ii   2
## 9912                                                        good   2
## 9913                                                       amaze   2
## 9914                                                    anything   2
## 9915                                                       apart   2
## 9916                                                      barely   2
## 9917                                                         big   2
## 9918                                                 cheesesteak   2
## 9919                                                       cover   2
## 9920                                                       crisp   2
## 9921                                                     crunchy   2
## 9922                                                          do   2
## 9923                                                      doesnt   2
## 9924                                                      enough   2
## 9925                                                   excellent   2
## 9926                                                        feel   2
## 9927                                                        fill   2
## 9928                                                        firm   2
## 9929                                                   flavorful   2
## 9930                                                          id   2
## 9931                                                     instead   2
## 9932                                                     italian   2
## 9933                                                       level   2
## 9934                                                       maybe   2
## 9935                                                        mean   2
## 9936                                                         meh   2
## 9937                                                     mention   2
## 9938                                                       mushy   2
## 9939                                                         one   2
## 9940                                                 outstanding   2
## 9941                                                   perfectly   2
## 9942                                                       place   2
## 9943                                                    probably   2
## 9944                                                     service   2
## 9945                                                       slice   2
## 9946                                                        soak   2
## 9947                                                       stiff   2
## 9948                                                unremarkable   2
## 9949                                                        weak   2
## 9950                                                        wrap   2
## 9951                                                       youre   2
## 9952                                                         yum   2
## 9953                                                       yummy   2
## 9954                                                     english   2
## 9955                                                        meat   2
## 9956                                                    sandwich   2
## 9957                                                      brunch   2
## 9958                                                        shop   2
## 9959                                                 description   2
## 9960                                                    colorful   2
## 9961                                                      flashy   2
## 9962                                                 cheesesteak   2
## 9963                                                         pat   2
## 9964                                                     tourist   2
## 9965                                                     visitor   2
## 9966                                                      street   2
## 9967                                                       danny   2
## 9968                                                       order   2
## 9969                                                       lunch   2
## 9970                                                        food   2
## 9971                                                       small   2
## 9972                                                   something   2
## 9973                                                       worth   2
## 9974                                                         get   2
## 9975                                                        mine   2
## 9976                                                      philly   2
## 9977                                                       check   2
## 9978                                                       genos   2
## 9979                                                        make   2
## 9980                                                        neon   2
## 9981                                                      people   2
## 9982                                                         ask   2
## 9983                                                        bite   2
## 9984                                                       bland   2
## 9985                                                       fresh   2
## 9986                                                       genos   2
## 9987                                                        just   2
## 9988                                                      little   2
## 9989                                                       slice   2
## 9990                                                        soft   2
## 9991                                                       soggy   2
## 9992                                                     tourist   2
## 9993                                                        good   2
## 9994                                                      people   2
## 9995                                                       taste   2
## 9996                                                      flavor   2
## 9997                                                        ride   2
## 9998                                                      across   2
## 9999                                                        also   2
## 10000                                                     decide   2
## 10001                                                      genos   2
## 10002                                                       just   2
## 10003                                                       long   2
## 10004                                                       much   2
## 10005                                                      place   2
## 10006                                                    service   2
## 10007                                                      think   2
## 10008                                                       like   2
## 10009                                                   saturday   2
## 10010                                                      candy   2
## 10011                                               cheesesteaks   2
## 10012                                                      extra   2
## 10013                                                       good   2
## 10014                                                        pat   2
## 10015                                                         us   2
## 10016                                                       will   2
## 10017                                                    channel   2
## 10018                                                         go   2
## 10019                                                      think   2
## 10020                                               cheesesteaks   2
## 10021                                                       even   2
## 10022                                                     friend   2
## 10023                                                       name   2
## 10024                                                        pat   2
## 10025                                                     philly   2
## 10026                                                     police   2
## 10027                                                      steak   2
## 10028                                                      admit   2
## 10029                                                     always   2
## 10030                                                 appreciate   2
## 10031                                                       bite   2
## 10032                                                      bread   2
## 10033                                                        buy   2
## 10034                                                     charge   2
## 10035                                                     choose   2
## 10036                                                      cross   2
## 10037                                                   describe   2
## 10038                                                  difficult   2
## 10039                                                         do   2
## 10040                                                     easily   2
## 10041                                                  elsewhere   2
## 10042                                                       feel   2
## 10043                                                    finally   2
## 10044                                                      guess   2
## 10045                                                 intimidate   2
## 10046                                                       live   2
## 10047                                                       look   2
## 10048                                                       much   2
## 10049                                                      never   2
## 10050                                                  offensive   2
## 10051                                                        one   2
## 10052                                                     pepper   2
## 10053                                                       pick   2
## 10054                                                    respect   2
## 10055                                                       save   2
## 10056                                                       sell   2
## 10057                                                  seriously   2
## 10058                                                      spend   2
## 10059                                                      stand   2
## 10060                                                      taste   2
## 10061                                                     though   2
## 10062                                                      throw   2
## 10063                                                          u   2
## 10064                                                       whip   2
## 10065                                                    dessert   2
## 10066                                                       cook   2
## 10067                                                     handle   2
## 10068                                                       make   2
## 10069                                                        put   2
## 10070                                                      taste   2
## 10071                                                      think   2
## 10072                                                        eat   2
## 10073                                                        get   2
## 10074                                                  illegally   2
## 10075                                                       just   2
## 10076                                                      place   2
## 10077                                                       ride   2
## 10078                                                        see   2
## 10079                                                       will   2
## 10080                                                      onion   2
## 10081                                                      place   2
## 10082                                                       good   2
## 10083                                                       just   2
## 10084                                                        hot   2
## 10085                                                       sign   2
## 10086                                                        out   2
## 10087                                                       food   2
## 10088                                                      genos   2
## 10089                                                        pat   2
## 10090                                                     accept   2
## 10091                                                       card   2
## 10092                                                       cash   2
## 10093                                                cheesesteak   2
## 10094                                                       find   2
## 10095                                                        fyi   2
## 10096                                                      genos   2
## 10097                                                        get   2
## 10098                                                        hit   2
## 10099                                                       lady   2
## 10100                                                       meat   2
## 10101                                                     policy   2
## 10102                                                       spot   2
## 10103                                                       sure   2
## 10104                                                       take   2
## 10105                                                 thankfully   2
## 10106                                                     theres   2
## 10107                                                      thing   2
## 10108                                                       wait   2
## 10109                                                       walk   2
## 10110                                                      wasnt   2
## 10111                                                      youre   2
## 10112                                                       push   2
## 10113                                                       rude   2
## 10114                                                     window   2
## 10115                                                        eye   2
## 10116                                                     flight   2
## 10117                                                       good   2
## 10118                                                      place   2
## 10119                                                      group   2
## 10120                                                   customer   2
## 10121                                                      didnt   2
## 10122                                                       good   2
## 10123                                                       line   2
## 10124                                                      place   2
## 10125                                                        hot   2
## 10126                                                        can   2
## 10127                                                        eat   2
## 10128                                                     famous   2
## 10129                                                      phone   2
## 10130                                                      worth   2
## 10131                                                         do   2
## 10132                                                       call   2
## 10133                                                 restaurant   2
## 10134                                                  boyfriend   2
## 10135                                                       find   2
## 10136                                                      order   2
## 10137                                                    wouldnt   2
## 10138                                                       back   2
## 10139                                                      drink   2
## 10140                                                     flavor   2
## 10141                                                        get   2
## 10142                                                      heart   2
## 10143                                                       life   2
## 10144                                                     philly   2
## 10145                                                       year   2
## 10146                                                      place   2
## 10147                                                      think   2
## 10148                                                       year   2
## 10149                                                       buck   2
## 10150                                                        can   2
## 10151                                                       give   2
## 10152                                                        way   2
## 10153                                                        can   2
## 10154                                                     cheese   2
## 10155                                                cheesesteak   2
## 10156                                                        eat   2
## 10157                                                       good   2
## 10158                                                      price   2
## 10159                                                      steak   2
## 10160                                                      taste   2
## 10161                                                      white   2
## 10162                                                      steak   2
## 10163                                                     cheese   2
## 10164                                                       hype   2
## 10165                                                       jims   2
## 10166                                                    tourist   2
## 10167                                                          2   2
## 10168                                                     almost   2
## 10169                                                      amaze   2
## 10170                                                   american   2
## 10171                                                  basically   2
## 10172                                                       beef   2
## 10173                                                       bite   2
## 10174                                                        bun   2
## 10175                                                     cheesy   2
## 10176                                                      cheez   2
## 10177                                                       cold   2
## 10178                                                       come   2
## 10179                                                 definitely   2
## 10180                                                 disappoint   2
## 10181                                                        eat   2
## 10182                                                      every   2
## 10183                                                     expect   2
## 10184                                                      extra   2
## 10185                                                        far   2
## 10186                                                  flavorful   2
## 10187                                                       food   2
## 10188                                                       give   2
## 10189                                                     grease   2
## 10190                                                      great   2
## 10191                                                        guy   2
## 10192                                                       hand   2
## 10193                                                      heavy   2
## 10194                                                    however   2
## 10195                                                        ill   2
## 10196                                                         im   2
## 10197                                                    instead   2
## 10198                                                       isnt   2
## 10199                                                      juice   2
## 10200                                                      juicy   2
## 10201                                                    ketchup   2
## 10202                                                       kind   2
## 10203                                                      kinda   2
## 10204                                                  legendary   2
## 10205                                                      maybe   2
## 10206                                                       much   2
## 10207                                                    nothing   2
## 10208                                                      order   2
## 10209                                                        pay   2
## 10210                                                    perfect   2
## 10211                                                     philly   2
## 10212                                                     please   2
## 10213                                                     pretty   2
## 10214                                                   probably   2
## 10215                                                        put   2
## 10216                                                  recommend   2
## 10217                                                 restaurant   2
## 10218                                                       sand   2
## 10219                                                       side   2
## 10220                                                      since   2
## 10221                                                      smell   2
## 10222                                                      still   2
## 10223                                                     streak   2
## 10224                                                      sweet   2
## 10225                                                      thats   2
## 10226                                                     theres   2
## 10227                                                      thick   2
## 10228                                                       thin   2
## 10229                                                    tourist   2
## 10230                                                 ultimately   2
## 10231                                                        use   2
## 10232                                                      white   2
## 10233                                                       wife   2
## 10234                                                       will   2
## 10235                                                    wouldnt   2
## 10236                                                      youll   2
## 10237                                                     across   2
## 10238                                                    airport   2
## 10239                                                     almost   2
## 10240                                                    alright   2
## 10241                                                     always   2
## 10242                                                      amaze   2
## 10243                                                    anymore   2
## 10244                                                        ask   2
## 10245                                                  authentic   2
## 10246                                                    awesome   2
## 10247                                                        big   2
## 10248                                                        boy   2
## 10249                                                      brief   2
## 10250                                                       cant   2
## 10251                                                       cash   2
## 10252                                                  certainly   2
## 10253                                                      chain   2
## 10254                                                      check   2
## 10255                                                      cheez   2
## 10256                                                       cold   2
## 10257                                                  condiment   2
## 10258                                                      craze   2
## 10259                                                         dc   2
## 10260                                                     decent   2
## 10261                                                     decide   2
## 10262                                                  delicious   2
## 10263                                                  different   2
## 10264                                                     dinner   2
## 10265                                                     expect   2
## 10266                                                  expensive   2
## 10267                                                     famous   2
## 10268                                                        far   2
## 10269                                                     flavor   2
## 10270                                                       form   2
## 10271                                                     friend   2
## 10272                                                      grill   2
## 10273                                                     hardly   2
## 10274                                                     highly   2
## 10275                                                     honest   2
## 10276                                                      house   2
## 10277                                                    husband   2
## 10278                                                       idea   2
## 10279                                                        imo   2
## 10280                                                institution   2
## 10281                                               intersection   2
## 10282                                                      johns   2
## 10283                                                      judge   2
## 10284                                                       know   2
## 10285                                                       late   2
## 10286                                                      leave   2
## 10287                                                      maybe   2
## 10288                                                        meh   2
## 10289                                                      money   2
## 10290                                                       must   2
## 10291                                                       need   2
## 10292                                                      never   2
## 10293                                                        nyc   2
## 10294                                                  obviously   2
## 10295                                                       park   2
## 10296                                                       pass   2
## 10297                                                     people   2
## 10298                                                     plenty   2
## 10299                                                       plus   2
## 10300                                                       pork   2
## 10301                                                     prefer   2
## 10302                                                    prepare   2
## 10303                                                      price   2
## 10304                                                       rate   2
## 10305                                                     rather   2
## 10306                                                       rude   2
## 10307                                                        sad   2
## 10308                                                    sammich   2
## 10309                                                  sandwhich   2
## 10310                                                      scene   2
## 10311                                                     season   2
## 10312                                                    service   2
## 10313                                                   showdown   2
## 10314                                                      sober   2
## 10315                                                      spend   2
## 10316                                                      stand   2
## 10317                                                   standard   2
## 10318                                                     staple   2
## 10319                                                       star   2
## 10320                                                      stick   2
## 10321                                                     subpar   2
## 10322                                                     subway   2
## 10323                                                      swear   2
## 10324                                                   terrible   2
## 10325                                                      thank   2
## 10326                                                      throw   2
## 10327                                                        top   2
## 10328                                                    totally   2
## 10329                                                       town   2
## 10330                                                       type   2
## 10331                                                     virgin   2
## 10332                                                  virginity   2
## 10333                                                       wait   2
## 10334                                                       weve   2
## 10335                                                      white   2
## 10336                                                      youve   2
## 10337                                                   actually   2
## 10338                                                     always   2
## 10339                                                   anywhere   2
## 10340                                                   approach   2
## 10341                                                        bad   2
## 10342                                                     bodega   2
## 10343                                                       cash   2
## 10344                                                     corner   2
## 10345                                                        day   2
## 10346                                                 definitely   2
## 10347                                                      didnt   2
## 10348                                                 disappoint   2
## 10349                                                      drink   2
## 10350                                                        eat   2
## 10351                                              establishment   2
## 10352                                                       even   2
## 10353                                                     flavor   2
## 10354                                                       food   2
## 10355                                                      ginos   2
## 10356                                                       give   2
## 10357                                                      great   2
## 10358                                                       hear   2
## 10359                                                       home   2
## 10360                                                   honestly   2
## 10361                                                         im   2
## 10362                                                    instead   2
## 10363                                                      joint   2
## 10364                                                      large   2
## 10365                                                   location   2
## 10366                                                        lot   2
## 10367                                                       love   2
## 10368                                                        may   2
## 10369                                                   mediocre   2
## 10370                                                       much   2
## 10371                                                       next   2
## 10372                                                      onion   2
## 10373                                                    overall   2
## 10374                                                 overpriced   2
## 10375                                                       past   2
## 10376                                                     people   2
## 10377                                                       plus   2
## 10378                                                      price   2
## 10379                                                       read   2
## 10380                                                  recommend   2
## 10381                                                      right   2
## 10382                                                   sandwich   2
## 10383                                                        say   2
## 10384                                                        see   2
## 10385                                                       side   2
## 10386                                                      south   2
## 10387                                                      taste   2
## 10388                                                  tasteless   2
## 10389                                                      thats   2
## 10390                                                     theyre   2
## 10391                                                      think   2
## 10392                                                       time   2
## 10393                                                       town   2
## 10394                                                       turn   2
## 10395                                                        use   2
## 10396                                                    usually   2
## 10397                                                      visit   2
## 10398                                                       want   2
## 10399                                                        way   2
## 10400                                                     werent   2
## 10401                                                      whole   2
## 10402                                                        wiz   2
## 10403                                                    wouldnt   2
## 10404                                                      youve   2
## 10405                                                       good   2
## 10406                                                      onion   2
## 10407                                                       ever   2
## 10408                                                  delicious   2
## 10409                                                      steak   2
## 10410                                                      pepsi   2
## 10411                                                        top   2
## 10412                                                        ive   2
## 10413                                                       bite   2
## 10414                                                      genos   2
## 10415                                                    leather   2
## 10416                                                  tasteless   2
## 10417                                                     tender   2
## 10418                                                      bland   2
## 10419                                                cheesesteak   2
## 10420                                                      fatty   2
## 10421                                                        fry   2
## 10422                                                     inside   2
## 10423                                                      maybe   2
## 10424                                                    nothing   2
## 10425                                                        pat   2
## 10426                                                      place   2
## 10427                                                     prefer   2
## 10428                                                      taste   2
## 10429                                               cheesesteaks   2
## 10430                                                        day   2
## 10431                                                   american   2
## 10432                                                        eat   2
## 10433                                                      genos   2
## 10434                                                       good   2
## 10435                                                      place   2
## 10436                                                     choose   2
## 10437                                                       spot   2
## 10438                                                       whiz   2
## 10439                                                       also   2
## 10440                                                        bit   2
## 10441                                                     cheese   2
## 10442                                                       come   2
## 10443                                                  delicious   2
## 10444                                                       fine   2
## 10445                                                     little   2
## 10446                                                        lot   2
## 10447                                                       make   2
## 10448                                                     prefer   2
## 10449                                                     rather   2
## 10450                                                         vs   2
## 10451                                                        way   2
## 10452                                                       tree   2
## 10453                                                      chewy   2
## 10454                                                     little   2
## 10455                                                     cheese   2
## 10456                                                     around   2
## 10457                                                       cant   2
## 10458                                                     decide   2
## 10459                                                   everyone   2
## 10460                                                 experience   2
## 10461                                                       food   2
## 10462                                                       full   2
## 10463                                                         id   2
## 10464                                                      light   2
## 10465                                                      local   2
## 10466                                                        one   2
## 10467                                                     philly   2
## 10468                                                      place   2
## 10469                                                     please   2
## 10470                                                        put   2
## 10471                                                      since   2
## 10472                                                       stop   2
## 10473                                                       take   2
## 10474                                                        two   2
## 10475                                                        war   2
## 10476                                                       fame   2
## 10477                                                    citizen   2
## 10478                                                        one   2
## 10479                                               philadelphia   2
## 10480                                                       spot   2
## 10481                                                      steak   2
## 10482                                                       whiz   2
## 10483                                                environment   2
## 10484                                                    kitchen   2
## 10485                                                    overall   2
## 10486                                                        two   2
## 10487                                                      decor   2
## 10488                                                        cut   2
## 10489                                                       heel   2
## 10490                                                          2   2
## 10491                                                       call   2
## 10492                                                        get   2
## 10493                                                       line   2
## 10494                                                      order   2
## 10495                                                       park   2
## 10496                                                        pat   2
## 10497                                                      place   2
## 10498                                                  proximity   2
## 10499                                                 restaurant   2
## 10500                                                        see   2
## 10501                                                     window   2
## 10502                                                       year   2
## 10503                                                       roll   2
## 10504                                                     worker   2
## 10505                                                       trip   2
## 10506                                                       shop   2
## 10507                                                       flip   2
## 10508                                                       give   2
## 10509                                                cheesesteak   2
## 10510                                                        eat   2
## 10511                                                 flavorless   2
## 10512                                                         go   2
## 10513                                                       just   2
## 10514                                                      rainy   2
## 10515                                                       roll   2
## 10516                                                   sandwich   2
## 10517                                                  tasteless   2
## 10518                                                      money   2
## 10519                                                      badge   2
## 10520                                                       neon   2
## 10521                                                     grease   2
## 10522                                                     almost   2
## 10523                                                    another   2
## 10524                                                   anything   2
## 10525                                                    anytime   2
## 10526                                                     anyway   2
## 10527                                                   brooklyn   2
## 10528                                                      check   2
## 10529                                                       club   2
## 10530                                                    compare   2
## 10531                                                       cook   2
## 10532                                                   customer   2
## 10533                                                        eat   2
## 10534                                                     either   2
## 10535                                                       even   2
## 10536                                                       ever   2
## 10537                                                 experience   2
## 10538                                                       find   2
## 10539                                                       food   2
## 10540                                                      fresh   2
## 10541                                                     friend   2
## 10542                                                      great   2
## 10543                                                        hot   2
## 10544                                                        ive   2
## 10545                                                         la   2
## 10546                                                      large   2
## 10547                                                        let   2
## 10548                                                       live   2
## 10549                                                       look   2
## 10550                                                       make   2
## 10551                                                        man   2
## 10552                                                       meat   2
## 10553                                                     minute   2
## 10554                                                       near   2
## 10555                                               neighborhood   2
## 10556                                                        new   2
## 10557                                                        non   2
## 10558                                                        nyc   2
## 10559                                                        one   2
## 10560                                                      order   2
## 10561                                                   personal   2
## 10562                                                    someone   2
## 10563                                                      super   2
## 10564                                                  territory   2
## 10565                                                     theres   2
## 10566                                                      think   2
## 10567                                                    tourist   2
## 10568                                                        two   2
## 10569                                                     unless   2
## 10570                                                       vega   2
## 10571                                                     within   2
## 10572                                                       food   2
## 10573                                                    english   2
## 10574                                                       will   2
## 10575                                                      apple   2
## 10576                                                      bread   2
## 10577                                                cheesesteak   2
## 10578                                                   everyone   2
## 10579                                                     friend   2
## 10580                                                      other   2
## 10581                                                    overall   2
## 10582                                                     philly   2
## 10583                                                     really   2
## 10584                                                        say   2
## 10585                                                       take   2
## 10586                                                       just   2
## 10587                                                   neighbor   2
## 10588                                                      rival   2
## 10589                                                      think   2
## 10590                                                        try   2
## 10591                                                   inferior   2
## 10592                                                        pat   2
## 10593                                                      genos   2
## 10594                                                      price   2
## 10595                                              unfortunately   2
## 10596                                                      wasnt   2
## 10597                                                     choose   2
## 10598                                                       just   2
## 10599                                                       spin   2
## 10600                                                      didnt   2
## 10601                                                       wish   2
## 10602                                                     racist   2
## 10603                                                      utter   2
## 10604                                                  different   2
## 10605                                                 disappoint   2
## 10606                                                 flavorless   2
## 10607                                                     ignore   2
## 10608                                                   overrate   2
## 10609                                                  overwhelm   2
## 10610                                                 understand   2
## 10611                                                     philly   2
## 10612                                                   sandwich   2
## 10613                                                         do   2
## 10614                                                     enough   2
## 10615                                                       much   2
## 10616                                                       whiz   2
## 10617                                                  available   2
## 10618                                                      genos   2
## 10619                                                       make   2
## 10620                                                      taste   2
## 10621                                                       flag   2
## 10622                                                        one   2
## 10623                                                        say   2
## 10624                                                      place   2
## 10625                                                      whole   2
## 10626                                                        eat   2
## 10627                                                      genos   2
## 10628                                                       good   2
## 10629                                                     people   2
## 10630                                                      bread   2
## 10631                                                        cow   2
## 10632                                                   location   2
## 10633                                                     center   2
## 10634                                                       bite   2
## 10635                                                       chop   2
## 10636                                                       come   2
## 10637                                                       even   2
## 10638                                                      fresh   2
## 10639                                                   mushroom   2
## 10640                                                      order   2
## 10641                                                    overall   2
## 10642                                                 perfection   2
## 10643                                                      point   2
## 10644                                                      right   2
## 10645                                                      slice   2
## 10646                                                       sure   2
## 10647                                                       also   2
## 10648                                                environment   2
## 10649                                                     amount   2
## 10650                                                      paste   2
## 10651                                                     bodega   2
## 10652                                                    chinese   2
## 10653                                                       come   2
## 10654                                                      place   2
## 10655                                                      order   2
## 10656                                                       deli   2
## 10657                                                         do   2
## 10658                                                     dollar   2
## 10659                                                       food   2
## 10660                                                      genos   2
## 10661                                                         go   2
## 10662                                                       want   2
## 10663                                                       care   2
## 10664                                                      enjoy   2
## 10665                                                     finish   2
## 10666                                                       give   2
## 10667                                                       help   2
## 10668                                                       make   2
## 10669                                                        pay   2
## 10670                                                       take   2
## 10671                                                         go   2
## 10672                                                       make   2
## 10673                                                        use   2
## 10674                                                        ask   2
## 10675                                                        can   2
## 10676                                                        fry   2
## 10677                                                      start   2
## 10678                                                     across   2
## 10679                                                      great   2
## 10680                                                        one   2
## 10681                                                     really   2
## 10682                                                       ruin   2
## 10683                                                      think   2
## 10684                                                       want   2
## 10685                                                     arrive   2
## 10686                                                       buck   2
## 10687                                                        day   2
## 10688                                                     friend   2
## 10689                                                       hour   2
## 10690                                                      local   2
## 10691                                                      month   2
## 10692                                                     people   2
## 10693                                                      slice   2
## 10694                                                       good   2
## 10695                                                       know   2
## 10696                                                       need   2
## 10697                                                      right   2
## 10698                                                      visit   2
## 10699                                                     cheese   2
## 10700                                                       neon   2
## 10701                                                       just   2
## 10702                                                   diarrhea   2
## 10703                                                       bite   2
## 10704                                                      steak   2
## 10705                                                       food   2
## 10706                                                    another   2
## 10707                                               cheesesteaks   2
## 10708                                                       good   2
## 10709                                                         im   2
## 10710                                                       long   2
## 10711                                                     cheese   2
## 10712                                                       card   2
## 10713                                                      fresh   2
## 10714                                                        fry   2
## 10715                                                    country   2
## 10716                                                     philly   2
## 10717                                                      south   2
## 10718                                                      rival   2
## 10719                                                       fact   2
## 10720                                                       line   2
## 10721                                                     people   2
## 10722                                                    tourist   2
## 10723                                                       wrap   2
## 10724                                                      onion   2
## 10725                                                 experience   2
## 10726                                                        fry   2
## 10727                                                         do   2
## 10728                                                        eat   2
## 10729                                                       find   2
## 10730                                                      great   2
## 10731                                                       line   2
## 10732                                                        one   2
## 10733                                                        owe   2
## 10734                                                 personally   2
## 10735                                                     theyre   2
## 10736                                                        way   2
## 10737                                                       back   2
## 10738                                                       beef   2
## 10739                                                        big   2
## 10740                                                      bread   2
## 10741                                                cheesesteak   2
## 10742                                                      large   2
## 10743                                                       long   2
## 10744                                                       nice   2
## 10745                                                      paste   2
## 10746                                                      piece   2
## 10747                                                       roll   2
## 10748                                                      thick   2
## 10749                                                      three   2
## 10750                                                       true   2
## 10751                                                       club   2
## 10752                                                       work   2
## 10753                                                     philly   2
## 10754                                                        etc   2
## 10755                                                       jims   2
## 10756                                                      johns   2
## 10757                                                 roxborough   2
## 10758                                                      steak   2
## 10759                                                       make   2
## 10760                                                   sandwich   2
## 10761                                                       sure   2
## 10762                                                      tasty   2
## 10763                                                         go   2
## 10764                                                       wife   2
## 10765                                                        age   2
## 10766                                                        ago   2
## 10767                                                cheesesteak   2
## 10768                                                        day   2
## 10769                                                 definitely   2
## 10770                                                         do   2
## 10771                                                        eat   2
## 10772                                                       feel   2
## 10773                                                        fun   2
## 10774                                                        hey   2
## 10775                                                    however   2
## 10776                                                        ill   2
## 10777                                                         im   2
## 10778                                                       meat   2
## 10779                                                       must   2
## 10780                                               philadelphia   2
## 10781                                                   probably   2
## 10782                                                    realize   2
## 10783                                                   sandwich   2
## 10784                                                       seem   2
## 10785                                                   sightsee   2
## 10786                                                        sit   2
## 10787                                                       star   2
## 10788                                                       stop   2
## 10789                                                      think   2
## 10790                                                       will   2
## 10791                                                       area   2
## 10792                                                     philly   2
## 10793                                                       want   2
## 10794                                                        los   2
## 10795                                                    anyways   2
## 10796                                                       good   2
## 10797                                                       like   2
## 10798                                                        pat   2
## 10799                                                      place   2
## 10800                                                      think   2
## 10801                                                    tourist   2
## 10802                                                        try   2
## 10803                                                       wife   2
## 10804                                                      genos   2
## 10805                                                     philly   2
## 10806                                                        try   2
## 10807                                                       will   2
## 10808                                                       card   2
## 10809                                                       card   2
## 10810                                                        ago   2
## 10811                                                       food   2
## 10812                                                      genos   2
## 10813                                                       like   2
## 10814                                                       meat   2
## 10815                                                     review   2
## 10816                                                       roll   2
## 10817                                                     though   2
## 10818                                                        add   2
## 10819                                                       also   2
## 10820                                                        buy   2
## 10821                                                  genospats   2
## 10822                                                       head   2
## 10823                                                     little   2
## 10824                                                       spot   2
## 10825                                                      start   2
## 10826                                                      taste   2
## 10827                                                       test   2
## 10828                                                       time   2
## 10829                                                    whether   2
## 10830                                                       good   2
## 10831                                               independence   2
## 10832                                                        pat   2
## 10833                                                     pretty   2
## 10834                                                      staff   2
## 10835                                                      photo   2
## 10836                                                    tourist   2
## 10837                                                   anything   2
## 10838                                                        bad   2
## 10839                                                       cant   2
## 10840                                                      check   2
## 10841                                                      clean   2
## 10842                                                    decline   2
## 10843                                                     doesnt   2
## 10844                                                      enjoy   2
## 10845                                                 experience   2
## 10846                                                      first   2
## 10847                                                     flashy   2
## 10848                                                      genos   2
## 10849                                                     greasy   2
## 10850                                                     little   2
## 10851                                                       look   2
## 10852                                                       much   2
## 10853                                                      order   2
## 10854                                                  overhyped   2
## 10855                                                 overpriced   2
## 10856                                                   overrate   2
## 10857                                                       take   2
## 10858                                                       will   2
## 10859                                                       wont   2
## 10860                                                    wouldnt   2
## 10861                                                cheesesteak   2
## 10862                                                        way   2
## 10863                                                       also   2
## 10864                                                    amoroso   2
## 10865                                                       food   2
## 10866                                                   honestly   2
## 10867                                                     little   2
## 10868                                                       love   2
## 10869                                                        pat   2
## 10870                                                     people   2
## 10871                                                       plus   2
## 10872                                                  recommend   2
## 10873                                                    service   2
## 10874                                                      super   2
## 10875                                                     though   2
## 10876                                                        way   2
## 10877                                                      worth   2
## 10878                                                      steak   2
## 10879                                                      speak   2
## 10880                                                      chewy   2
## 10881                                                       like   2
## 10882                                                   sandwich   2
## 10883                                                      steak   2
## 10884                                                       call   2
## 10885                                                       much   2
## 10886                                                        get   2
## 10887                                                       good   2
## 10888                                                      youll   2
## 10889                                                       good   2
## 10890                                                      place   2
## 10891                                                        try   2
## 10892                                                      grill   2
## 10893                                                       meat   2
## 10894                                                        add   2
## 10895                                                     cheese   2
## 10896                                                       cook   2
## 10897                                                     expect   2
## 10898                                                       find   2
## 10899                                                     flavor   2
## 10900                                                       grow   2
## 10901                                                     happen   2
## 10902                                                       high   2
## 10903                                                       hold   2
## 10904                                                     listen   2
## 10905                                                       love   2
## 10906                                                       melt   2
## 10907                                                       mind   2
## 10908                                                   mushroom   2
## 10909                                                       park   2
## 10910                                                 understand   2
## 10911                                                       warn   2
## 10912                                                       soon   2
## 10913                                                    compare   2
## 10914                                                        get   2
## 10915                                                       good   2
## 10916                                                      maker   2
## 10917                                                     people   2
## 10918                                                      place   2
## 10919                                                      taste   2
## 10920                                                 experience   2
## 10921                                                      genos   2
## 10922                                                       good   2
## 10923                                                       kind   2
## 10924                                                       line   2
## 10925                                                      other   2
## 10926                                                        pat   2
## 10927                                                     people   2
## 10928                                                   sandwich   2
## 10929                                                      steak   2
## 10930                                                      story   2
## 10931                                                      style   2
## 10932                                                        way   2
## 10933                                                     system   2
## 10934                                                      light   2
## 10935                                                       area   2
## 10936                                                       hall   2
## 10937                                                   actually   2
## 10938                                                         go   2
## 10939                                                       late   2
## 10940                                                       time   2
## 10941                                                 comparison   2
## 10942                                                         us   2
## 10943                                                         go   2
## 10944                                                       give   2
## 10945                                                      water   2
## 10946                                                       also   2
## 10947                                                      bread   2
## 10948                                               cheesesteaks   2
## 10949                                                   customer   2
## 10950                                                      didnt   2
## 10951                                                         do   2
## 10952                                                      drive   2
## 10953                                                     either   2
## 10954                                                        far   2
## 10955                                                       feel   2
## 10956                                                    instead   2
## 10957                                                      never   2
## 10958                                                    prepare   2
## 10959                                                       read   2
## 10960                                                       save   2
## 10961                                                        say   2
## 10962                                                        see   2
## 10963                                                       take   2
## 10964                                                       talk   2
## 10965                                                      thing   2
## 10966                                                       want   2
## 10967                                                       wont   2
## 10968                                                      worth   2
## 10969                                                       zero   2
## 10970                                                         go   2
## 10971                                                       hear   2
## 10972                                                      taste   2
## 10973                                                      worth   2
## 10974                                                      genos   2
## 10975                                                       jerk   2
## 10976                                                     cheese   2
## 10977                                                         do   2
## 10978                                                       food   2
## 10979                                                        get   2
## 10980                                                       next   2
## 10981                                                     philly   2
## 10982                                                       sign   2
## 10983                                                       city   2
## 10984                                                    conquer   2
## 10985                                                        add   2
## 10986                                                       also   2
## 10987                                                 appreciate   2
## 10988                                                        buy   2
## 10989                                                       cash   2
## 10990                                                cheesesteak   2
## 10991                                                       deal   2
## 10992                                                         do   2
## 10993                                                        fix   2
## 10994                                                      genos   2
## 10995                                                   hesitate   2
## 10996                                                       hold   2
## 10997                                                     listen   2
## 10998                                                       love   2
## 10999                                                       many   2
## 11000                                                        mix   2
## 11001                                                       park   2
## 11002                                                    quickly   2
## 11003                                                      quite   2
## 11004                                                     review   2
## 11005                                                     second   2
## 11006                                                       show   2
## 11007                                                       tell   2
## 11008                                                      waist   2
## 11009                                                       walk   2
## 11010                                                       wast   2
## 11011                                                    traffic   2
## 11012                                                     change   2
## 11013                                                        cut   2
## 11014                                                    deserve   2
## 11015                                                       hold   2
## 11016                                                       much   2
## 11017                                                       need   2
## 11018                                                      offer   2
## 11019                                                        say   2
## 11020                                                       seem   2
## 11021                                                      speak   2
## 11022                                                 understand   2
## 11023                                                      leash   2
## 11024                                                     philly   2
## 11025                                                       shit   2
## 11026                                                cheesesteak   2
## 11027                                                  elsewhere   2
## 11028                                                        fry   2
## 11029                                                      genos   2
## 11030                                                        pop   2
## 11031                                                      steak   2
## 11032                                                        tax   2
## 11033                                                        pat   2
## 11034                                                        dip   2
## 11035                                                      steak   2
## 11036                                                        ill   2
## 11037                                                     cheese   2
## 11038                                                    ketchup   2
## 11039                                                  obnoxious   2
## 11040                                                  offensive   2
## 11041                                                      genos   2
## 11042                                                     philly   2
## 11043                                                       good   2
## 11044                                                      genos   2
## 11045                                                       line   2
## 11046                                                     always   2
## 11047                                                cheesesteak   2
## 11048                                                     dinner   2
## 11049                                                      first   2
## 11050                                                      genos   2
## 11051                                                        get   2
## 11052                                                      idiot   2
## 11053                                                       like   2
## 11054                                                       line   2
## 11055                                                       make   2
## 11056                                                    morning   2
## 11057                                                       need   2
## 11058                                                      never   2
## 11059                                                     philly   2
## 11060                                                      since   2
## 11061                                                        sit   2
## 11062                                                       tell   2
## 11063                                                      thats   2
## 11064                                                      think   2
## 11065                                                       want   2
## 11066                                                      woman   2
## 11067                                                     bottom   2
## 11068                                                      place   2
## 11069                                                      bread   2
## 11070                                                     across   2
## 11071                                                   brooklyn   2
## 11072                                                       come   2
## 11073                                                     family   2
## 11074                                                     famous   2
## 11075                                                        far   2
## 11076                                                       home   2
## 11077                                                   maryland   2
## 11078                                                         pa   2
## 11079                                               philadelphia   2
## 11080                                                     please   2
## 11081                                                      south   2
## 11082                                                   straight   2
## 11083                                                         va   2
## 11084                                                  recommend   2
## 11085                                                   actually   2
## 11086                                                       also   2
## 11087                                                       bite   2
## 11088                                                        bun   2
## 11089                                                       cant   2
## 11090                                                cheesesteak   2
## 11091                                                       cook   2
## 11092                                                 definitely   2
## 11093                                                       even   2
## 11094                                                  flavorful   2
## 11095                                                       hard   2
## 11096                                                       hell   2
## 11097                                                      juicy   2
## 11098                                                       kind   2
## 11099                                                       much   2
## 11100                                                       need   2
## 11101                                                        old   2
## 11102                                                      order   2
## 11103                                                 overpriced   2
## 11104                                                     prefer   2
## 11105                                                     really   2
## 11106                                                     skimpy   2
## 11107                                                    special   2
## 11108                                                     though   2
## 11109                                                      throw   2
## 11110                                                    topping   2
## 11111                                                      wasnt   2
## 11112                                                       wish   2
## 11113                                                        yet   2
## 11114                                                       hype   2
## 11115                                               cheesesteaks   2
## 11116                                                       long   2
## 11117                                                        day   2
## 11118                                                          s   2
## 11119                                                       year   2
## 11120                                                       star   2
## 11121                                                       make   2
## 11122                                                   passyunk   2
## 11123                                                     sunday   2
## 11124                                                   european   2
## 11125                                                       make   2
## 11126                                                      place   2
## 11127                                                        way   2
## 11128                                                      along   2
## 11129                                                   american   2
## 11130                                                  authentic   2
## 11131                                                     barely   2
## 11132                                                       bite   2
## 11133                                                       boil   2
## 11134                                                  cardboard   2
## 11135                                                    couldnt   2
## 11136                                                   customer   2
## 11137                                                     decide   2
## 11138                                                      didnt   2
## 11139                                                     dinner   2
## 11140                                                        eat   2
## 11141                                                      enjoy   2
## 11142                                                     excite   2
## 11143                                                       feel   2
## 11144                                                       find   2
## 11145                                                       fork   2
## 11146                                                       four   2
## 11147                                                     frenzy   2
## 11148                                                      fresh   2
## 11149                                                     friend   2
## 11150                                                      front   2
## 11151                                                        get   2
## 11152                                                      ginos   2
## 11153                                                     greasy   2
## 11154                                                       hand   2
## 11155                                                        hot   2
## 11156                                                         im   2
## 11157                                                immediately   2
## 11158                                                     indoor   2
## 11159                                                        ive   2
## 11160                                                       jims   2
## 11161                                                    leather   2
## 11162                                                        low   2
## 11163                                                       many   2
## 11164                                                      maybe   2
## 11165                                                      messy   2
## 11166                                                      money   2
## 11167                                                      never   2
## 11168                                                    nothing   2
## 11169                                                     notice   2
## 11170                                                      often   2
## 11171                                                     prefer   2
## 11172                                                     racist   2
## 11173                                                      reply   2
## 11174                                                     review   2
## 11175                                                       roll   2
## 11176                                                        say   2
## 11177                                                       seat   2
## 11178                                                        see   2
## 11179                                                       seem   2
## 11180                                                    service   2
## 11181                                                        sub   2
## 11182                                                     subpar   2
## 11183                                                      thing   2
## 11184                                                      three   2
## 11185                                                    tourist   2
## 11186                                                  unhealthy   2
## 11187                                                     unlike   2
## 11188                                                        way   2
## 11189                                                    without   2
## 11190                                                       year   2
## 11191                                                        yes   2
## 11192                                                       love   2
## 11193                                                      genos   2
## 11194                                                   friendly   2
## 11195                                                      genos   2
## 11196                                                        put   2
## 11197                                                       take   2
## 11198                                                   whatever   2
## 11199                                                       buck   2
## 11200                                                     cheese   2
## 11201                                                      didnt   2
## 11202                                                 disappoint   2
## 11203                                                        get   2
## 11204                                                         go   2
## 11205                                                      guess   2
## 11206                                                       plus   2
## 11207                                                 restaurant   2
## 11208                                                   sandwich   2
## 11209                                                      since   2
## 11210                                                      steak   2
## 11211                                                        try   2
## 11212                                                        two   2
## 11213                                                       wait   2
## 11214                                                       will   2
## 11215                                                       bill   2
## 11216                                                      genos   2
## 11217                                                       good   2
## 11218                                                       like   2
## 11219                                                       open   2
## 11220                                                      total   2
## 11221                                                        try   2
## 11222                                                       will   2
## 11223                                                      worth   2
## 11224                                                       good   2
## 11225                                                         oh   2
## 11226                                                      tasty   2
## 11227                                                       star   2
## 11228                                                        get   2
## 11229                                                         go   2
## 11230                                                       kind   2
## 11231                                                       look   2
## 11232                                                       nice   2
## 11233                                                       rude   2
## 11234                                                       seem   2
## 11235                                                       suck   2
## 11236                                                    stomach   2
## 11237                                                      route   2
## 11238                                                cheesesteak   2
## 11239                                                       feel   2
## 11240                                                        get   2
## 11241                                                       like   2
## 11242                                                      night   2
## 11243                                                      order   2
## 11244                                                     philly   2
## 11245                                                      place   2
## 11246                                                     regret   2
## 11247                                                       tour   2
## 11248                                                          2   2
## 11249                                                       also   2
## 11250                                                        can   2
## 11251                                                       cant   2
## 11252                                                deportation   2
## 11253                                                    deserve   2
## 11254                                                     doesnt   2
## 11255                                                       even   2
## 11256                                                      first   2
## 11257                                                         go   2
## 11258                                                        guy   2
## 11259                                                      ideal   2
## 11260                                                   ignorant   2
## 11261                                                         im   2
## 11262                                                       isnt   2
## 11263                                                       late   2
## 11264                                                       line   2
## 11265                                                        may   2
## 11266                                                       move   2
## 11267                                                     native   2
## 11268                                                      never   2
## 11269                                                        now   2
## 11270                                                      place   2
## 11271                                                        see   2
## 11272                                                  something   2
## 11273                                                      think   2
## 11274                                                      youre   2
## 11275                                                      order   2
## 11276                                                   sandwich   2
## 11277                                                       also   2
## 11278                                                  authentic   2
## 11279                                                     cheese   2
## 11280                                               cheesesteaks   2
## 11281                                                  delicious   2
## 11282                                                        eat   2
## 11283                                                    outdoor   2
## 11284                                                        pat   2
## 11285                                                       post   2
## 11286                                                 experience   2
## 11287                                                       bite   2
## 11288                                                       chop   2
## 11289                                                       fill   2
## 11290                                                     flavor   2
## 11291                                                        get   2
## 11292                                                         go   2
## 11293                                                       hold   2
## 11294                                                     ignore   2
## 11295                                                       keep   2
## 11296                                                      money   2
## 11297                                                        pat   2
## 11298                                                       salt   2
## 11299                                                      still   2
## 11300                                                       want   2
## 11301                                                     hoagie   2
## 11302                                                    process   2
## 11303                                                      thing   2
## 11304                                                       time   2
## 11305                                                    opinion   2
## 11306                                                    failure   2
## 11307                                                  delicious   2
## 11308                                                    disgust   2
## 11309                                                      first   2
## 11310                                                        get   2
## 11311                                                       late   2
## 11312                                                    another   2
## 11313                                                        can   2
## 11314                                                       even   2
## 11315                                                       just   2
## 11316                                                        own   2
## 11317                                                        pat   2
## 11318                                                      place   2
## 11319                                                      since   2
## 11320                                                       will   2
## 11321                                                       just   2
## 11322                                                    attempt   2
## 11323                                                    average   2
## 11324                                                      bring   2
## 11325                                                   business   2
## 11326                                                       busy   2
## 11327                                                       care   2
## 11328                                                      chain   2
## 11329                                                    compare   2
## 11330                                                   customer   2
## 11331                                                        cut   2
## 11332                                                    deserve   2
## 11333                                                    explain   2
## 11334                                                         go   2
## 11335                                                       half   2
## 11336                                                        let   2
## 11337                                                       like   2
## 11338                                                       look   2
## 11339                                                   possible   2
## 11340                                                        put   2
## 11341                                                    realize   2
## 11342                                                   remotely   2
## 11343                                                     review   2
## 11344                                                      right   2
## 11345                                                       salt   2
## 11346                                                   sandwich   2
## 11347                                                       sign   2
## 11348                                                        sit   2
## 11349                                                    someone   2
## 11350                                                      stand   2
## 11351                                                      still   2
## 11352                                                     subway   2
## 11353                                                       whiz   2
## 11354                                                      write   2
## 11355                                                       take   2
## 11356                                                 absolutely   2
## 11357                                                   actually   2
## 11358                                                       area   2
## 11359                                                        can   2
## 11360                                                    consume   2
## 11361                                                 definitely   2
## 11362                                                       even   2
## 11363                                                     flavor   2
## 11364                                                     friend   2
## 11365                                                      genos   2
## 11366                                                       good   2
## 11367                                                       hear   2
## 11368                                                       long   2
## 11369                                                       look   2
## 11370                                                       make   2
## 11371                                                       meat   2
## 11372                                                        pat   2
## 11373                                               philadelphia   2
## 11374                                                      place   2
## 11375                                                     really   2
## 11376                                                  recommend   2
## 11377                                                     return   2
## 11378                                                        say   2
## 11379                                                     theyre   2
## 11380                                                      think   2
## 11381                                                       turn   2
## 11382                                                       wait   2
## 11383                                                      write   2
## 11384                                                       damn   2
## 11385                                                       food   2
## 11386                                                     moment   2
## 11387                                                      month   2
## 11388                                                      place   2
## 11389                                                      thing   2
## 11390                                                       trip   2
## 11391                                                     philly   2
## 11392                                                      agree   2
## 11393                                                  different   2
## 11394                                                   friendly   2
## 11395                                                      genos   2
## 11396                                                        get   2
## 11397                                                         go   2
## 11398                                                        pat   2
## 11399                                                       stop   2
## 11400                                                       talk   2
## 11401                                                       want   2
## 11402                                                     cheese   2
## 11403                                                     expect   2
## 11404                                                      fresh   2
## 11405                                                        get   2
## 11406                                                       hope   2
## 11407                                                       just   2
## 11408                                                      place   2
## 11409                                                   sandwich   2
## 11410                                                      taste   2
## 11411                                                        day   2
## 11412                                                    replica   2
## 11413                                                      thing   2
## 11414                                                        way   2
## 11415                                                       good   2
## 11416                                                      order   2
## 11417                                                       want   2
## 11418                                               cheesesteaks   2
## 11419                                                        hot   2
## 11420                                                      steak   2
## 11421                                                         do   2
## 11422                                                        get   2
## 11423                                                       hype   2
## 11424                                                      taste   2
## 11425                                                     travel   2
## 11426                                                cheesesteak   2
## 11427                                                     philly   2
## 11428                                                        sir   2
## 11429                                                        big   2
## 11430                                                     decent   2
## 11431                                                       food   2
## 11432                                                        get   2
## 11433                                                     greasy   2
## 11434                                                       just   2
## 11435                                                        lot   2
## 11436                                                       love   2
## 11437                                                      messy   2
## 11438                                                    nothing   2
## 11439                                                    overall   2
## 11440                                                     people   2
## 11441                                               philadelphia   2
## 11442                                                   sandwich   2
## 11443                                                        see   2
## 11444                                                    service   2
## 11445                                                    tourist   2
## 11446                                                       good   2
## 11447                                                        may   2
## 11448                                                       come   2
## 11449                                                      genos   2
## 11450                                                       good   2
## 11451                                                        pat   2
## 11452                                                      steak   2
## 11453                                                      taste   2
## 11454                                                   ambiance   2
## 11455                                                    classic   2
## 11456                                                   complete   2
## 11457                                                       cool   2
## 11458                                                   customer   2
## 11459                                                     decide   2
## 11460                                                 definitely   2
## 11461                                                  delicious   2
## 11462                                                      didnt   2
## 11463                                                     expect   2
## 11464                                                       find   2
## 11465                                                     friend   2
## 11466                                                       give   2
## 11467                                                      great   2
## 11468                                                   infamous   2
## 11469                                                       life   2
## 11470                                                       meat   2
## 11471                                                       much   2
## 11472                                                        one   2
## 11473                                                    overall   2
## 11474                                                     people   2
## 11475                                                     really   2
## 11476                                                        see   2
## 11477                                                      steak   2
## 11478                                                      thats   2
## 11479                                                      think   2
## 11480                                                    tourist   2
## 11481                                                       true   2
## 11482                                                        two   2
## 11483                                                       wait   2
## 11484                                                      youre   2
## 11485                                                     philly   2
## 11486                                                       mile   2
## 11487                                                      still   2
## 11488                                                        wiz   2
## 11489                                                     hunger   2
## 11490                                                      bland   2
## 11491                                                       hard   2
## 11492                                                      limit   2
## 11493                                                       long   2
## 11494                                                       nice   2
## 11495                                                      catch   2
## 11496                                                       come   2
## 11497                                                       make   2
## 11498                                                   sandwich   2
## 11499                                                      steak   2
## 11500                                                      water   2
## 11501                                                       bake   2
## 11502                                                 expression   2
## 11503                                                       many   2
## 11504                                                   actually   2
## 11505                                                      didnt   2
## 11506                                                    english   2
## 11507                                                       even   2
## 11508                                                       good   2
## 11509                                                      order   2
## 11510                                                        pat   2
## 11511                                                   sandwich   2
## 11512                                                    service   2
## 11513                                                      think   2
## 11514                                                      order   2
## 11515                                                       make   2
## 11516                                                      order   2
## 11517                                                        one   2
## 11518                                                      order   2
## 11519                                                      shoot   2
## 11520                                                       long   2
## 11521                                                      price   2
## 11522                                                    quickly   2
## 11523                                                        far   2
## 11524                                                       flat   2
## 11525                                                       trap   2
## 11526                                                       come   2
## 11527                                                        eat   2
## 11528                                                       just   2
## 11529                                                      order   2
## 11530                                                     philly   2
## 11531                                                        say   2
## 11532                                                        try   2
## 11533                                                  celebrity   2
## 11534                                                       good   2
## 11535                                                      joint   2
## 11536                                                      local   2
## 11537                                                        pat   2
## 11538                                                    sticker   2
## 11539                                                    version   2
## 11540                                                cheesesteak   2
## 11541                                                         go   2
## 11542                                                       just   2
## 11543                                                       like   2
## 11544                                                      never   2
## 11545                                                   probably   2
## 11546                                                   sandwich   2
## 11547                                                       thin   2
## 11548                                                      think   2
## 11549                                                       whiz   2
## 11550                                                     cheese   2
## 11551                                                        end   2
## 11552                                                        far   2
## 11553                                                   favorite   2
## 11554                                                     flavor   2
## 11555                                                       food   2
## 11556                                                     greasy   2
## 11557                                                      great   2
## 11558                                                  ignorance   2
## 11559                                                        one   2
## 11560                                                     philly   2
## 11561                                                      thing   2
## 11562                                                    tourist   2
## 11563                                                        get   2
## 11564                                                      bread   2
## 11565                                                       cash   2
## 11566                                                        eat   2
## 11567                                                     enough   2
## 11568                                                       fast   2
## 11569                                                      first   2
## 11570                                                       line   2
## 11571                                                       look   2
## 11572                                                     people   2
## 11573                                                      place   2
## 11574                                                   possible   2
## 11575                                                      staff   2
## 11576                                                      taste   2
## 11577                                                     though   2
## 11578                                                          u   2
## 11579                                                      wasnt   2
## 11580                                                       cook   2
## 11581                                                       make   2
## 11582                                                      steak   2
## 11583                                                  tasteless   2
## 11584                                                       also   2
## 11585                                                        two   2
## 11586                                                         do   2
## 11587                                                        one   2
## 11588                                                       save   2
## 11589                                                       skip   2
## 11590                                                        try   2
## 11591                                                     always   2
## 11592                                                     cheese   2
## 11593                                               cheesesteaks   2
## 11594                                               dalessandros   2
## 11595                                                        get   2
## 11596                                                       late   2
## 11597                                                        now   2
## 11598                                                        pat   2
## 11599                                                   sandwich   2
## 11600                                                       spot   2
## 11601                                                        try   2
## 11602                                                        atm   2
## 11603                                                  authentic   2
## 11604                                                    disgust   2
## 11605                                                      favor   2
## 11606                                                       fine   2
## 11607                                                     flavor   2
## 11608                                                       just   2
## 11609                                                       meat   2
## 11610                                                     pretty   2
## 11611                                                  unwelcome   2
## 11612                                                        way   2
## 11613                                                         go   2
## 11614                                                      genos   2
## 11615                                                       good   2
## 11616                                                     minute   2
## 11617                                                       give   2
## 11618                                                         go   2
## 11619                                                        let   2
## 11620                                                        may   2
## 11621                                                        one   2
## 11622                                                      order   2
## 11623                                                     philly   2
## 11624                                                        see   2
## 11625                                                        try   2
## 11626                                                      bread   2
## 11627                                                        cup   2
## 11628                                                       fast   2
## 11629                                                     philly   2
## 11630                                                     pretty   2
## 11631                                                      steak   2
## 11632                                                   decision   2
## 11633                                                    thought   2
## 11634                                                    verdict   2
## 11635                                                      agree   2
## 11636                                                       give   2
## 11637                                                        say   2
## 11638                                                      visit   2
## 11639                                                      field   2
## 11640                                                   anywhere   2
## 11641                                                       back   2
## 11642                                                        big   2
## 11643                                                       cash   2
## 11644                                               cheesesteaks   2
## 11645                                                       city   2
## 11646                                                       easy   2
## 11647                                                       hair   2
## 11648                                                       hype   2
## 11649                                                     little   2
## 11650                                                      local   2
## 11651                                                        new   2
## 11652                                                       real   2
## 11653                                                   sandwich   2
## 11654                                                       self   2
## 11655                                                      space   2
## 11656                                                      taste   2
## 11657                                                      tasty   2
## 11658                                                      think   2
## 11659                                                        use   2
## 11660                                                       whiz   2
## 11661                                                       cant   2
## 11662                                               cheesesteaks   2
## 11663                                                       chop   2
## 11664                                                       good   2
## 11665                                                        now   2
## 11666                                                       chop   2
## 11667                                                         do   2
## 11668                                                      genos   2
## 11669                                                        pat   2
## 11670                                                      throw   2
## 11671                                                 department   2
## 11672                                                   friendly   2
## 11673                                                       kill   2
## 11674                                                     enough   2
## 11675                                               cheesesteaks   2
## 11676                                                         do   2
## 11677                                                       food   2
## 11678                                                        fry   2
## 11679                                                       head   2
## 11680                                                       hear   2
## 11681                                                         id   2
## 11682                                                        let   2
## 11683                                                       look   2
## 11684                                                       meal   2
## 11685                                                   official   2
## 11686                                                       open   2
## 11687                                                   sandwich   2
## 11688                                                        say   2
## 11689                                                      since   2
## 11690                                                       take   2
## 11691                                                      taste   2
## 11692                                                        try   2
## 11693                                                        two   2
## 11694                                                      wharf   2
## 11695                                                   sandwich   2
## 11696                                                      genos   2
## 11697                                                        get   2
## 11698                                                      decor   2
## 11699                                                       sign   2
## 11700                                                      piece   2
## 11701                                                       spin   2
## 11702                                                   addition   2
## 11703                                                   american   2
## 11704                                                     amount   2
## 11705                                                        bun   2
## 11706                                                      chewy   2
## 11707                                                  condiment   2
## 11708                                                 disappoint   2
## 11709                                                       drip   2
## 11710                                                        far   2
## 11711                                                       give   2
## 11712                                                       glad   2
## 11713                                                    however   2
## 11714                                                      juice   2
## 11715                                                       less   2
## 11716                                                  literally   2
## 11717                                                       look   2
## 11718                                                       melt   2
## 11719                                                       much   2
## 11720                                                       must   2
## 11721                                                    nothing   2
## 11722                                                        one   2
## 11723                                                     really   2
## 11724                                                    service   2
## 11725                                                     skimpy   2
## 11726                                                      spice   2
## 11727                                                       spin   2
## 11728                                                      staff   2
## 11729                                                      still   2
## 11730                                                      super   2
## 11731                                                      thing   2
## 11732                                                      total   2
## 11733                                                        way   2
## 11734                                                       also   2
## 11735                                                cheesesteak   2
## 11736                                                         go   2
## 11737                                                       just   2
## 11738                                                     philly   2
## 11739                                                        wiz   2
## 11740                                                      bread   2
## 11741                                                cheesesteak   2
## 11742                                                       thin   2
## 11743                                                       coin   2
## 11744                                                      fresh   2
## 11745                                                       back   2
## 11746                                                     behind   2
## 11747                                                      genos   2
## 11748                                                       like   2
## 11749                                                      visit   2
## 11750                                                       will   2
## 11751                                                      genos   2
## 11752                                                     advice   2
## 11753                                                      alone   2
## 11754                                                      amaze   2
## 11755                                                      awful   2
## 11756                                                      bread   2
## 11757                                                     choice   2
## 11758                                                       cold   2
## 11759                                                     crappy   2
## 11760                                                   customer   2
## 11761                                                    deserve   2
## 11762                                                      didnt   2
## 11763                                                     doesnt   2
## 11764                                                    english   2
## 11765                                                  extremely   2
## 11766                                                      fight   2
## 11767                                                        fry   2
## 11768                                                      group   2
## 11769                                                       hand   2
## 11770                                                    impress   2
## 11771                                                      leave   2
## 11772                                                        let   2
## 11773                                                  literally   2
## 11774                                                     little   2
## 11775                                                      lover   2
## 11776                                                       mean   2
## 11777                                                        mix   2
## 11778                                                       much   2
## 11779                                                      never   2
## 11780                                                 overpriced   2
## 11781                                                    prepare   2
## 11782                                                      ready   2
## 11783                                                   sandwich   2
## 11784                                                     second   2
## 11785                                                       seem   2
## 11786                                                       show   2
## 11787                                                       spit   2
## 11788                                                      still   2
## 11789                                                     subpar   2
## 11790                                                       sure   2
## 11791                                                       take   2
## 11792                                                      think   2
## 11793                                                       tour   2
## 11794                                                    usually   2
## 11795                                                      youve   2
## 11796                                                     philly   2
## 11797                                                      place   2
## 11798                                                        eat   2
## 11799                                                     people   2
## 11800                                                        get   2
## 11801                                                      order   2
## 11802                                                       call   2
## 11803                                                      grill   2
## 11804                                                        one   2
## 11805                                                        pat   2
## 11806                                                        put   2
## 11807                                                       take   2
## 11808                                                       know   2
## 11809                                                      first   2
## 11810                                                      taste   2
## 11811                                                       year   2
## 11812                                                      genos   2
## 11813                                                       hour   2
## 11814                                                     people   2
## 11815                                                      piece   2
## 11816                                                       year   2
## 11817                                                       good   2
## 11818                                                  delicious   2
## 11819                                                       park   2
## 11820                                                       pass   2
## 11821                                                     pepper   2
## 11822                                                     street   2
## 11823                                                        ass   2
## 11824                                                      death   2
## 11825                                                       rain   2
## 11826                                                      steak   2
## 11827                                                       roll   2
## 11828                                                       also   2
## 11829                                                      chewy   2
## 11830                                                       cook   2
## 11831                                                       food   2
## 11832                                                       good   2
## 11833                                                    however   2
## 11834                                                       just   2
## 11835                                                       mind   2
## 11836                                                   mushroom   2
## 11837                                                        pat   2
## 11838                                                      serve   2
## 11839                                                       warm   2
## 11840                                                       hour   2
## 11841                                                      avoid   2
## 11842                                                        buy   2
## 11843                                                       cash   2
## 11844                                                    couldnt   2
## 11845                                                      didnt   2
## 11846                                                      drive   2
## 11847                                                      every   2
## 11848                                                       find   2
## 11849                                                       just   2
## 11850                                                       love   2
## 11851                                                        nyc   2
## 11852                                                        pay   2
## 11853                                                   sandwich   2
## 11854                                                      still   2
## 11855                                                       take   2
## 11856                                                      think   2
## 11857                                                        way   2
## 11858                                                   although   2
## 11859                                                     always   2
## 11860                                                 definitely   2
## 11861                                                        get   2
## 11862                                                         go   2
## 11863                                                    outdoor   2
## 11864                                                     polite   2
## 11865                                                   probably   2
## 11866                                                      smile   2
## 11867                                                     though   2
## 11868                                                     center   2
## 11869                                                      order   2
## 11870                                                      place   2
## 11871                                                        say   2
## 11872                                                        see   2
## 11873                                                      store   2
## 11874                                                       wife   2
## 11875                                                     window   2
## 11876                                                 absolutely   2
## 11877                                                     across   2
## 11878                                                     addict   2
## 11879                                                    already   2
## 11880                                                        ask   2
## 11881                                                    average   2
## 11882                                                      awful   2
## 11883                                                   beverage   2
## 11884                                                       bite   2
## 11885                                                       call   2
## 11886                                                      cheez   2
## 11887                                                       cold   2
## 11888                                                       cost   2
## 11889                                                    counter   2
## 11890                                                 definitely   2
## 11891                                                       diet   2
## 11892                                                    disgust   2
## 11893                                                      dough   2
## 11894                                                        eat   2
## 11895                                                     enough   2
## 11896                                                       ever   2
## 11897                                                  excellent   2
## 11898                                                   fountain   2
## 11899                                                        hit   2
## 11900                                                        hot   2
## 11901                                                    however   2
## 11902                                                         im   2
## 11903                                                    instead   2
## 11904                                                       kind   2
## 11905                                                      leave   2
## 11906                                                       long   2
## 11907                                                        lot   2
## 11908                                                        may   2
## 11909                                                       must   2
## 11910                                                        oil   2
## 11911                                                        pay   2
## 11912                                                      pepsi   2
## 11913                                                      point   2
## 11914                                                       poor   2
## 11915                                                   probably   2
## 11916                                                      quite   2
## 11917                                               ridiculously   2
## 11918                                                      salty   2
## 11919                                                       seem   2
## 11920                                                    service   2
## 11921                                                        sit   2
## 11922                                                      small   2
## 11923                                                       soft   2
## 11924                                                      super   2
## 11925                                                      thats   2
## 11926                                                      thick   2
## 11927                                                      thing   2
## 11928                                                       want   2
## 11929                                                      wasnt   2
## 11930                                                        way   2
## 11931                                                   whatever   2
## 11932                                                       away   2
## 11933                                                      place   2
## 11934                                                cheesesteak   2
## 11935                                                        ice   2
## 11936                                                       meat   2
## 11937                                                      order   2
## 11938                                                    package   2
## 11939                                                       size   2
## 11940                                                       find   2
## 11941                                                        fun   2
## 11942                                                       just   2
## 11943                                                     memory   2
## 11944                                                      order   2
## 11945                                                     outing   2
## 11946                                                      place   2
## 11947                                                        see   2
## 11948                                                       take   2
## 11949                                                      watch   2
## 11950                                                     though   2
## 11951                                                     weight   2
## 11952                                                       game   2
## 11953                                                      genos   2
## 11954                                                         do   2
## 11955                                                         do   2
## 11956                                                       neon   2
## 11957                                                 appearance   2
## 11958                                                     amount   2
## 11959                                                     enough   2
## 11960                                                       help   2
## 11961                                                 apparently   2
## 11962                                                       bite   2
## 11963                                                cheesesteak   2
## 11964                                                       just   2
## 11965                                                         vs   2
## 11966                                                   whatever   2
## 11967                                                 absolutely   2
## 11968                                                      agree   2
## 11969                                                      along   2
## 11970                                                    already   2
## 11971                                                    alright   2
## 11972                                                      among   2
## 11973                                                     appear   2
## 11974                                                      aside   2
## 11975                                                        ask   2
## 11976                                                    average   2
## 11977                                                      awful   2
## 11978                                                       beat   2
## 11979                                                     beware   2
## 11980                                                       blow   2
## 11981                                                     bottom   2
## 11982                                                        boy   2
## 11983                                                  boyfriend   2
## 11984                                                      bring   2
## 11985                                                   business   2
## 11986                                                       call   2
## 11987                                                       care   2
## 11988                                                     chance   2
## 11989                                                      check   2
## 11990                                                      chewy   2
## 11991                                                     choose   2
## 11992                                                    clearly   2
## 11993                                                       cold   2
## 11994                                                 comparison   2
## 11995                                                    compete   2
## 11996                                                 competitor   2
## 11997                                                        con   2
## 11998                                                  condiment   2
## 11999                                                       crap   2
## 12000                                                        dad   2
## 12001                                                       damn   2
## 12002                                                     decade   2
## 12003                                                    deserve   2
## 12004                                                 difference   2
## 12005                                                      drive   2
## 12006                                                        due   2
## 12007                                                  efficient   2
## 12008                                                 especially   2
## 12009                                                essentially   2
## 12010                                                       ever   2
## 12011                                                    exactly   2
## 12012                                                  excellent   2
## 12013                                                     except   2
## 12014                                                     expect   2
## 12015                                                       fail   2
## 12016                                                       feud   2
## 12017                                                    forever   2
## 12018                                                      gaudy   2
## 12019                                                       girl   2
## 12020                                                 girlfriend   2
## 12021                                                     greasy   2
## 12022                                                       high   2
## 12023                                                  highlight   2
## 12024                                                    history   2
## 12025                                                       hope   2
## 12026                                                    impress   2
## 12027                                                     inside   2
## 12028                                                        joe   2
## 12029                                                       joey   2
## 12030                                                        las   2
## 12031                                                       live   2
## 12032                                                   location   2
## 12033                                                        low   2
## 12034                                                        man   2
## 12035                                                   mediocre   2
## 12036                                                     minute   2
## 12037                                                    mistake   2
## 12038                                                     mostly   2
## 12039                                                       name   2
## 12040                                                       note   2
## 12041                                                    nothing   2
## 12042                                                        now   2
## 12043                                                    obvious   2
## 12044                                                  obviously   2
## 12045                                                 overpriced   2
## 12046                                                       park   2
## 12047                                                     person   2
## 12048                                                 personally   2
## 12049                                                    plaster   2
## 12050                                                     please   2
## 12051                                                    prepare   2
## 12052                                                        pro   2
## 12053                                                    provide   2
## 12054                                                  provolone   2
## 12055                                                       pull   2
## 12056                                                    quality   2
## 12057                                                       real   2
## 12058                                                    reality   2
## 12059                                                   recently   2
## 12060                                                     redeem   2
## 12061                                                   remember   2
## 12062                                                       ruin   2
## 12063                                                        run   2
## 12064                                                   saturday   2
## 12065                                                      shoot   2
## 12066                                                        sit   2
## 12067                                                      small   2
## 12068                                                       soda   2
## 12069                                                      solid   2
## 12070                                                    someone   2
## 12071                                                      sorry   2
## 12072                                                       spot   2
## 12073                                                     staple   2
## 12074                                                       step   2
## 12075                                                       stop   2
## 12076                                                      story   2
## 12077                                                    support   2
## 12078                                                     surely   2
## 12079                                               surprisingly   2
## 12080                                                    suspect   2
## 12081                                                      table   2
## 12082                                                      tasty   2
## 12083                                                       thin   2
## 12084                                                    totally   2
## 12085                                                      tough   2
## 12086                                                       turn   2
## 12087                                                      twice   2
## 12088                                                   ultimate   2
## 12089                                                   vacation   2
## 12090                                                    verdict   2
## 12091                                                       vice   2
## 12092                                                       wary   2
## 12093                                                    weekend   2
## 12094                                                       whiz   2
## 12095                                                        wit   2
## 12096                                                        wiz   2
## 12097                                                    rivalry   2
## 12098                                                        ask   2
## 12099                                                      enjoy   2
## 12100                                                       read   2
## 12101                                                       able   2
## 12102                                                   actually   2
## 12103                                                       alot   2
## 12104                                                      amaze   2
## 12105                                                      ample   2
## 12106                                                   anything   2
## 12107                                                       beat   2
## 12108                                                       beef   2
## 12109                                                     behind   2
## 12110                                                        big   2
## 12111                                                       bite   2
## 12112                                                      bland   2
## 12113                                                      bread   2
## 12114                                                      bunch   2
## 12115                                                       butt   2
## 12116                                                       cash   2
## 12117                                                      catch   2
## 12118                                                  cheesteak   2
## 12119                                                    chicken   2
## 12120                                                      close   2
## 12121                                                       come   2
## 12122                                              commercialize   2
## 12123                                                    compare   2
## 12124                                                  condiment   2
## 12125                                                      crazy   2
## 12126                                                      crowd   2
## 12127                                                        day   2
## 12128                                                     decide   2
## 12129                                                 definitely   2
## 12130                                                    deserve   2
## 12131                                                      didnt   2
## 12132                                                  different   2
## 12133                                                       east   2
## 12134                                                    equally   2
## 12135                                                       face   2
## 12136                                                       fact   2
## 12137                                                       fame   2
## 12138                                                        far   2
## 12139                                                       find   2
## 12140                                                     flavor   2
## 12141                                                       full   2
## 12142                                                    garbage   2
## 12143                                                       grab   2
## 12144                                                     greasy   2
## 12145                                                    grocery   2
## 12146                                                       hang   2
## 12147                                                       hard   2
## 12148                                                       hell   2
## 12149                                                       high   2
## 12150                                                      hotel   2
## 12151                                                    ketchup   2
## 12152                                                      laugh   2
## 12153                                                       loaf   2
## 12154                                                       look   2
## 12155                                                       lose   2
## 12156                                                       love   2
## 12157                                                       meet   2
## 12158                                                     milano   2
## 12159                                                     napkin   2
## 12160                                                       nice   2
## 12161                                                    nothing   2
## 12162                                                   original   2
## 12163                                                      outta   2
## 12164                                                   overrate   2
## 12165                                                       pack   2
## 12166                                                       part   2
## 12167                                                      piece   2
## 12168                                                      point   2
## 12169                                                    popular   2
## 12170                                                       pork   2
## 12171                                                    quality   2
## 12172                                                   register   2
## 12173                                                    rubbery   2
## 12174                                                        see   2
## 12175                                                      serve   2
## 12176                                                        sit   2
## 12177                                                      slice   2
## 12178                                                      small   2
## 12179                                                       soda   2
## 12180                                                      south   2
## 12181                                                       spot   2
## 12182                                                      still   2
## 12183                                                     street   2
## 12184                                                      tasty   2
## 12185                                                       taxi   2
## 12186                                                      thing   2
## 12187                                                      throw   2
## 12188                                                    tourist   2
## 12189                                                traditional   2
## 12190                                                       true   2
## 12191                                                      visit   2
## 12192                                                       wait   2
## 12193                                                      wasnt   2
## 12194                                                      weird   2
## 12195                                                      white   2
## 12196                                                       work   2
## 12197                                                        bff   2
## 12198                                                        ale   2
## 12199                                                    airport   2
## 12200                                                 experience   2
## 12201                                                         im   2
## 12202                                                        one   2
## 12203                                                     really   2
## 12204                                                      south   2
## 12205                                                        sub   2
## 12206                                                     decide   2
## 12207                                                       take   2
## 12208                                                         go   2
## 12209                                                       like   2
## 12210                                                      share   2
## 12211                                                       back   2
## 12212                                                        bad   2
## 12213                                                      bread   2
## 12214                                                     chance   2
## 12215                                                     change   2
## 12216                                                cheesesteak   2
## 12217                                                       crap   2
## 12218                                                     decent   2
## 12219                                                        due   2
## 12220                                                         em   2
## 12221                                                     enough   2
## 12222                                                       even   2
## 12223                                                   everyone   2
## 12224                                                      extra   2
## 12225                                                        eye   2
## 12226                                                     finger   2
## 12227                                                       good   2
## 12228                                                       half   2
## 12229                                                       hard   2
## 12230                                                       hoot   2
## 12231                                                   horrible   2
## 12232                                                       idea   2
## 12233                                                       joey   2
## 12234                                                       look   2
## 12235                                                        low   2
## 12236                                                       much   2
## 12237                                                   negative   2
## 12238                                                        nod   2
## 12239                                                        rat   2
## 12240                                                    regular   2
## 12241                                                      slice   2
## 12242                                                       take   2
## 12243                                                      think   2
## 12244                                                          u   2
## 12245                                                        can   2
## 12246                                                       come   2
## 12247                                                        get   2
## 12248                                                        see   2
## 12249                                                       stop   2
## 12250                                                      wasnt   2
## 12251                                                     window   2
## 12252                                                     police   2
## 12253                                                   sandwich   2
## 12254                                                     handle   2
## 12255                                                       able   2
## 12256                                                      along   2
## 12257                                                        ape   2
## 12258                                                       area   2
## 12259                                                        ask   2
## 12260                                                       away   2
## 12261                                                        bar   2
## 12262                                                   bathroom   2
## 12263                                                        big   2
## 12264                                                      bring   2
## 12265                                                   business   2
## 12266                                                       cant   2
## 12267                                                      cause   2
## 12268                                                       city   2
## 12269                                                     corner   2
## 12270                                                     cosmis   2
## 12271                                                    couldnt   2
## 12272                                                      crave   2
## 12273                                                      cross   2
## 12274                                                     decide   2
## 12275                                              establishment   2
## 12276                                                       even   2
## 12277                                                       ever   2
## 12278                                                   exercise   2
## 12279                                                      extra   2
## 12280                                                        fry   2
## 12281                                                       geno   2
## 12282                                                       give   2
## 12283                                                      gooey   2
## 12284                                                       grab   2
## 12285                                                      group   2
## 12286                                                       head   2
## 12287                                                       hear   2
## 12288                                                    history   2
## 12289                                                    however   2
## 12290                                                    instead   2
## 12291                                                   interest   2
## 12292                                                      italy   2
## 12293                                                      learn   2
## 12294                                                      leave   2
## 12295                                                        let   2
## 12296                                                        lie   2
## 12297                                                       list   2
## 12298                                                       love   2
## 12299                                                       much   2
## 12300                                                  nostalgia   2
## 12301                                                       open   2
## 12302                                                      owner   2
## 12303                                                        pay   2
## 12304                                                    perfect   2
## 12305                                                   probably   2
## 12306                                                        put   2
## 12307                                                     really   2
## 12308                                                 restaurant   2
## 12309                                                     review   2
## 12310                                                       ride   2
## 12311                                                          s   2
## 12312                                                     sample   2
## 12313                                                   sandwich   2
## 12314                                                       side   2
## 12315                                                       sign   2
## 12316                                                     sister   2
## 12317                                                      sleep   2
## 12318                                                      small   2
## 12319                                                      sober   2
## 12320                                                    someone   2
## 12321                                                         st   2
## 12322                                                     steves   2
## 12323                                                     subway   2
## 12324                                                    support   2
## 12325                                                      taste   2
## 12326                                                      thick   2
## 12327                                                      throw   2
## 12328                                                       time   2
## 12329                                                      today   2
## 12330                                                     toilet   2
## 12331                                                       town   2
## 12332                                                traditional   2
## 12333                                                       vote   2
## 12334                                                       walk   2
## 12335                                                      wasnt   2
## 12336                                                    weekend   2
## 12337                                                       will   2
## 12338                                                     winter   2
## 12339                                                        wiz   2
## 12340                                                    wouldnt   2
## 12341                                                      awful   2
## 12342                                                   standard   2
## 12343                                                       come   2
## 12344                                                        lie   2
## 12345                                                        set   2
## 12346                                                   addition   2
## 12347                                                    another   2
## 12348                                                     answer   2
## 12349                                                    anyways   2
## 12350                                                   attitude   2
## 12351                                                    average   2
## 12352                                                    awesome   2
## 12353                                                       book   2
## 12354                                                        bun   2
## 12355                                                       call   2
## 12356                                                 cheesewhiz   2
## 12357                                                    classic   2
## 12358                                                 competitor   2
## 12359                                                   consider   2
## 12360                                                consistency   2
## 12361                                                     corner   2
## 12362                                                    couldnt   2
## 12363                                                      crave   2
## 12364                                                      crowd   2
## 12365                                                    crunchy   2
## 12366                                                       damn   2
## 12367                                                       darn   2
## 12368                                                       deal   2
## 12369                                                    delight   2
## 12370                                                    deserve   2
## 12371                                                 difference   2
## 12372                                                  different   2
## 12373                                                        due   2
## 12374                                                        end   2
## 12375                                                      enjoy   2
## 12376                                                 especially   2
## 12377                                                    example   2
## 12378                                                      extra   2
## 12379                                                       fast   2
## 12380                                                    finally   2
## 12381                                                  flavorful   2
## 12382                                                       geno   2
## 12383                                                 girlfriend   2
## 12384                                                    gourmet   2
## 12385                                                     grease   2
## 12386                                                      guess   2
## 12387                                                      heres   2
## 12388                                                        hey   2
## 12389                                                       hold   2
## 12390                                                     honest   2
## 12391                                                   honestly   2
## 12392                                                       hope   2
## 12393                                                  hopefully   2
## 12394                                                       hype   2
## 12395                                                        imo   2
## 12396                                                    impress   2
## 12397                                                 impression   2
## 12398                                                       isnt   2
## 12399                                                    italian   2
## 12400                                                       kill   2
## 12401                                                       lack   2
## 12402                                                      large   2
## 12403                                                       last   2
## 12404                                                      learn   2
## 12405                                                      leave   2
## 12406                                                        lol   2
## 12407                                                      lunch   2
## 12408                                                     market   2
## 12409                                                    measure   2
## 12410                                                      money   2
## 12411                                                   mushroom   2
## 12412                                                       must   2
## 12413                                                       need   2
## 12414                                               neighborhood   2
## 12415                                                       numb   2
## 12416                                                      offer   2
## 12417                                                       okay   2
## 12418                                                      other   2
## 12419                                                      owner   2
## 12420                                                    perhaps   2
## 12421                                                     person   2
## 12422                                                  plentiful   2
## 12423                                                    prepare   2
## 12424                                                    problem   2
## 12425                                                   recently   2
## 12426                                                 regardless   2
## 12427                                                    regular   2
## 12428                                                     reheat   2
## 12429                                             representation   2
## 12430                                                   riddance   2
## 12431                                                      roast   2
## 12432                                                        run   2
## 12433                                                        sad   2
## 12434                                                    satisfy   2
## 12435                                                       save   2
## 12436                                                  selection   2
## 12437                                                      serve   2
## 12438                                                     server   2
## 12439                                                       show   2
## 12440                                                     simply   2
## 12441                                                     sister   2
## 12442                                                      slice   2
## 12443                                                      soggy   2
## 12444                                                      speak   2
## 12445                                                      start   2
## 12446                                                 steakhouse   2
## 12447                                                     steves   2
## 12448                                                     subway   2
## 12449                                                      tasty   2
## 12450                                                       tell   2
## 12451                                                       tend   2
## 12452                                                     tender   2
## 12453                                                       term   2
## 12454                                                   touristy   2
## 12455                                                       trip   2
## 12456                                                      truly   2
## 12457                                                      truth   2
## 12458                                                       walk   2
## 12459                                                      watch   2
## 12460                                                    without   2
## 12461                                                        wow   2
## 12462                                                      wrong   2
## 12463                                                       year   2
## 12464                                                       yell   2
## 12465                                                     cheese   2
## 12466                                                       whiz   2
## 12467                                                      order   2
## 12468                                                      steak   2
## 12469                                                        eat   2
## 12470                                                       give   2
## 12471                                                      order   2
## 12472                                                        pay   2
## 12473                                                       work   2
## 12474                                                       food   2
## 12475                                                   sandwich   2
## 12476                                                       seat   2
## 12477                                                  something   2
## 12478                                                     school   2
## 12479                                                         do   2
## 12480                                                     flavor   2
## 12481                                                        get   2
## 12482                                                         go   2
## 12483                                                        bad   2
## 12484                                                 constipate   2
## 12485                                                        cut   2
## 12486                                                       drip   2
## 12487                                                     enough   2
## 12488                                                      fatty   2
## 12489                                                       fill   2
## 12490                                                 flavorless   2
## 12491                                                       food   2
## 12492                                                       give   2
## 12493                                                       good   2
## 12494                                                     greasy   2
## 12495                                                        pat   2
## 12496                                                       rude   2
## 12497                                                        guy   2
## 12498                                                 atmosphere   2
## 12499                                                        bad   2
## 12500                                                        big   2
## 12501                                                        can   2
## 12502                                                     choice   2
## 12503                                                       city   2
## 12504                                                 compliment   2
## 12505                                                       deal   2
## 12506                                                      fresh   2
## 12507                                                        get   2
## 12508                                                         go   2
## 12509                                                       high   2
## 12510                                                     highly   2
## 12511                                                        hot   2
## 12512                                                       idea   2
## 12513                                                 ingredient   2
## 12514                                                        ive   2
## 12515                                                       just   2
## 12516                                                   location   2
## 12517                                                        now   2
## 12518                                                      photo   2
## 12519                                                      price   2
## 12520                                                 reputation   2
## 12521                                                       roll   2
## 12522                                                      serve   2
## 12523                                                       stop   2
## 12524                                                    texture   2
## 12525                                                       time   2
## 12526                                                        try   2
## 12527                                                      wasnt   2
## 12528                                                      worth   2
## 12529                                                      youre   2
## 12530                                                 disappoint   2
## 12531                                                     barely   2
## 12532                                                      bread   2
## 12533                                                     cheese   2
## 12534                                                       give   2
## 12535                                                       meat   2
## 12536                                                     minute   2
## 12537                                                   mushroom   2
## 12538                                                       nice   2
## 12539                                                      place   2
## 12540                                                        put   2
## 12541                                                      steak   2
## 12542                                                     barely   2
## 12543                                                         do   2
## 12544                                                        fry   2
## 12545                                                         go   2
## 12546                                                     greasy   2
## 12547                                                       look   2
## 12548                                                      agree   2
## 12549                                                     cheese   2
## 12550                                                     friend   2
## 12551                                                     people   2
## 12552                                                     around   2
## 12553                                                      genos   2
## 12554                                                         pa   2
## 12555                                                       lady   2
## 12556                                                       will   2
## 12557                                                        get   2
## 12558                                                       make   2
## 12559                                                     people   2
## 12560                                                    tourist   2
## 12561                                                        try   2
## 12562                                                       will   2
## 12563                                                      youre   2
## 12564                                                      order   2
## 12565                                                      bread   2
## 12566                                                      first   2
## 12567                                                       give   2
## 12568                                                      grill   2
## 12569                                                       know   2
## 12570                                                       line   2
## 12571                                                        pat   2
## 12572                                                     racist   2
## 12573                                                      smile   2
## 12574                                                      still   2
## 12575                                                       whos   2
## 12576                                                        wiz   2
## 12577                                                        eat   2
## 12578                                                cheesesteak   2
## 12579                                                   sandwich   2
## 12580                                                        big   2
## 12581                                                        cup   2
## 12582                                                     expect   2
## 12583                                                       give   2
## 12584                                                       size   2
## 12585                                                       star   2
## 12586                                                      steak   2
## 12587                                                        etc   2
## 12588                                                    liberty   2
## 12589                                                     change   2
## 12590                                                      drink   2
## 12591                                                        eat   2
## 12592                                                         go   2
## 12593                                                       meat   2
## 12594                                                        say   2
## 12595                                                         us   2
## 12596                                                     within   2
## 12597                                                      money   2
## 12598                                                     cheese   2
## 12599                                                        pat   2
## 12600                                                     philly   2
## 12601                                                       time   2
## 12602                                                       walk   2
## 12603                                                      enjoy   2
## 12604                                                       like   2
## 12605                                                       beat   2
## 12606                                                       bite   2
## 12607                                                      didnt   2
## 12608                                                      enjoy   2
## 12609                                                       fact   2
## 12610                                                        get   2
## 12611                                                       make   2
## 12612                                                      order   2
## 12613                                                   remember   2
## 12614                                                       rock   2
## 12615                                                        see   2
## 12616                                                    swallow   2
## 12617                                                      taste   2
## 12618                                                     cheese   2
## 12619                                                      worth   2
## 12620                                                    already   2
## 12621                                                     cheese   2
## 12622                                                       give   2
## 12623                                                       just   2
## 12624                                                      leave   2
## 12625                                                      onion   2
## 12626                                                      steak   2
## 12627                                                       take   2
## 12628                                                       even   2
## 12629                                                       ever   2
## 12630                                                        pat   2
## 12631                                                      visit   2
## 12632                                                       back   2
## 12633                                                        say   2
## 12634                                                      shame   2
## 12635                                                     window   2
## 12636                                                 comparison   2
## 12637                                                         ha   2
## 12638                                                      amaze   2
## 12639                                                    italian   2
## 12640                                                      local   2
## 12641                                                     philly   2
## 12642                                                      right   2
## 12643                                                        say   2
## 12644                                                        ton   2
## 12645                                                     philly   2
## 12646                                                       soul   2
## 12647                                                    couldnt   2
## 12648                                                      drink   2
## 12649                                                        ive   2
## 12650                                                       even   2
## 12651                                                       need   2
## 12652                                                      think   2
## 12653                                                       will   2
## 12654                                                     anyone   2
## 12655                                                       next   2
## 12656                                                      order   2
## 12657                                                     people   2
## 12658                                                      steak   2
## 12659                                                      first   2
## 12660                                                         do   2
## 12661                                                      genos   2
## 12662                                                        get   2
## 12663                                                       like   2
## 12664                                                      order   2
## 12665                                                     review   2
## 12666                                                       like   2
## 12667                                                     racist   2
## 12668                                                    america   2
## 12669                                                        ive   2
## 12670                                                       just   2
## 12671                                                       like   2
## 12672                                                        man   2
## 12673                                                      maybe   2
## 12674                                                cheesesteak   2
## 12675                                                     rating   2
## 12676                                                     review   2
## 12677                                                       trip   2
## 12678                                                 overpriced   2
## 12679                                                    process   2
## 12680                                                     regard   2
## 12681                                                      maybe   2
## 12682                                                  immigrant   2
## 12683                                                       good   2
## 12684                                                  nostalgia   2
## 12685                                                        pat   2
## 12686                                                     philly   2
## 12687                                                    rivalry   2
## 12688                                                  tradition   2
## 12689                                                       back   2
## 12690                                                       jims   2
## 12691                                                      guess   2
## 12692                                                      first   2
## 12693                                                     candle   2
## 12694                                                        pat   2
## 12695                                                      steam   2
## 12696                                                        can   2
## 12697                                                     cheese   2
## 12698                                                     decide   2
## 12699                                                      depot   2
## 12700                                                        eat   2
## 12701                                                     either   2
## 12702                                                      first   2
## 12703                                                       game   2
## 12704                                                        get   2
## 12705                                                      great   2
## 12706                                                        let   2
## 12707                                                       meat   2
## 12708                                                       need   2
## 12709                                                      still   2
## 12710                                                      genos   2
## 12711                                                        ive   2
## 12712                                                        pat   2
## 12713                                                      genos   2
## 12714                                                       okay   2
## 12715                                                      shock   2
## 12716                                                  something   2
## 12717                                                        try   2
## 12718                                                     memory   2
## 12719                                                         do   2
## 12720                                                      enjoy   2
## 12721                                                        get   2
## 12722                                                    improve   2
## 12723                                                        pat   2
## 12724                                                cheesesteak   2
## 12725                                                   customer   2
## 12726                                                 definitely   2
## 12727                                                        get   2
## 12728                                                       good   2
## 12729                                                       just   2
## 12730                                                       lady   2
## 12731                                                       meat   2
## 12732                                                       park   2
## 12733                                                       meat   2
## 12734                                                     almost   2
## 12735                                                     cheese   2
## 12736                                                     cherry   2
## 12737                                                        day   2
## 12738                                                  delicious   2
## 12739                                                       fast   2
## 12740                                                       long   2
## 12741                                                       meat   2
## 12742                                                      melty   2
## 12743                                                       must   2
## 12744                                                      onion   2
## 12745                                                     really   2
## 12746                                                     summer   2
## 12747                                                      genos   2
## 12748                                                       stay   2
## 12749                                                        bad   2
## 12750                                                       find   2
## 12751                                                     flight   2
## 12752                                                      genos   2
## 12753                                                       good   2
## 12754                                                       just   2
## 12755                                                       line   2
## 12756                                                    nothing   2
## 12757                                                     philly   2
## 12758                                                      still   2
## 12759                                                      wasnt   2
## 12760                                                       look   2
## 12761                                                       back   2
## 12762                                                        can   2
## 12763                                                     cheese   2
## 12764                                                 definitely   2
## 12765                                                      didnt   2
## 12766                                                        eat   2
## 12767                                                        get   2
## 12768                                                        guy   2
## 12769                                                         im   2
## 12770                                                       like   2
## 12771                                                       meat   2
## 12772                                                    nothing   2
## 12773                                                        pat   2
## 12774                                                      price   2
## 12775                                                    service   2
## 12776                                                       sign   2
## 12777                                                      steak   2
## 12778                                                       walk   2
## 12779                                                       will   2
## 12780                                                       work   2
## 12781                                                         go   2
## 12782                                                      split   2
## 12783                                                cheesesteak   2
## 12784                                                      chunk   2
## 12785                                                       neon   2
## 12786                                                       turn   2
## 12787                                                    dignity   2
## 12788                                                     police   2
## 12789                                                     enough   2
## 12790                                                        fly   2
## 12791                                                        get   2
## 12792                                                       just   2
## 12793                                                      order   2
## 12794                                                      thats   2
## 12795                                                        try   2
## 12796                                                    couldnt   2
## 12797                                                      didnt   2
## 12798                                                       line   2
## 12799                                                      order   2
## 12800                                                        pat   2
## 12801                                                     prefer   2
## 12802                                                   sandwich   2
## 12803                                                        try   2
## 12804                                                        add   2
## 12805                                                     bright   2
## 12806                                                       cost   2
## 12807                                                         do   2
## 12808                                                         go   2
## 12809                                                         id   2
## 12810                                                    nothing   2
## 12811                                                        one   2
## 12812                                                 overpriced   2
## 12813                                                    quality   2
## 12814                                                       save   2
## 12815                                                       stop   2
## 12816                                                  substance   2
## 12817                                                   surround   2
## 12818                                                  tasteless   2
## 12819                                                      think   2
## 12820                                                       time   2
## 12821                                                     travel   2
## 12822                                                         tv   2
## 12823                                                        two   2
## 12824                                                      worth   2
## 12825                                                      cream   2
## 12826                                                       food   2
## 12827                                                     philly   2
## 12828                                                   sandwich   2
## 12829                                                      avoid   2
## 12830                                                      check   2
## 12831                                                     choose   2
## 12832                                                       come   2
## 12833                                                     gladly   2
## 12834                                                       hate   2
## 12835                                                       just   2
## 12836                                                      never   2
## 12837                                                        pat   2
## 12838                                                        see   2
## 12839                                                       skip   2
## 12840                                                 disappoint   2
## 12841                                                     expect   2
## 12842                                                       hype   2
## 12843                                                       kind   2
## 12844                                                       look   2
## 12845                                                      think   2
## 12846                                                   together   2
## 12847                                                       good   2
## 12848                                                      onion   2
## 12849                                                     racist   2
## 12850                                                       sign   2
## 12851                                                       also   2
## 12852                                                      bring   2
## 12853                                                   continue   2
## 12854                                                       ever   2
## 12855                                                       keep   2
## 12856                                                      leave   2
## 12857                                                        let   2
## 12858                                                       post   2
## 12859                                                        put   2
## 12860                                                      round   2
## 12861                                                        see   2
## 12862                                                     refuse   2
## 12863                                                       park   2
## 12864                                                   actually   2
## 12865                                                   allergic   2
## 12866                                                      allow   2
## 12867                                                     always   2
## 12868                                                      amaze   2
## 12869                                                      angry   2
## 12870                                                     around   2
## 12871                                                       bear   2
## 12872                                                       cali   2
## 12873                                                       city   2
## 12874                                                       come   2
## 12875                                                  currently   2
## 12876                                                      drink   2
## 12877                                                    exactly   2
## 12878                                                     expert   2
## 12879                                                       food   2
## 12880                                                     hungry   2
## 12881                                                         im   2
## 12882                                                        kid   2
## 12883                                                       late   2
## 12884                                                      lucky   2
## 12885                                                    midwest   2
## 12886                                                   minority   2
## 12887                                                     native   2
## 12888                                                         ny   2
## 12889                                                        one   2
## 12890                                                 personally   2
## 12891                                                      right   2
## 12892                                                      shock   2
## 12893                                                        sit   2
## 12894                                                      south   2
## 12895                                                      spend   2
## 12896                                                      start   2
## 12897                                                       take   2
## 12898                                                      upset   2
## 12899                                                        use   2
## 12900                                                      watch   2
## 12901                                               philadelphia   2
## 12902                                                        eat   2
## 12903                                                        get   2
## 12904                                                        now   2
## 12905                                                 population   2
## 12906                                                      thing   2
## 12907                                                     cheese   2
## 12908                                                       food   2
## 12909                                                        get   2
## 12910                                                       good   2
## 12911                                                        ive   2
## 12912                                                       live   2
## 12913                                                      maybe   2
## 12914                                                       much   2
## 12915                                                      place   2
## 12916                                                   sandwich   2
## 12917                                                      genos   2
## 12918                                                    display   2
## 12919                                                      lunch   2
## 12920                                                    overall   2
## 12921                                                      taste   2
## 12922                                                       upon   2
## 12923                                                        sub   2
## 12924                                                       food   2
## 12925                                                      genos   2
## 12926                                                        tax   2
## 12927                                                      clean   2
## 12928                                                       long   2
## 12929                                                     racist   2
## 12930                                                cheesesteak   2
## 12931                                                      place   2
## 12932                                                     philly   2
## 12933                                                        pat   2
## 12934                                                       good   2
## 12935                                                      fresh   2
## 12936                                                       make   2
## 12937                                                      ratio   2
## 12938                                                     simple   2
## 12939                                                        hot   2
## 12940                                                        eat   2
## 12941                                                         im   2
## 12942                                                        ive   2
## 12943                                                    kitchen   2
## 12944                                                 restaurant   2
## 12945                                                       seat   2
## 12946                                                         go   2
## 12947                                                   american   2
## 12948                                                cheesesteak   2
## 12949                                                        eat   2
## 12950                                                     french   2
## 12951                                                       kind   2
## 12952                                                       meat   2
## 12953                                                  provolone   2
## 12954                                                      shred   2
## 12955                                                        sit   2
## 12956                                                       true   2
## 12957                                                        wiz   2
## 12958                                               philadelphia   2
## 12959                                                       salt   2
## 12960                                                     injury   2
## 12961                                                      slice   2
## 12962                                                   passyunk   2
## 12963                                                        pat   2
## 12964                                                     cheese   2
## 12965                                                cheesesteak   2
## 12966                                                      genos   2
## 12967                                                 atmosphere   2
## 12968                                                       jims   2
## 12969                                                     enough   2
## 12970                                                    exactly   2
## 12971                                                  flavorful   2
## 12972                                                      fresh   2
## 12973                                                   friendly   2
## 12974                                                       hard   2
## 12975                                                       just   2
## 12976                                                     locate   2
## 12977                                                        one   2
## 12978                                                      place   2
## 12979                                                    descent   2
## 12980                                               neighborhood   2
## 12981                                                       pork   2
## 12982                                                 restaurant   2
## 12983                                                      spice   2
## 12984                                                        get   2
## 12985                                                       menu   2
## 12986                                                       good   2
## 12987                                                    already   2
## 12988                                                       also   2
## 12989                                                      bread   2
## 12990                                                     cheese   2
## 12991                                                         do   2
## 12992                                                      dozen   2
## 12993                                                        far   2
## 12994                                                    finally   2
## 12995                                                       just   2
## 12996                                                        lot   2
## 12997                                                    several   2
## 12998                                                      taste   2
## 12999                                                       tell   2
## 13000                                                       time   2
## 13001                                                      twice   2
## 13002                                                       wait   2
## 13003                                                        yes   2
## 13004                                                   clampett   2
## 13005                                                   sandwich   2
## 13006                                                        sub   2
## 13007                                                       just   2
## 13008                                               philadelphia   2
## 13009                                                      place   2
## 13010                                                      johns   2
## 13011                                                     cheese   2
## 13012                                               dalessandros   2
## 13013                                                        far   2
## 13014                                                        get   2
## 13015                                                         im   2
## 13016                                               ishkabibbles   2
## 13017                                                      johns   2
## 13018                                                       just   2
## 13019                                                     philly   2
## 13020                                                      place   2
## 13021                                                         st   2
## 13022                                                     though   2
## 13023                                                       will   2
## 13024                                                       cant   2
## 13025                                                         go   2
## 13026                                                       make   2
## 13027                                                   formerly   2
## 13028                                                      start   2
## 13029                                                       city   2
## 13030                                                       come   2
## 13031                                                      first   2
## 13032                                                        get   2
## 13033                                                         go   2
## 13034                                                       good   2
## 13035                                                        pat   2
## 13036                                                        say   2
## 13037                                                       town   2
## 13038                                                       good   2
## 13039                                                       find   2
## 13040                                                       good   2
## 13041                                                      place   2
## 13042                                                      fatty   2
## 13043                                                       good   2
## 13044                                                       just   2
## 13045                                                       like   2
## 13046                                                       love   2
## 13047                                                     season   2
## 13048                                                      steak   2
## 13049                                                     though   2
## 13050                                                      whole   2
## 13051                                                         th   2
## 13052                                                     accept   2
## 13053                                                     always   2
## 13054                                                      arent   2
## 13055                                                     around   2
## 13056                                                        ask   2
## 13057                                                      awful   2
## 13058                                                       boil   2
## 13059                                                   business   2
## 13060                                                        buy   2
## 13061                                                      cause   2
## 13062                                                      check   2
## 13063                                               cheesesteaks   2
## 13064                                                     circle   2
## 13065                                                       cold   2
## 13066                                                       cool   2
## 13067                                                       damn   2
## 13068                                                      dicks   2
## 13069                                                  different   2
## 13070                                                      dirty   2
## 13071                                                      drive   2
## 13072                                                     edible   2
## 13073                                                        end   2
## 13074                                                    english   2
## 13075                                                    enhance   2
## 13076                                                       fall   2
## 13077                                                     follow   2
## 13078                                                       gain   2
## 13079                                                      gotta   2
## 13080                                                       grab   2
## 13081                                                        guy   2
## 13082                                                       head   2
## 13083                                                       help   2
## 13084                                                       high   2
## 13085                                                     honest   2
## 13086                                                   horrible   2
## 13087                                                       keep   2
## 13088                                                        let   2
## 13089                                                       live   2
## 13090                                                     matter   2
## 13091                                                       meat   2
## 13092                                                       open   2
## 13093                                                    outside   2
## 13094                                                       pack   2
## 13095                                                        pat   2
## 13096                                                   personal   2
## 13097                                                       piss   2
## 13098                                                     polite   2
## 13099                                                     prefer   2
## 13100                                                     pretty   2
## 13101                                                    putting   2
## 13102                                                        raw   2
## 13103                                                       read   2
## 13104                                                      ready   2
## 13105                                                     really   2
## 13106                                                       ride   2
## 13107                                                       roll   2
## 13108                                                        sad   2
## 13109                                                       save   2
## 13110                                                     scream   2
## 13111                                                      shrug   2
## 13112                                                       sign   2
## 13113                                                     simple   2
## 13114                                                      slice   2
## 13115                                                   slightly   2
## 13116                                                    someone   2
## 13117                                                      sound   2
## 13118                                                       spin   2
## 13119                                                       stay   2
## 13120                                                        tad   2
## 13121                                                  tasteless   2
## 13122                                                      touch   2
## 13123                                                        use   2
## 13124                                                      watch   2
## 13125                                                      weird   2
## 13126                                                       whiz   2
## 13127                                                      wrong   2
## 13128                                                        ask   2
## 13129                                                       meat   2
## 13130                                                     racist   2
## 13131                                                       read   2
## 13132                                                       roll   2
## 13133                                                     scream   2
## 13134                                                      steak   2
## 13135                                                       warm   2
## 13136                                                        etc   2
## 13137                                                         go   2
## 13138                                                       half   2
## 13139                                                       just   2
## 13140                                                     packet   2
## 13141                                                       salt   2
## 13142                                                      genos   2
## 13143                                                        ass   2
## 13144                                                       head   2
## 13145                                                        try   2
## 13146                                                       want   2
## 13147                                                       year   2
## 13148                                                     action   2
## 13149                                                      chewy   2
## 13150                                                       cold   2
## 13151                                                       food   2
## 13152                                                       girl   2
## 13153                                                       hard   2
## 13154                                                        hot   2
## 13155                                                      steak   2
## 13156                                                      tough   2
## 13157                                                       turn   2
## 13158                                                       blah   2
## 13159                                                     pricey   2
## 13160                                                     remind   2
## 13161                                                       rude   2
## 13162                                                       suck   2
## 13163                                                        ask   2
## 13164                                                       also   2
## 13165                                                        can   2
## 13166                                                      genos   2
## 13167                                                       good   2
## 13168                                                     philly   2
## 13169                                                      pizza   2
## 13170                                                       taco   2
## 13171                                                      clean   2
## 13172                                                         im   2
## 13173                                                       much   2
## 13174                                                        cut   2
## 13175                                                      ahead   2
## 13176                                                    already   2
## 13177                                                   american   2
## 13178                                                      andor   2
## 13179                                                     anyone   2
## 13180                                                          b   2
## 13181                                                        can   2
## 13182                                                       cash   2
## 13183                                                      chink   2
## 13184                                                       deal   2
## 13185                                                    english   2
## 13186                                                     famous   2
## 13187                                                      first   2
## 13188                                                      great   2
## 13189                                                        guy   2
## 13190                                                       half   2
## 13191                                                       joke   2
## 13192                                                     little   2
## 13193                                                        low   2
## 13194                                                        man   2
## 13195                                                       melt   2
## 13196                                                      money   2
## 13197                                                    process   2
## 13198                                                     racist   2
## 13199                                                      right   2
## 13200                                                        say   2
## 13201                                                  something   2
## 13202                                                      speak   2
## 13203                                                      still   2
## 13204                                                      youll   2
## 13205                                                     cheese   2
## 13206                                                     single   2
## 13207                                                cheesesteak   2
## 13208                                                       food   2
## 13209                                                     luster   2
## 13210                                                      onion   2
## 13211                                                        pat   2
## 13212                                                     people   2
## 13213                                                    quality   2
## 13214                                                       seat   2
## 13215                                                  something   2
## 13216                                                      taste   2
## 13217                                                    thereof   2
## 13218                                                        wiz   2
## 13219                                                        ask   2
## 13220                                                    cashier   2
## 13221                                                      front   2
## 13222                                                       sign   2
## 13223                                                    america   2
## 13224                                                        phl   2
## 13225                                                cheesesteak   2
## 13226                                                      genos   2
## 13227                                                  basically   2
## 13228                                                    english   2
## 13229                                                     amount   2
## 13230                                                     cheese   2
## 13231                                                      chunk   2
## 13232                                                       city   2
## 13233                                                        cut   2
## 13234                                                       good   2
## 13235                                                       slab   2
## 13236                                                       soda   2
## 13237                                                    variety   2
## 13238                                                      whole   2
## 13239                                                      check   2
## 13240                                                        day   2
## 13241                                                       food   2
## 13242                                                       hour   2
## 13243                                                       meal   2
## 13244                                                      month   2
## 13245                                                       name   2
## 13246                                                      place   2
## 13247                                                      thing   2
## 13248                                                      visit   2
## 13249                                                    weekend   2
## 13250                                                         do   2
## 13251                                                      drink   2
## 13252                                                     flight   2
## 13253                                                        get   2
## 13254                                                      great   2
## 13255                                                       hour   2
## 13256                                                         mr   2
## 13257                                                     review   2
## 13258                                                      still   2
## 13259                                                       tell   2
## 13260                                                        try   2
## 13261                                                  immigrant   2
## 13262                                                     astray   2
## 13263                                                    believe   2
## 13264                                                     street   2
## 13265                                                 everywhere   2
## 13266                                                   business   2
## 13267                                                      order   2
## 13268                                                    quickly   2
## 13269                                                     behind   2
## 13270                                                       city   2
## 13271                                                 disappoint   2
## 13272                                                        eat   2
## 13273                                                       food   2
## 13274                                                       good   2
## 13275                                                       last   2
## 13276                                                     little   2
## 13277                                                       meat   2
## 13278                                                        pat   2
## 13279                                                       real   2
## 13280                                                       side   2
## 13281                                                    without   2
## 13282                                                     wonder   2
## 13283                                                   language   2
## 13284                                              establishment   2
## 13285                                                     philly   2
## 13286                                                      steak   2
## 13287                                                     philly   2
## 13288                                                     cheese   2
## 13289                                                      didnt   2
## 13290                                                         do   2
## 13291                                                     edible   2
## 13292                                                       just   2
## 13293                                                   lifetime   2
## 13294                                                       look   2
## 13295                                                       melt   2
## 13296                                                        now   2
## 13297                                                    service   2
## 13298                                                       star   2
## 13299                                                       take   2
## 13300                                                      thats   2
## 13301                                                      think   2
## 13302                                                      three   2
## 13303                                                      throw   2
## 13304                                                       time   2
## 13305                                                       year   2
## 13306                                                       know   2
## 13307                                                     decide   2
## 13308                                                       find   2
## 13309                                                      genos   2
## 13310                                                     honest   2
## 13311                                                     philly   2
## 13312                                                    preface   2
## 13313                                                       ruin   2
## 13314                                                       talk   2
## 13315                                                     finger   2
## 13316                                                     philly   2
## 13317                                                       beef   2
## 13318                                                     change   2
## 13319                                                      first   2
## 13320                                                         go   2
## 13321                                                       hype   2
## 13322                                                        ive   2
## 13323                                                      never   2
## 13324                                                     philly   2
## 13325                                                      steak   2
## 13326                                                       work   2
## 13327                                                  advertise   2
## 13328                                                      build   2
## 13329                                                        can   2
## 13330                                                      clean   2
## 13331                                                      decor   2
## 13332                                                 definitely   2
## 13333                                                       draw   2
## 13334                                                     flashy   2
## 13335                                                      glitz   2
## 13336                                                       look   2
## 13337                                                       make   2
## 13338                                                       many   2
## 13339                                                       neon   2
## 13340                                                     orange   2
## 13341                                                      place   2
## 13342                                                    tourist   2
## 13343                                                       fast   2
## 13344                                                       back   2
## 13345                                                     bakery   2
## 13346                                                    balance   2
## 13347                                                      break   2
## 13348                                                   business   2
## 13349                                                  cafeteria   2
## 13350                                                     cattle   2
## 13351                                                      cheap   2
## 13352                                                    chicken   2
## 13353                                                  christmas   2
## 13354                                                     couple   2
## 13355                                                   customer   2
## 13356                                                       damn   2
## 13357                                                        day   2
## 13358                                                     degree   2
## 13359                                                         em   2
## 13360                                                      enjoy   2
## 13361                                                       even   2
## 13362                                                 experience   2
## 13363                                                      favor   2
## 13364                                                       feel   2
## 13365                                                       find   2
## 13366                                                      first   2
## 13367                                                       folk   2
## 13368                                                       half   2
## 13369                                                     heaven   2
## 13370                                                       hold   2
## 13371                                                   honestly   2
## 13372                                                       hour   2
## 13373                                                       idea   2
## 13374                                                     inside   2
## 13375                                                    italian   2
## 13376                                                        job   2
## 13377                                                       long   2
## 13378                                                       look   2
## 13379                                                      maybe   2
## 13380                                                  microwave   2
## 13381                                                       mine   2
## 13382                                                     minute   2
## 13383                                                        mix   2
## 13384                                                   mushroom   2
## 13385                                                      nacho   2
## 13386                                                        new   2
## 13387                                                      owner   2
## 13388                                                     pepper   2
## 13389                                                     please   2
## 13390                                                      point   2
## 13391                                                    process   2
## 13392                                                       rely   2
## 13393                                                      right   2
## 13394                                                      roast   2
## 13395                                                      rocky   2
## 13396                                                      serve   2
## 13397                                                       slab   2
## 13398                                                      sorry   2
## 13399                                                      speak   2
## 13400                                                      thats   2
## 13401                                                     theres   2
## 13402                                                     theyve   2
## 13403                                                      three   2
## 13404                                                       time   2
## 13405                                                     travel   2
## 13406                                                       true   2
## 13407                                                    typical   2
## 13408                                                      usual   2
## 13409                                                       wawa   2
## 13410                                                        wet   2
## 13411                                                        wit   2
## 13412                                                        wtf   2
## 13413                                                      youve   2
## 13414                                                       will   2
## 13415                                                       wont   2
## 13416                                                       able   2
## 13417                                                    english   2
## 13418                                                    outdoor   2
## 13419                                                    outside   2
## 13420                                                  financial   2
## 13421                                                     always   2
## 13422                                                    america   2
## 13423                                                    another   2
## 13424                                                     arrive   2
## 13425                                                        bad   2
## 13426                                                     behind   2
## 13427                                                      bread   2
## 13428                                                cheesesteak   2
## 13429                                                      crazy   2
## 13430                                                     decide   2
## 13431                                                       deep   2
## 13432                                                 definitely   2
## 13433                                                      drink   2
## 13434                                                      enjoy   2
## 13435                                                       even   2
## 13436                                                     expect   2
## 13437                                                 experience   2
## 13438                                                  extremely   2
## 13439                                                     figure   2
## 13440                                                       find   2
## 13441                                                     friend   2
## 13442                                                       grow   2
## 13443                                                       half   2
## 13444                                                       hope   2
## 13445                                                        ill   2
## 13446                                                         im   2
## 13447                                                     insane   2
## 13448                                                       keep   2
## 13449                                                       lead   2
## 13450                                                       like   2
## 13451                                                       line   2
## 13452                                                   location   2
## 13453                                                        lol   2
## 13454                                                      maybe   2
## 13455                                                     middle   2
## 13456                                                      money   2
## 13457                                                       must   2
## 13458                                                 outrageous   2
## 13459                                                     philly   2
## 13460                                                         pm   2
## 13461                                                      price   2
## 13462                                                   probably   2
## 13463                                                      quick   2
## 13464                                                      rainy   2
## 13465                                                       rude   2
## 13466                                                       sand   2
## 13467                                                        say   2
## 13468                                                   sidewalk   2
## 13469                                                        sit   2
## 13470                                                      speak   2
## 13471                                                      spend   2
## 13472                                                      staff   2
## 13473                                                      start   2
## 13474                                                      still   2
## 13475                                                       stop   2
## 13476                                                    stretch   2
## 13477                                                      style   2
## 13478                                                       talk   2
## 13479                                                      taste   2
## 13480                                                       want   2
## 13481                                                        get   2
## 13482                                                      order   2
## 13483                                                     cheese   2
## 13484                                                      check   2
## 13485                                                      genos   2
## 13486                                                        get   2
## 13487                                                       main   2
## 13488                                                         im   2
## 13489                                                      local   2
## 13490                                                     people   2
## 13491                                                     review   2
## 13492                                                   anywhere   2
## 13493                                                    couldnt   2
## 13494                                                         do   2
## 13495                                                        eat   2
## 13496                                                       next   2
## 13497                                                     second   2
## 13498                                                       take   2
## 13499                                                      throw   2
## 13500                                                     amount   2
## 13501                                                      annoy   2
## 13502                                                        big   2
## 13503                                                     crappy   2
## 13504                                                     desire   2
## 13505                                                 difference   2
## 13506                                                  different   2
## 13507                                                        dry   2
## 13508                                                       dull   2
## 13509                                                  enjoyable   2
## 13510                                                       fame   2
## 13511                                                     famous   2
## 13512                                                       fill   2
## 13513                                                       firm   2
## 13514                                                       five   2
## 13515                                                       food   2
## 13516                                                      heavy   2
## 13517                                                      ideal   2
## 13518                                                      juicy   2
## 13519                                                       like   2
## 13520                                                       line   2
## 13521                                                   patience   2
## 13522                                                      price   2
## 13523                                                        put   2
## 13524                                                     really   2
## 13525                                                 ridiculous   2
## 13526                                                     season   2
## 13527                                                       seat   2
## 13528                                                      shock   2
## 13529                                                       sign   2
## 13530                                                  something   2
## 13531                                                   surprise   2
## 13532                                                  tasteless   2
## 13533                                                      tasty   2
## 13534                                                   touristy   2
## 13535                                                        two   2
## 13536                                                    whether   2
## 13537                                                        wiz   2
## 13538                                                      worry   2
## 13539                                                         dc   2
## 13540                                                      learn   2
## 13541                                                     legend   2
## 13542                                                     nearby   2
## 13543                                                         nj   2
## 13544                                                         ny   2
## 13545                                                      texas   2
## 13546                                                    without   2
## 13547                                                     behold   2
## 13548                                                   actually   2
## 13549                                                  bartender   2
## 13550                                                   carryout   2
## 13551                                                      chain   2
## 13552                                                     corner   2
## 13553                                                       fast   2
## 13554                                                   favorite   2
## 13555                                                    hangout   2
## 13556                                                   language   2
## 13557                                                       like   2
## 13558                                             philadelphians   2
## 13559                                                  recommend   2
## 13560                                                     review   2
## 13561                                                        say   2
## 13562                                                       take   2
## 13563                                                      think   2
## 13564                                                   directly   2
## 13565                                                       good   2
## 13566                                                      heart   2
## 13567                                                      south   2
## 13568                                                     famous   2
## 13569                                                      light   2
## 13570                                                       pick   2
## 13571                                                       take   2
## 13572                                                         th   2
## 13573                                                         do   2
## 13574                                                         im   2
## 13575                                                     philly   2
## 13576                                                      taste   2
## 13577                                                        can   2
## 13578                                                       cash   2
## 13579                                                     cheese   2
## 13580                                                        day   2
## 13581                                                 definitely   2
## 13582                                                     expect   2
## 13583                                                      first   2
## 13584                                                       good   2
## 13585                                                    history   2
## 13586                                                        hot   2
## 13587                                                       hour   2
## 13588                                                     island   2
## 13589                                                       like   2
## 13590                                                       park   2
## 13591                                                      place   2
## 13592                                                     pretty   2
## 13593                                                     really   2
## 13594                                                     reason   2
## 13595                                                   sandwich   2
## 13596                                                        see   2
## 13597                                                       thin   2
## 13598                                                 appetizing   2
## 13599                                                    awesome   2
## 13600                                                       call   2
## 13601                                                cheesesteak   2
## 13602                                               cheesesteaks   2
## 13603                                                  delicious   2
## 13604                                                  different   2
## 13605                                                        eat   2
## 13606                                                       long   2
## 13607                                                       many   2
## 13608                                                  miserable   2
## 13609                                                       nice   2
## 13610                                                    popular   2
## 13611                                                     really   2
## 13612                                                 restaurant   2
## 13613                                                       sign   2
## 13614                                                    someone   2
## 13615                                                      steak   2
## 13616                                                       take   2
## 13617                                                      thing   2
## 13618                                                        try   2
## 13619                                                       line   2
## 13620                                                cheesesteak   2
## 13621                                                       mind   2
## 13622                                                      point   2
## 13623                                                     choice   2
## 13624                                                  different   2
## 13625                                                     friend   2
## 13626                                                     grease   2
## 13627                                                       hate   2
## 13628                                                    history   2
## 13629                                                      light   2
## 13630                                                      local   2
## 13631                                                       make   2
## 13632                                                    mexican   2
## 13633                                                     napkin   2
## 13634                                                     philly   2
## 13635                                                        see   2
## 13636                                                    towners   2
## 13637                                                     cherry   2
## 13638                                                         do   2
## 13639                                                        eat   2
## 13640                                                     friend   2
## 13641                                                        fry   2
## 13642                                                        get   2
## 13643                                                      ginos   2
## 13644                                                        god   2
## 13645                                                       jims   2
## 13646                                                       meat   2
## 13647                                                        one   2
## 13648                                                     people   2
## 13649                                               philadelphia   2
## 13650                                                  provolone   2
## 13651                                                       roll   2
## 13652                                                      steak   2
## 13653                                                       thin   2
## 13654                                                      watch   2
## 13655                                                        wit   2
## 13656                                                        wiz   2
## 13657                                                       good   2
## 13658                                                        key   2
## 13659                                                      score   2
## 13660                                                       yelp   2
## 13661                                                      genos   2
## 13662                                                         go   2
## 13663                                                       able   2
## 13664                                                       many   2
## 13665                                                        pat   2
## 13666                                               dalessandros   2
## 13667                                                        far   2
## 13668                                                      first   2
## 13669                                                        get   2
## 13670                                                         im   2
## 13671                                                       make   2
## 13672                                                       next   2
## 13673                                                      steak   2
## 13674                                                      visit   2
## 13675                                                      break   2
## 13676                                                       date   2
## 13677                                                       rush   2
## 13678                                                      organ   2
## 13679                                                   language   2
## 13680                                                   attitude   2
## 13681                                                    tourist   2
## 13682                                                     flavor   2
## 13683                                                     across   2
## 13684                                                      angry   2
## 13685                                                     choose   2
## 13686                                               conversation   2
## 13687                                                    country   2
## 13688                                                      crave   2
## 13689                                                     decent   2
## 13690                                                  delicious   2
## 13691                                                destination   2
## 13692                                                      drive   2
## 13693                                                    dryness   2
## 13694                                                 everything   2
## 13695                                                        far   2
## 13696                                                       fast   2
## 13697                                                      filet   2
## 13698                                                      first   2
## 13699                                                     flavor   2
## 13700                                                        get   2
## 13701                                                         go   2
## 13702                                                       high   2
## 13703                                                       hour   2
## 13704                                                       long   2
## 13705                                                       lose   2
## 13706                                                        low   2
## 13707                                                       meat   2
## 13708                                                       mess   2
## 13709                                                    obvious   2
## 13710                                                       okay   2
## 13711                                                        pat   2
## 13712                                                 pilgrimage   2
## 13713                                                      place   2
## 13714                                                   question   2
## 13715                                                    quickly   2
## 13716                                                     really   2
## 13717                                                       roll   2
## 13718                                                      round   2
## 13719                                                        run   2
## 13720                                                     second   2
## 13721                                                       seem   2
## 13722                                                   separate   2
## 13723                                                      small   2
## 13724                                                  statement   2
## 13725                                                    stomach   2
## 13726                                                      store   2
## 13727                                                        sub   2
## 13728                                                       take   2
## 13729                                                      tasty   2
## 13730                                                      think   2
## 13731                                                      throw   2
## 13732                                                       true   2
## 13733                                                         tv   2
## 13734                                                          u   2
## 13735                                              uncomfortable   2
## 13736                                                 understand   2
## 13737                                                       walk   2
## 13738                                                       yelp   2
## 13739                                                       roll   2
## 13740                                                       good   2
## 13741                                                      genos   2
## 13742                                                        get   2
## 13743                                                        one   2
## 13744                                                       take   2
## 13745                                                      video   2
## 13746                                                      woman   2
## 13747                                                      avoid   2
## 13748                                                     change   2
## 13749                                                     choice   2
## 13750                                                 disappoint   2
## 13751                                                       folk   2
## 13752                                                       late   2
## 13753                                                     little   2
## 13754                                                        may   2
## 13755                                               neighborhood   2
## 13756                                             philadelphians   2
## 13757                                                     reason   2
## 13758                                                      thing   2
## 13759                                                    tourist   2
## 13760                                                       work   2
## 13761                                                      genos   2
## 13762                                                       good   2
## 13763                                                       meat   2
## 13764                                                     bucket   2
## 13765                                                       area   2
## 13766                                                      share   2
## 13767                                                      south   2
## 13768                                                     street   2
## 13769                                                 production   2
## 13770                                                       just   2
## 13771                                                        may   2
## 13772                                                        one   2
## 13773                                                   personal   2
## 13774                                                    cleaver   2
## 13775                                                      north   2
## 13776                                                        ask   2
## 13777                                                        bad   2
## 13778                                                    believe   2
## 13779                                                       come   2
## 13780                                                        eat   2
## 13781                                                       find   2
## 13782                                                      great   2
## 13783                                                       long   2
## 13784                                                       mean   2
## 13785                                                    mistake   2
## 13786                                                       need   2
## 13787                                                    perfect   2
## 13788                                                       seem   2
## 13789                                                       send   2
## 13790                                                      sound   2
## 13791                                                      think   2
## 13792                                                    trouble   2
## 13793                                                      worth   2
## 13794                                                expectation   2
## 13795                                                 experience   2
## 13796                                                       isnt   2
## 13797                                                      local   2
## 13798                                                       long   2
## 13799                                                     minute   2
## 13800                                                     burger   2
## 13801                                               cheesesteaks   2
## 13802                                                      place   2
## 13803                                                     cheese   2
## 13804                                                        eat   2
## 13805                                                      genos   2
## 13806                                                       just   2
## 13807                                                cheesesteak   2
## 13808                                                         do   2
## 13809                                                       give   2
## 13810                                                      guess   2
## 13811                                                       just   2
## 13812                                                       meat   2
## 13813                                                  something   2
## 13814                                                      steak   2
## 13815                                                     though   2
## 13816                                                        wit   2
## 13817                                                     across   2
## 13818                                                   although   2
## 13819                                                     appear   2
## 13820                                                       cant   2
## 13821                                               cheesesteaks   2
## 13822                                                  condiment   2
## 13823                                                    crunchy   2
## 13824                                                     decent   2
## 13825                                                    deliver   2
## 13826                                                  different   2
## 13827                                                    disgust   2
## 13828                                                     doesnt   2
## 13829                                                       easy   2
## 13830                                                        eat   2
## 13831                                                        end   2
## 13832                                                       even   2
## 13833                                                       ever   2
## 13834                                                        far   2
## 13835                                                     friend   2
## 13836                                                    general   2
## 13837                                                    gristly   2
## 13838                                                       hand   2
## 13839                                                       hard   2
## 13840                                                    however   2
## 13841                                                       huge   2
## 13842                                                         im   2
## 13843                                                      joint   2
## 13844                                                       less   2
## 13845                                                        let   2
## 13846                                                       love   2
## 13847                                                        low   2
## 13848                                                   marinate   2
## 13849                                                   mediocre   2
## 13850                                                       miss   2
## 13851                                                      moist   2
## 13852                                                       need   2
## 13853                                                     oppose   2
## 13854                                                   overcook   2
## 13855                                                     overly   2
## 13856                                                       pile   2
## 13857                                                     poorly   2
## 13858                                                        pre   2
## 13859                                                    prepare   2
## 13860                                                    rubbery   2
## 13861                                                      salty   2
## 13862                                                      soggy   2
## 13863                                                  something   2
## 13864                                                       sort   2
## 13865                                                      still   2
## 13866                                                   straight   2
## 13867                                                        sub   2
## 13868                                                     subpar   2
## 13869                                                       suck   2
## 13870                                                      throw   2
## 13871                                                    topping   2
## 13872                                                        use   2
## 13873                                                        yet   2
## 13874                                                      youre   2
## 13875                                                       zero   2
## 13876                                                   sandwich   2
## 13877                                                      bread   2
## 13878                                                     cheese   2
## 13879                                                 definitely   2
## 13880                                                        get   2
## 13881                                                    tourist   2
## 13882                                                       back   2
## 13883                                                     cheese   2
## 13884                                                      group   2
## 13885                                                     people   2
## 13886                                                cheesesteak   2
## 13887                                                      genos   2
## 13888                                                     little   2
## 13889                                                    tourist   2
## 13890                                                       away   2
## 13891                                                      cheez   2
## 13892                                                       drip   2
## 13893                                                       fast   2
## 13894                                                     little   2
## 13895                                                       meat   2
## 13896                                                        pot   2
## 13897                                                       roll   2
## 13898                                                       cash   2
## 13899                                                       love   2
## 13900                                                     racist   2
## 13901                                                     review   2
## 13902                                                    service   2
## 13903                                                      steak   2
## 13904                                                      genos   2
## 13905                                                        one   2
## 13906                                                      thank   2
## 13907                                                       wait   2
## 13908                                                        way   2
## 13909                                                       shop   2
## 13910                                                      idiot   2
## 13911                                                     around   2
## 13912                                                     cheese   2
## 13913                                                      genos   2
## 13914                                                      order   2
## 13915                                                        pat   2
## 13916                                                  delicious   2
## 13917                                                        eat   2
## 13918                                                    overall   2
## 13919                                                        box   2
## 13920                                                       food   2
## 13921                                                  immigrant   2
## 13922                                                  afternoon   2
## 13923                                                          s   2
## 13924                                                     finger   2
## 13925                                               intersection   2
## 13926                                                        pat   2
## 13927                                                   sandwich   2
## 13928                                                          x   2
## 13929                                                       even   2
## 13930                                                      hotel   2
## 13931                                                     philly   2
## 13932                                                   discount   2
## 13933                                                        get   2
## 13934                                                       line   2
## 13935                                                       wait   2
## 13936                                                       cash   2
## 13937                                                     expect   2
## 13938                                                      fresh   2
## 13939                                                        get   2
## 13940                                                       late   2
## 13941                                                       like   2
## 13942                                                       line   2
## 13943                                                        pay   2
## 13944                                                       take   2
## 13945                                                       will   2
## 13946                                                   mushroom   2
## 13947                                                      onion   2
## 13948                                                      visit   2
## 13949                                                        wit   2
## 13950                                                    without   2
## 13951                                                        eat   2
## 13952                                                    finally   2
## 13953                                                       food   2
## 13954                                                       just   2
## 13955                                                       park   2
## 13956                                                      place   2
## 13957                                                     really   2
## 13958                                                      split   2
## 13959                                                       take   2
## 13960                                                      usual   2
## 13961                                                       walk   2
## 13962                                                       want   2
## 13963                                                      wasnt   2
## 13964                                                       look   2
## 13965                                                      staff   2
## 13966                                                       look   2
## 13967                                                       much   2
## 13968                                                   sandwich   2
## 13969                                                        try   2
## 13970                                                        get   2
## 13971                                                      think   2
## 13972                                                      onion   2
## 13973                                                    politic   2
## 13974                                                     cheese   2
## 13975                                                        day   2
## 13976                                                       meat   2
## 13977                                                      didnt   2
## 13978                                                         do   2
## 13979                                                        eat   2
## 13980                                                  elsewhere   2
## 13981                                                       food   2
## 13982                                                     forget   2
## 13983                                                         id   2
## 13984                                                         im   2
## 13985                                                       just   2
## 13986                                                      light   2
## 13987                                                      right   2
## 13988                                                      serve   2
## 13989                                                      steak   2
## 13990                                                       wait   2
## 13991                                                      wasnt   2
## 13992                                                   sandwich   2
## 13993                                                         go   2
## 13994                                                        try   2
## 13995                                                         go   2
## 13996                                                      place   2
## 13997                                                        due   2
## 13998                                                      flame   2
## 13999                                                        get   2
## 14000                                                      didnt   2
## 14001                                                        get   2
## 14002                                                       back   2
## 14003                                                   everyone   2
## 14004                                                     people   2
## 14005                                                      south   2
## 14006                                                        add   2
## 14007                                                   anywhere   2
## 14008                                                      cheap   2
## 14009                                                cheesesteak   2
## 14010                                                      clean   2
## 14011                                                       come   2
## 14012                                                     effort   2
## 14013                                                     expect   2
## 14014                                                     flashy   2
## 14015                                                  flavorful   2
## 14016                                                       food   2
## 14017                                                   friendly   2
## 14018                                                    gristle   2
## 14019                                                      guess   2
## 14020                                                        hot   2
## 14021                                                      large   2
## 14022                                                       nice   2
## 14023                                                      order   2
## 14024                                                       park   2
## 14025                                                      place   2
## 14026                                                     rather   2
## 14027                                                 reasonable   2
## 14028                                                     review   2
## 14029                                                     season   2
## 14030                                                      sense   2
## 14031                                                       slow   2
## 14032                                                    special   2
## 14033                                                      steak   2
## 14034                                                       take   2
## 14035                                                     tender   2
## 14036                                                    tourist   2
## 14037                                                     people   2
## 14038                                                       just   2
## 14039                                                   american   2
## 14040                                                       even   2
## 14041                                                        fry   2
## 14042                                                        get   2
## 14043                                                       hand   2
## 14044                                                         im   2
## 14045                                                       like   2
## 14046                                                       look   2
## 14047                                                   mushroom   2
## 14048                                                     philly   2
## 14049                                                       seem   2
## 14050                                                      slimy   2
## 14051                                                       want   2
## 14052                                                      bland   2
## 14053                                                       mess   2
## 14054                                                       play   2
## 14055                                                       come   2
## 14056                                                      drink   2
## 14057                                                 experience   2
## 14058                                                       like   2
## 14059                                                        pay   2
## 14060                                                    tourist   2
## 14061                                                       just   2
## 14062                                                      place   2
## 14063                                                     cheese   2
## 14064                                                     pepper   2
## 14065                                                       just   2
## 14066                                                cheesesteak   2
## 14067                                                      first   2
## 14068                                                       live   2
## 14069                                                       name   2
## 14070                                                      place   2
## 14071                                                     reason   2
## 14072                                                      thing   2
## 14073                                                     margin   2
## 14074                                                   attitude   2
## 14075                                                       cant   2
## 14076                                                   language   2
## 14077                                                   language   2
## 14078                                                     philly   2
## 14079                                                     tongue   2
## 14080                                                      first   2
## 14081                                                       want   2
## 14082                                                      think   2
## 14083                                                         rd   2
## 14084                                                     street   2
## 14085                                                       good   2
## 14086                                                     window   2
## 14087                                                        pat   2
## 14088                                                       sell   2
## 14089                                                        hot   2
## 14090                                                       bite   2
## 14091                                                cheesesteak   2
## 14092                                                  condiment   2
## 14093                                                       find   2
## 14094                                                       good   2
## 14095                                                       just   2
## 14096                                                       make   2
## 14097                                                      money   2
## 14098                                                     philly   2
## 14099                                                        put   2
## 14100                                                       rush   2
## 14101                                                  something   2
## 14102                                                      speak   2
## 14103                                                      taste   2
## 14104                                                        use   2
## 14105                                                       wash   2
## 14106                                                      waste   2
## 14107                                                     across   2
## 14108                                                cheesesteak   2
## 14109                                                       just   2
## 14110                                                 restaurant   2
## 14111                                                     street   2
## 14112                                                       meat   2
## 14113                                                     really   2
## 14114                                                   sandwich   2
## 14115                                                      worth   2
## 14116                                                     bright   2
## 14117                                                    channel   2
## 14118                                                       make   2
## 14119                                                      place   2
## 14120                                                       show   2
## 14121                                                   anything   2
## 14122                                                     expect   2
## 14123                                                        fan   2
## 14124                                                       feel   2
## 14125                                                       find   2
## 14126                                                     forget   2
## 14127                                                     greasy   2
## 14128                                                       like   2
## 14129                                                       many   2
## 14130                                                       meet   2
## 14131                                               philadelphia   2
## 14132                                                       real   2
## 14133                                                     really   2
## 14134                                                     reason   2
## 14135                                                   sandwich   2
## 14136                                                      stand   2
## 14137                                                 understand   2
## 14138                                                      visit   2
## 14139                                                       wait   2
## 14140                                                       want   2
## 14141                                                       area   2
## 14142                                                    country   2
## 14143                                                   customer   2
## 14144                                                        one   2
## 14145                                                       cash   2
## 14146                                                    compare   2
## 14147                                                    counter   2
## 14148                                                      genos   2
## 14149                                                       hour   2
## 14150                                                 impossible   2
## 14151                                                     indoor   2
## 14152                                                       meat   2
## 14153                                                      month   2
## 14154                                                    morning   2
## 14155                                                        one   2
## 14156                                                        pat   2
## 14157                                                     person   2
## 14158                                                     philly   2
## 14159                                                       sign   2
## 14160                                                       stop   2
## 14161                                                       area   2
## 14162                                                       bite   2
## 14163                                                      bread   2
## 14164                                                     cheesy   2
## 14165                                                    compare   2
## 14166                                                     crunch   2
## 14167                                                        fat   2
## 14168                                                      juicy   2
## 14169                                                       know   2
## 14170                                                       lady   2
## 14171                                                       like   2
## 14172                                                       long   2
## 14173                                                    mention   2
## 14174                                                      onion   2
## 14175                                                   probably   2
## 14176                                                    quality   2
## 14177                                                      round   2
## 14178                                                        say   2
## 14179                                                       seem   2
## 14180                                                       sign   2
## 14181                                                      slice   2
## 14182                                                       spot   2
## 14183                                                       thin   2
## 14184                                                      grill   2
## 14185                                                      onion   2
## 14186                                                     season   2
## 14187                                                        bar   2
## 14188                                                     cheese   2
## 14189                                                cheesesteak   2
## 14190                                                       club   2
## 14191                                                 completely   2
## 14192                                                        day   2
## 14193                                                    dessert   2
## 14194                                                 experience   2
## 14195                                                       food   2
## 14196                                                     friend   2
## 14197                                                        get   2
## 14198                                                       good   2
## 14199                                                       grub   2
## 14200                                                      heavy   2
## 14201                                                       line   2
## 14202                                                     little   2
## 14203                                                       many   2
## 14204                                                      maybe   2
## 14205                                                       meal   2
## 14206                                                       next   2
## 14207                                                    nothing   2
## 14208                                                        pat   2
## 14209                                                        pic   2
## 14210                                                     sunday   2
## 14211                                                       take   2
## 14212                                                      thing   2
## 14213                                                       town   2
## 14214                                                      worth   2
## 14215                                                       good   2
## 14216                                                      genos   2
## 14217                                                      genos   2
## 14218                                                       good   2
## 14219                                                       love   2
## 14220                                                      place   2
## 14221                                                    speaker   2
## 14222                                                    service   2
## 14223                                                cheesesteak   2
## 14224                                                       hour   2
## 14225                                                       good   2
## 14226                                                       east   2
## 14227                                                      genos   2
## 14228                                                       line   2
## 14229                                                       make   2
## 14230                                                     philly   2
## 14231                                                        say   2
## 14232                                                      amaze   2
## 14233                                                     anyone   2
## 14234                                                       brag   2
## 14235                                                      crazy   2
## 14236                                                     excite   2
## 14237                                                      fancy   2
## 14238                                                      great   2
## 14239                                                     little   2
## 14240                                                      onion   2
## 14241                                                       open   2
## 14242                                                      place   2
## 14243                                                 remarkable   2
## 14244                                                        say   2
## 14245                                                      short   2
## 14246                                                      taste   2
## 14247                                                      worth   2
## 14248                                                        pat   2
## 14249                                                        two   2
## 14250                                                   attitude   2
## 14251                                                      clear   2
## 14252                                                      close   2
## 14253                                                      didnt   2
## 14254                                                       food   2
## 14255                                                      guess   2
## 14256                                                       keep   2
## 14257                                                       like   2
## 14258                                                      thats   2
## 14259                                                        two   2
## 14260                                                      youre   2
## 14261                                                       show   2
## 14262                                                       time   2
## 14263                                                       good   2
## 14264                                                        try   2
## 14265                                                      genos   2
## 14266                                                       good   2
## 14267                                                       make   2
## 14268                                                     really   2
## 14269                                                       good   2
## 14270                                                      decor   2
## 14271                                                       come   2
## 14272                                                        get   2
## 14273                                                         go   2
## 14274                                                         im   2
## 14275                                                       make   2
## 14276                                                    problem   2
## 14277                                                    morning   2
## 14278                                                         do   2
## 14279                                                cheesesteak   2
## 14280                                                        pat   2
## 14281                                                     pepper   2
## 14282                                                firefighter   2
## 14283                                                       kill   2
## 14284                                                      legal   2
## 14285                                                     philly   2
## 14286                                                     always   2
## 14287                                                   goodness   2
## 14288                                                      hello   2
## 14289                                                        ill   2
## 14290                                                       just   2
## 14291                                                       look   2
## 14292                                                      place   2
## 14293                                                   remember   2
## 14294                                                       whiz   2
## 14295                                                      yummy   2
## 14296                                                   although   2
## 14297                                                       cash   2
## 14298                                                 experience   2
## 14299                                                       find   2
## 14300                                                     flavor   2
## 14301                                                        fry   2
## 14302                                                        get   2
## 14303                                                       hard   2
## 14304                                                      heres   2
## 14305                                                    husband   2
## 14306                                                        ive   2
## 14307                                                     little   2
## 14308                                                       mean   2
## 14309                                                        now   2
## 14310                                                        one   2
## 14311                                                     really   2
## 14312                                                   sandwich   2
## 14313                                                       sign   2
## 14314                                                       sure   2
## 14315                                                     theres   2
## 14316                                                      think   2
## 14317                                                     though   2
## 14318                                                      visit   2
## 14319                                                   whatever   2
## 14320                                                      youll   2
## 14321                                                      youve   2
## 14322                                                       beat   2
## 14323                                                       boil   2
## 14324                                                cheesesteak   2
## 14325                                                    fashion   2
## 14326                                                  gentleman   2
## 14327                                                       hard   2
## 14328                                                    italian   2
## 14329                                                       meat   2
## 14330                                                   sandwich   2
## 14331                                                      woman   2
## 14332                                                  afternoon   2
## 14333                                                    airport   2
## 14334                                                     anyone   2
## 14335                                                       area   2
## 14336                                                       base   2
## 14337                                                     behind   2
## 14338                                                      bread   2
## 14339                                                    brother   2
## 14340                                                      clean   2
## 14341                                                      clear   2
## 14342                                                       come   2
## 14343                                                    counter   2
## 14344                                                 definitely   2
## 14345                                                   directly   2
## 14346                                                  elsewhere   2
## 14347                                                   employee   2
## 14348                                                     enough   2
## 14349                                                       ever   2
## 14350                                                     expect   2
## 14351                                                       feel   2
## 14352                                                       find   2
## 14353                                                     follow   2
## 14354                                                       food   2
## 14355                                                      front   2
## 14356                                                       home   2
## 14357                                                       hour   2
## 14358                                                       huge   2
## 14359                                                       item   2
## 14360                                                   location   2
## 14361                                                       look   2
## 14362                                                        man   2
## 14363                                                       near   2
## 14364                                                      never   2
## 14365                                                    nothing   2
## 14366                                                        old   2
## 14367                                                     option   2
## 14368                                                      piece   2
## 14369                                                       plus   2
## 14370                                                   positive   2
## 14371                                                       read   2
## 14372                                                     review   2
## 14373                                                       sell   2
## 14374                                                    service   2
## 14375                                                      since   2
## 14376                                                      small   2
## 14377                                                      still   2
## 14378                                                       stop   2
## 14379                                                      table   2
## 14380                                                       take   2
## 14381                                                      taste   2
## 14382                                                      three   2
## 14383                                                      throw   2
## 14384                                                      visit   2
## 14385                                                       wait   2
## 14386                                                       wall   2
## 14387                                                    weekend   2
## 14388                                                  wellknown   2
## 14389                                                      world   2
## 14390                                                  yesterday   2
## 14391                                                          2   2
## 14392                                                     always   2
## 14393                                                      amaze   2
## 14394                                                   anything   2
## 14395                                                     barely   2
## 14396                                                      bland   2
## 14397                                                      bring   2
## 14398                                                     choice   2
## 14399                                                       come   2
## 14400                                                    compare   2
## 14401                                                  complaint   2
## 14402                                                 completely   2
## 14403                                                       cost   2
## 14404                                                     course   2
## 14405                                                  delicious   2
## 14406                                                        eat   2
## 14407                                                        etc   2
## 14408                                                      every   2
## 14409                                                       feel   2
## 14410                                                  flavorful   2
## 14411                                                    flavour   2
## 14412                                                     greasy   2
## 14413                                                        hit   2
## 14414                                                    however   2
## 14415                                                     inside   2
## 14416                                                    instead   2
## 14417                                                      juice   2
## 14418                                                       lack   2
## 14419                                                      leave   2
## 14420                                                       line   2
## 14421                                                        lot   2
## 14422                                                    massive   2
## 14423                                                      maybe   2
## 14424                                                       mayo   2
## 14425                                                       melt   2
## 14426                                                        mix   2
## 14427                                                      never   2
## 14428                                                       nice   2
## 14429                                                         oh   2
## 14430                                                    overall   2
## 14431                                                   overcook   2
## 14432                                                     overdo   2
## 14433                                                     pretty   2
## 14434                                                    regular   2
## 14435                                                      saute   2
## 14436                                                    sautéed   2
## 14437                                                  seriously   2
## 14438                                                       side   2
## 14439                                                      slice   2
## 14440                                                      split   2
## 14441                                                      steam   2
## 14442                                                       tell   2
## 14443                                                     theyll   2
## 14444                                                      thing   2
## 14445                                                      think   2
## 14446                                                       time   2
## 14447                                                      white   2
## 14448                                                      whole   2
## 14449                                                    without   2
## 14450                                                     friend   2
## 14451                                                      bread   2
## 14452                                                       food   2
## 14453                                                      genos   2
## 14454                                                      paper   2
## 14455                                                      plate   2
## 14456                                                      gooey   2
## 14457                                                     cheese   2
## 14458                                                   mushroom   2
## 14459                                                   sandwich   2
## 14460                                                   business   2
## 14461                                                        day   2
## 14462                                                      first   2
## 14463                                                      genos   2
## 14464                                                       jims   2
## 14465                                                    outside   2
## 14466                                                   sandwich   2
## 14467                                                       take   2
## 14468                                                      bread   2
## 14469                                                     change   2
## 14470                                                         do   2
## 14471                                                       like   2
## 14472                                                      steak   2
## 14473                                                    compare   2
## 14474                                                       take   2
## 14475                                                      visit   2
## 14476                                                        pat   2
## 14477                                                        add   2
## 14478                                                  available   2
## 14479                                                cheesesteak   2
## 14480                                               cheesesteaks   2
## 14481                                                        get   2
## 14482                                                       good   2
## 14483                                                       menu   2
## 14484                                                   sandwich   2
## 14485                                                       town   2
## 14486                                                      build   2
## 14487                                                       neon   2
## 14488                                                      paint   2
## 14489                                                       back   2
## 14490                                                      birch   2
## 14491                                                        can   2
## 14492                                                 cheesecake   2
## 14493                                                cheesefries   2
## 14494                                                cheesestake   2
## 14495                                                      cheez   2
## 14496                                                    chinese   2
## 14497                                                      close   2
## 14498                                                    correct   2
## 14499                                                        cup   2
## 14500                                                       diet   2
## 14501                                                  different   2
## 14502                                                    exactly   2
## 14503                                                      extra   2
## 14504                                                       four   2
## 14505                                                        guy   2
## 14506                                                        hot   2
## 14507                                                  important   2
## 14508                                                instruction   2
## 14509                                                       item   2
## 14510                                                      leave   2
## 14511                                                       long   2
## 14512                                                       look   2
## 14513                                                       love   2
## 14514                                                        may   2
## 14515                                                       mean   2
## 14516                                                       menu   2
## 14517                                                      money   2
## 14518                                                       move   2
## 14519                                                      never   2
## 14520                                                       next   2
## 14521                                                         oh   2
## 14522                                                     online   2
## 14523                                                    outdoor   2
## 14524                                                       park   2
## 14525                                                     people   2
## 14526                                                     pickup   2
## 14527                                                     policy   2
## 14528                                                      press   2
## 14529                                                     pretty   2
## 14530                                                   properly   2
## 14531                                                      quick   2
## 14532                                                     refuse   2
## 14533                                                       roll   2
## 14534                                                       seat   2
## 14535                                                       send   2
## 14536                                                    service   2
## 14537                                                     simple   2
## 14538                                                      since   2
## 14539                                                       soon   2
## 14540                                                    special   2
## 14541                                                      stand   2
## 14542                                                       step   2
## 14543                                                      still   2
## 14544                                                      taker   2
## 14545                                                      taste   2
## 14546                                                      think   2
## 14547                                                traditional   2
## 14548                                                       want   2
## 14549                                                      wasnt   2
## 14550                                                       yell   2
## 14551                                                        ave   2
## 14552                                                    recital   2
## 14553                                                     across   2
## 14554                                                     cheese   2
## 14555                                                      genos   2
## 14556                                                       good   2
## 14557                                                      order   2
## 14558                                                      owner   2
## 14559                                                      steak   2
## 14560                                                     boston   2
## 14561                                                        may   2
## 14562                                                       stay   2
## 14563                                                       will   2
## 14564                                                      youll   2
## 14565                                                       meat   2
## 14566                                                        eat   2
## 14567                                                        car   2
## 14568                                                      didnt   2
## 14569                                                       food   2
## 14570                                                        get   2
## 14571                                                      joint   2
## 14572                                                       make   2
## 14573                                                       meat   2
## 14574                                                      night   2
## 14575                                                      staff   2
## 14576                                                      store   2
## 14577                                                       wall   2
## 14578                                                       crap   2
## 14579                                                        aok   2
## 14580                                                       bite   2
## 14581                                                cheesesteak   2
## 14582                                                       cool   2
## 14583                                                     flavor   2
## 14584                                                       food   2
## 14585                                                       give   2
## 14586                                                      great   2
## 14587                                                      happy   2
## 14588                                                       like   2
## 14589                                                       must   2
## 14590                                                     prefer   2
## 14591                                               presentation   2
## 14592                                                    quality   2
## 14593                                                       rate   2
## 14594                                                  recommend   2
## 14595                                                     theyre   2
## 14596                                                 underwhelm   2
## 14597                                                      whole   2
## 14598                                                      youre   2
## 14599                                                      steak   2
## 14600                                                      still   2
## 14601                                                   overrate   2
## 14602                                                      place   2
## 14603                                                    tourist   2
## 14604                                                      place   2
## 14605                                                       hype   2
## 14606                                                       just   2
## 14607                                                    nothing   2
## 14608                                                       plus   2
## 14609                                                    quality   2
## 14610                                                  tasteless   2
## 14611                                                    tourist   2
## 14612                                                       come   2
## 14613                                                 definitely   2
## 14614                                                         do   2
## 14615                                                         go   2
## 14616                                                       meat   2
## 14617                                                        pat   2
## 14618                                                      place   2
## 14619                                                     really   2
## 14620                                                   sandwich   2
## 14621                                                      worth   2
## 14622                                                    operate   2
## 14623                                                       know   2
## 14624                                                  obviously   2
## 14625                                                       pass   2
## 14626                                                      right   2
## 14627                                                     course   2
## 14628                                                       know   2
## 14629                                                     pretty   2
## 14630                                                         go   2
## 14631                                                       good   2
## 14632                                                        job   2
## 14633                                                     amount   2
## 14634                                                    wrapper   2
## 14635                                                      store   2
## 14636                                                cheesesteak   2
## 14637                                                      steak   2
## 14638                                                       hard   2
## 14639                                                      speak   2
## 14640                                                     across   2
## 14641                                                   adjacent   2
## 14642                                                       also   2
## 14643                                                   anywhere   2
## 14644                                                      awful   2
## 14645                                                       bite   2
## 14646                                                     decide   2
## 14647                                                  difficult   2
## 14648                                                       easy   2
## 14649                                                       good   2
## 14650                                                 horrendous   2
## 14651                                                     indoor   2
## 14652                                                       isnt   2
## 14653                                                     nearby   2
## 14654                                                        one   2
## 14655                                                      place   2
## 14656                                                  situation   2
## 14657                                                      space   2
## 14658                                                      bread   2
## 14659                                                       come   2
## 14660                                                       like   2
## 14661                                                       line   2
## 14662                                                     little   2
## 14663                                                       meal   2
## 14664                                                        one   2
## 14665                                               intersection   2
## 14666                                                       real   2
## 14667                                                        one   2
## 14668                                                      place   2
## 14669                                                        ave   2
## 14670                                                     avenue   2
## 14671                                                         th   2
## 14672                                                 afterwards   2
## 14673                                                       aint   2
## 14674                                                   american   2
## 14675                                                 apparently   2
## 14676                                                      aside   2
## 14677                                                       away   2
## 14678                                                       beef   2
## 14679                                                        bet   2
## 14680                                                         bf   2
## 14681                                                      buddy   2
## 14682                                                       busy   2
## 14683                                                       cant   2
## 14684                                                      check   2
## 14685                                                      clean   2
## 14686                                                    clearly   2
## 14687                                                      cross   2
## 14688                                                      crowd   2
## 14689                                                      crown   2
## 14690                                               dalessandros   2
## 14691                                                      dimly   2
## 14692                                                      dirty   2
## 14693                                                        dry   2
## 14694                                                        due   2
## 14695                                                       easy   2
## 14696                                                        etc   2
## 14697                                                      exact   2
## 14698                                                     follow   2
## 14699                                                     friend   2
## 14700                                                       full   2
## 14701                                                     greasy   2
## 14702                                                       hate   2
## 14703                                                    history   2
## 14704                                                        hot   2
## 14705                                                    husband   2
## 14706                                                     indeed   2
## 14707                                                        ive   2
## 14708                                                      judge   2
## 14709                                                       keep   2
## 14710                                                       lack   2
## 14711                                                      leave   2
## 14712                                                       life   2
## 14713                                                        lol   2
## 14714                                                       love   2
## 14715                                                 marginally   2
## 14716                                                     mostly   2
## 14717                                                       move   2
## 14718                                                       must   2
## 14719                                                    neither   2
## 14720                                                      never   2
## 14721                                                        opt   2
## 14722                                                   original   2
## 14723                                                       pack   2
## 14724                                                     patron   2
## 14725                                                   personal   2
## 14726                                                 personally   2
## 14727                                                   previous   2
## 14728                                                        pro   2
## 14729                                                       real   2
## 14730                                                      rival   2
## 14731                                                      score   2
## 14732                                                    several   2
## 14733                                                     simply   2
## 14734                                                      slice   2
## 14735                                                       slow   2
## 14736                                                      small   2
## 14737                                                       soda   2
## 14738                                                      south   2
## 14739                                                      speak   2
## 14740                                                       step   2
## 14741                                                     steves   2
## 14742                                                       stop   2
## 14743                                                        sub   2
## 14744                                                       suck   2
## 14745                                                    suppose   2
## 14746                                                      today   2
## 14747                                                   touristy   2
## 14748                                                      upper   2
## 14749                                                    usually   2
## 14750                                                    venture   2
## 14751                                                      whats   2
## 14752                                                      whizz   2
## 14753                                                     within   2
## 14754                                                    wrapper   2
## 14755                                                       yelp   2
## 14756                                                      youll   2
## 14757                                                      youve   2
## 14758                                                    outside   2
## 14759                                                      table   2
## 14760                                                      order   2
## 14761                                                      speak   2
## 14762                                              establishment   2
## 14763                                                      taste   2
## 14764                                                     almost   2
## 14765                                                     around   2
## 14766                                                       bill   2
## 14767                                                   electric   2
## 14768                                                      extra   2
## 14769                                                       food   2
## 14770                                                        fry   2
## 14771                                                       hand   2
## 14772                                                       move   2
## 14773                                                      never   2
## 14774                                                        pat   2
## 14775                                                 separately   2
## 14776                                                    service   2
## 14777                                                        top   2
## 14778                                                       wait   2
## 14779                                                        wiz   2
## 14780                                                       hour   2
## 14781                                                       time   2
## 14782                                                   souvenir   2
## 14783                                                       away   2
## 14784                                                      build   2
## 14785                                                       cash   2
## 14786                                                     choose   2
## 14787                                                 definitely   2
## 14788                                                    deserve   2
## 14789                                                      didnt   2
## 14790                                                      drive   2
## 14791                                                       even   2
## 14792                                                       ever   2
## 14793                                                     expect   2
## 14794                                                  extremely   2
## 14795                                                   favorite   2
## 14796                                                       give   2
## 14797                                                    glorify   2
## 14798                                                       good   2
## 14799                                                      group   2
## 14800                                                        ive   2
## 14801                                                      learn   2
## 14802                                                       look   2
## 14803                                                      money   2
## 14804                                                       move   2
## 14805                                                       must   2
## 14806                                                       need   2
## 14807                                                      never   2
## 14808                                                        pay   2
## 14809                                                       post   2
## 14810                                                     pretty   2
## 14811                                                        put   2
## 14812                                                       rate   2
## 14813                                                  recommend   2
## 14814                                                       side   2
## 14815                                                      skill   2
## 14816                                                      smile   2
## 14817                                                      stand   2
## 14818                                                      throw   2
## 14819                                                        try   2
## 14820                                                         us   2
## 14821                                                       walk   2
## 14822                                                      whove   2
## 14823                                                       wont   2
## 14824                                                      youre   2
## 14825                                                       also   2
## 14826                                                      amaze   2
## 14827                                                      baggy   2
## 14828                                                      bread   2
## 14829                                                       come   2
## 14830                                                  delicious   2
## 14831                                                      extra   2
## 14832                                                        fry   2
## 14833                                                        get   2
## 14834                                                         go   2
## 14835                                                       just   2
## 14836                                                       love   2
## 14837                                                       make   2
## 14838                                                       meat   2
## 14839                                                       mine   2
## 14840                                                       much   2
## 14841                                                    nothing   2
## 14842                                                      offer   2
## 14843                                                    outside   2
## 14844                                                     pickle   2
## 14845                                                        sub   2
## 14846                                                       take   2
## 14847                                                      tasty   2
## 14848                                                      throw   2
## 14849                                                        top   2
## 14850                                                       whiz   2
## 14851                                                      whole   2
## 14852                                                       coke   2
## 14853                                                         do   2
## 14854                                                       sign   2
## 14855                                                      steak   2
## 14856                                                      blend   2
## 14857                                                 compliment   2
## 14858                                                     little   2
## 14859                                                      sense   2
## 14860                                                      steak   2
## 14861                                                       will   2
## 14862                                                       fine   2
## 14863                                                       meat   2
## 14864                                                    sautéed   2
## 14865                                                      genos   2
## 14866                                                        get   2
## 14867                                                       good   2
## 14868                                                         do   2
## 14869                                                      front   2
## 14870                                                       good   2
## 14871                                                        say   2
## 14872                                                       take   2
## 14873                                                      visit   2
## 14874                                                       want   2
## 14875                                                      didnt   2
## 14876                                                        fan   2
## 14877                                                       love   2
## 14878                                                       also   2
## 14879                                                     always   2
## 14880                                                       cast   2
## 14881                                                    classic   2
## 14882                                                    culture   2
## 14883                                                     decide   2
## 14884                                                 definitely   2
## 14885                                              establishment   2
## 14886                                                      every   2
## 14887                                                 experience   2
## 14888                                                       find   2
## 14889                                                       geno   2
## 14890                                                      great   2
## 14891                                                       hear   2
## 14892                                                   honestly   2
## 14893                                                       icon   2
## 14894                                                         im   2
## 14895                                                       just   2
## 14896                                                       live   2
## 14897                                                       love   2
## 14898                                                    nothing   2
## 14899                                                      offer   2
## 14900                                                        old   2
## 14901                                                        pat   2
## 14902                                                     philly   2
## 14903                                                      place   2
## 14904                                                       pull   2
## 14905                                                   resident   2
## 14906                                                   sandwich   2
## 14907                                                       tell   2
## 14908                                                        way   2
## 14909                                                       know   2
## 14910                                                         do   2
## 14911                                                       know   2
## 14912                                                     across   2
## 14913                                                      along   2
## 14914                                                      amaze   2
## 14915                                                     around   2
## 14916                                                   attitude   2
## 14917                                                  authentic   2
## 14918                                                         bc   2
## 14919                                                       bear   2
## 14920                                                         bf   2
## 14921                                                      bread   2
## 14922                                                     bucket   2
## 14923                                                       cash   2
## 14924                                                      charm   2
## 14925                                                 cheesecake   2
## 14926                                               cheesesteake   2
## 14927                                                      close   2
## 14928                                                 conference   2
## 14929                                                    couldnt   2
## 14930                                                      crave   2
## 14931                                                    culture   2
## 14932                                                   customer   2
## 14933                                                        dad   2
## 14934                                                     debate   2
## 14935                                                  delicious   2
## 14936                                                      didnt   2
## 14937                                                        due   2
## 14938                                              establishment   2
## 14939                                                     expect   2
## 14940                                                     family   2
## 14941                                                    finally   2
## 14942                                                        fun   2
## 14943                                                      gotta   2
## 14944                                                      great   2
## 14945                                                       hand   2
## 14946                                                       head   2
## 14947                                                    history   2
## 14948                                                        hit   2
## 14949                                                    holiday   2
## 14950                                                   honestly   2
## 14951                                                        hot   2
## 14952                                                       hour   2
## 14953                                                    husband   2
## 14954                                                       icon   2
## 14955                                                       jims   2
## 14956                                                      joint   2
## 14957                                                       life   2
## 14958                                                     little   2
## 14959                                                       live   2
## 14960                                                     locate   2
## 14961                                                   location   2
## 14962                                                      lunch   2
## 14963                                                       meet   2
## 14964                                                   memorial   2
## 14965                                                    mission   2
## 14966                                                       move   2
## 14967                                                  naturally   2
## 14968                                                        now   2
## 14969                                                       numb   2
## 14970                                                       okay   2
## 14971                                                    opinion   2
## 14972                                                      pizza   2
## 14973                                                        pop   2
## 14974                                                     pretty   2
## 14975                                                   probably   2
## 14976                                                    promise   2
## 14977                                                      proud   2
## 14978                                                      quick   2
## 14979                                                      quite   2
## 14980                                                       read   2
## 14981                                                       real   2
## 14982                                                     really   2
## 14983                                                    regular   2
## 14984                                                   research   2
## 14985                                                     review   2
## 14986                                                      right   2
## 14987                                                        run   2
## 14988                                                       skip   2
## 14989                                                     sonnys   2
## 14990                                                      start   2
## 14991                                                      style   2
## 14992                                                    suggest   2
## 14993                                                     summer   2
## 14994                                                    suppose   2
## 14995                                                       sure   2
## 14996                                                      tasty   2
## 14997                                                     though   2
## 14998                                                      treat   2
## 14999                                                   vacation   2
## 15000                                                    venture   2
## 15001                                                       week   2
## 15002                                                       whiz   2
## 15003                                                      whole   2
## 15004                                                       wish   2
## 15005                                                        wit   2
## 15006                                                      worth   2
## 15007                                                        yes   2
## 15008                                                  yesterday   2
## 15009                                                       youd   2
## 15010                                                cheesesteak   2
## 15011                                                       fine   2
## 15012                                                cheesesteak   2
## 15013                                                     celebs   2
## 15014                                                     famous   2
## 15015                                                         op   2
## 15016                                                       take   2
## 15017                                                  celebrity   2
## 15018                                                  celebrity   2
## 15019                                                cheesesteak   2
## 15020                                               cheesesteaks   2
## 15021                                                     friend   2
## 15022                                                       good   2
## 15023                                                      order   2
## 15024                                                      place   2
## 15025                                                   sandwich   2
## 15026                                                       side   2
## 15027                                                      eater   2
## 15028                                                      bench   2
## 15029                                                     celebs   2
## 15030                                                cheesesteak   2
## 15031                                                      front   2
## 15032                                                      owner   2
## 15033                                                     police   2
## 15034                                                       post   2
## 15035                                                       take   2
## 15036                                                        can   2
## 15037                                                     cheese   2
## 15038                                                        fry   2
## 15039                                                    history   2
## 15040                                                     mildly   2
## 15041                                                      onion   2
## 15042                                                        pat   2
## 15043                                                        wiz   2
## 15044                                                    already   2
## 15045                                                      right   2
## 15046                                                        top   2
## 15047                                                       poor   2
## 15048                                                       sign   2
## 15049                                                       stop   2
## 15050                                                 absolutely   2
## 15051                                                     accept   2
## 15052                                                     almost   2
## 15053                                                      along   2
## 15054                                                    alright   2
## 15055                                                    america   2
## 15056                                                       base   2
## 15057                                                    besides   2
## 15058                                                        big   2
## 15059                                                       bite   2
## 15060                                                       blow   2
## 15061                                                      bring   2
## 15062                                                      build   2
## 15063                                                      churn   2
## 15064                                                    clearly   2
## 15065                                              commercialize   2
## 15066                                                   consider   2
## 15067                                                       cool   2
## 15068                                                     corner   2
## 15069                                                    couldnt   2
## 15070                                                     couple   2
## 15071                                                      crowd   2
## 15072                                                        cut   2
## 15073                                                        day   2
## 15074                                                    deserve   2
## 15075                                                       dice   2
## 15076                                                      drive   2
## 15077                                                        end   2
## 15078                                                 everything   2
## 15079                                                    exactly   2
## 15080                                                  extremely   2
## 15081                                                       fact   2
## 15082                                                   favorite   2
## 15083                                                    feature   2
## 15084                                                       feud   2
## 15085                                                    florida   2
## 15086                                                       folk   2
## 15087                                                      freak   2
## 15088                                                       full   2
## 15089                                                       geno   2
## 15090                                                      gotta   2
## 15091                                                       hand   2
## 15092                                                       hard   2
## 15093                                                      heart   2
## 15094                                                        hey   2
## 15095                                                 historical   2
## 15096                                                        hit   2
## 15097                                                        ill   2
## 15098                                                    include   2
## 15099                                                       jims   2
## 15100                                                      leave   2
## 15101                                                       less   2
## 15102                                                  literally   2
## 15103                                                      local   2
## 15104                                                     locate   2
## 15105                                                        lot   2
## 15106                                                       loud   2
## 15107                                                     matter   2
## 15108                                                        may   2
## 15109                                                     middle   2
## 15110                                                       miss   2
## 15111                                                       name   2
## 15112                                                    neither   2
## 15113                                                       nice   2
## 15114                                                         oh   2
## 15115                                                  otherwise   2
## 15116                                                     please   2
## 15117                                                    prepare   2
## 15118                                                      quite   2
## 15119                                                       real   2
## 15120                                                  recommend   2
## 15121                                                     remind   2
## 15122                                                  represent   2
## 15123                                                       roll   2
## 15124                                                       ruin   2
## 15125                                                       rush   2
## 15126                                                    satisfy   2
## 15127                                                  seriously   2
## 15128                                                     server   2
## 15129                                                       shit   2
## 15130                                                       sign   2
## 15131                                                   slightly   2
## 15132                                                  something   2
## 15133                                                   spotless   2
## 15134                                                      stand   2
## 15135                                                       stay   2
## 15136                                                     street   2
## 15137                                                    support   2
## 15138                                                       tend   2
## 15139                                                     theres   2
## 15140                                                     theyre   2
## 15141                                                      three   2
## 15142                                                       time   2
## 15143                                                      total   2
## 15144                                                   touristy   2
## 15145                                                       town   2
## 15146                                                       turn   2
## 15147                                                       vote   2
## 15148                                                       wait   2
## 15149                                                      whole   2
## 15150                                                       wish   2
## 15151                                                    without   2
## 15152                                                       wont   2
## 15153                                                      world   2
## 15154                                                       year   2
## 15155                                                        yes   2
## 15156                                                      bread   2
## 15157                                                        fry   2
## 15158                                                   ignorant   2
## 15159                                                      nasty   2
## 15160                                                         ol   2
## 15161                                                       spin   2
## 15162                                                       whiz   2
## 15163                                                accordingly   2
## 15164                                                       come   2
## 15165                                                        eat   2
## 15166                                                         go   2
## 15167                                                     cheese   2
## 15168                                                      taste   2
## 15169                                                     around   2
## 15170                                                     person   2
## 15171                                                       role   2
## 15172                                                cheesesteak   2
## 15173                                                      favor   2
## 15174                                                       give   2
## 15175                                                        guy   2
## 15176                                                        ive   2
## 15177                                                       keep   2
## 15178                                                       note   2
## 15179                                                      thank   2
## 15180                                                       meat   2
## 15181                                                      onion   2
## 15182                                                       seat   2
## 15183                                                       time   2
## 15184                                                        can   2
## 15185                                                cheesesteak   2
## 15186                                                       good   2
## 15187                                                     little   2
## 15188                                                      place   2
## 15189                                                      steak   2
## 15190                                                  afternoon   2
## 15191                                                        get   2
## 15192                                                       make   2
## 15193                                                        now   2
## 15194                                                   saturday   2
## 15195                                                  wednesday   2
## 15196                                                  direction   2
## 15197                                                     finger   2
## 15198                                                         go   2
## 15199                                                       sign   2
## 15200                                                       stop   2
## 15201                                                       walk   2
## 15202                                                       whiz   2
## 15203                                                      genos   2
## 15204                                                      badge   2
## 15205                                                firefighter   2
## 15206                                                   military   2
## 15207                                                 propaganda   2
## 15208                                                      aside   2
## 15209                                               cheesesteaks   2
## 15210                                                       just   2
## 15211                                                     belief   2
## 15212                                                    message   2
## 15213                                                       rant   2
## 15214                                                       sign   2
## 15215                                                        guy   2
## 15216                                                     cheese   2
## 15217                                                       spot   2
## 15218                                                      steak   2
## 15219                                                        way   2
## 15220                                                     cheese   2
## 15221                                                       jims   2
## 15222                                                       okay   2
## 15223                                                        fry   2
## 15224                                                   generous   2
## 15225                                                      genos   2
## 15226                                                      small   2
## 15227                                                        bad   2
## 15228                                                cheesesteak   2
## 15229                                                        bad   2
## 15230                                                 everywhere   2
## 15231                                                        pic   2
## 15232                                                    picture   2
## 15233                                                      place   2
## 15234                                                   customer   2
## 15235                                                       shut   2
## 15236                                                      order   2
## 15237                                                       cook   2
## 15238                                                       time   2
## 15239                                                       meat   2
## 15240                                                        fry   2
## 15241                                                         go   2
## 15242                                                      onion   2
## 15243                                                      order   2
## 15244                                                      place   2
## 15245                                                       tony   2
## 15246                                                       bill   2
## 15247                                                         go   2
## 15248                                                       good   2
## 15249                                                       know   2
## 15250                                                      major   2
## 15251                                                   sandwich   2
## 15252                                                       blah   2
## 15253                                                      close   2
## 15254                                                 consistent   2
## 15255                                                     greasy   2
## 15256                                                     hungry   2
## 15257                                                 impressive   2
## 15258                                                      light   2
## 15259                                                   mediocre   2
## 15260                                                       nice   2
## 15261                                                  offensive   2
## 15262                                                 offputting   2
## 15263                                                      plain   2
## 15264                                                     racist   2
## 15265                                                     simple   2
## 15266                                                      small   2
## 15267                                                      tough   2
## 15268                                               unremarkable   2
## 15269                                                   actually   2
## 15270                                                       also   2
## 15271                                                       buck   2
## 15272                                                     charge   2
## 15273                                                     cheese   2
## 15274                                                cheesesteak   2
## 15275                                                 comparable   2
## 15276                                                      didnt   2
## 15277                                                     dollar   2
## 15278                                                         im   2
## 15279                                                   increase   2
## 15280                                                       know   2
## 15281                                                   mediocre   2
## 15282                                                       okay   2
## 15283                                                    quality   2
## 15284                                                    reflect   2
## 15285                                                       rude   2
## 15286                                                       seem   2
## 15287                                                      staff   2
## 15288                                                        tax   2
## 15289                                                      twice   2
## 15290                                                         do   2
## 15291                                                        get   2
## 15292                                                      value   2
## 15293                                                       food   2
## 15294                                                     philly   2
## 15295                                                       time   2
## 15296                                                       trip   2
## 15297                                                    america   2
## 15298                                                      bread   2
## 15299                                                       meat   2
## 15300                                                        tip   2
## 15301                                                       cook   2
## 15302                                                     enough   2
## 15303                                                   favorite   2
## 15304                                                      first   2
## 15305                                                        get   2
## 15306                                                       help   2
## 15307                                                         id   2
## 15308                                                     little   2
## 15309                                                       love   2
## 15310                                                     prefer   2
## 15311                                                        sit   2
## 15312                                                    wouldve   2
## 15313                                                        pat   2
## 15314                                                    explain   2
## 15315                                                        can   2
## 15316                                                       just   2
## 15317                                                       meat   2
## 15318                                                      steak   2
## 15319                                                       good   2
## 15320                                                         do   2
## 15321                                                        far   2
## 15322                                                       live   2
## 15323                                                       will   2
## 15324                                                          h   2
## 15325                                                     cheese   2
## 15326                                                       cook   2
## 15327                                                        get   2
## 15328                                                      order   2
## 15329                                                      bread   2
## 15330                                                   moisture   2
## 15331                                                    receipt   2
## 15332                                                        wit   2
## 15333                                                        add   2
## 15334                                                     almost   2
## 15335                                                    another   2
## 15336                                                     barely   2
## 15337                                                      bread   2
## 15338                                               cheesesteaks   2
## 15339                                                      cheez   2
## 15340                                                       feel   2
## 15341                                                        hot   2
## 15342                                                    husband   2
## 15343                                                     lastly   2
## 15344                                                       like   2
## 15345                                                       meat   2
## 15346                                                       okay   2
## 15347                                              peppersonions   2
## 15348                                                     really   2
## 15349                                                      since   2
## 15350                                                       slap   2
## 15351                                                       tell   2
## 15352                                                      thats   2
## 15353                                                        wit   2
## 15354                                                   restroom   2
## 15355                                             transportation   2
## 15356                                                      steak   2
## 15357                                                        pat   2
## 15358                                                   anything   2
## 15359                                                       cold   2
## 15360                                                       nice   2
## 15361                                                      order   2
## 15362                                                        pat   2
## 15363                                                       sign   2
## 15364                                                       star   2
## 15365                                                      stuff   2
## 15366                                                        hot   2
## 15367                                                      money   2
## 15368                                                     amount   2
## 15369                                                 definitely   2
## 15370                                                         go   2
## 15371                                                       isnt   2
## 15372                                                        low   2
## 15373                                                      place   2
## 15374                                                   quantity   2
## 15375                                                       roll   2
## 15376                                                        say   2
## 15377                                                    service   2
## 15378                                                       bite   2
## 15379                                                       come   2
## 15380                                                        day   2
## 15381                                                  efficient   2
## 15382                                                       food   2
## 15383                                                        get   2
## 15384                                                       make   2
## 15385                                                       meat   2
## 15386                                                        pit   2
## 15387                                                     simple   2
## 15388                                                        wiz   2
## 15389                                                       give   2
## 15390                                                       know   2
## 15391                                                    someone   2
## 15392                                                      steak   2
## 15393                                                     theres   2
## 15394                                                       fast   2
## 15395                                                       know   2
## 15396                                                    satisfy   2
## 15397                                                       spin   2
## 15398                                                      tasty   2
## 15399                                                       back   2
## 15400                                                      issue   2
## 15401                                                       just   2
## 15402                                                      ahole   2
## 15403                                                       also   2
## 15404                                                   assholes   2
## 15405                                                       dude   2
## 15406                                                         go   2
## 15407                                                       hate   2
## 15408                                                   ignorant   2
## 15409                                                       just   2
## 15410                                                  offensive   2
## 15411                                                      owner   2
## 15412                                                        pat   2
## 15413                                                     people   2
## 15414                                                      piece   2
## 15415                                                  political   2
## 15416                                                       rude   2
## 15417                                                    signage   2
## 15418                                                  typically   2
## 15419                                                  undertone   2
## 15420                                                       year   2
## 15421                                                        rah   2
## 15422                                                      march   2
## 15423                                                expectation   2
## 15424                                                      price   2
## 15425                                                cheesesteak   2
## 15426                                                        pat   2
## 15427                                                        ass   2
## 15428                                                       meat   2
## 15429                                                        bad   2
## 15430                                                        can   2
## 15431                                                cheesesteak   2
## 15432                                                     flavor   2
## 15433                                                        ive   2
## 15434                                                       must   2
## 15435                                                        one   2
## 15436                                                        pat   2
## 15437                                                     pepper   2
## 15438                                                      worth   2
## 15439                                                       good   2
## 15440                                                   sandwich   2
## 15441                                                     starve   2
## 15442                                                        way   2
## 15443                                                     review   2
## 15444                                                       even   2
## 15445                                                       meat   2
## 15446                                                       bite   2
## 15447                                                     follow   2
## 15448                                                       menu   2
## 15449                                                   negative   2
## 15450                                                      speak   2
## 15451                                                       cash   2
## 15452                                                       make   2
## 15453                                                        pay   2
## 15454                                                        sit   2
## 15455                                                       time   2
## 15456                                                     within   2
## 15457                                                       fast   2
## 15458                                                        let   2
## 15459                                                       meat   2
## 15460                                                        one   2
## 15461                                               philadelphia   2
## 15462                                                       thin   2
## 15463                                                     winner   2
## 15464                                                   actually   2
## 15465                                                       miss   2
## 15466                                                     people   2
## 15467                                                   probably   2
## 15468                                                     really   2
## 15469                                                        add   2
## 15470                                                      annoy   2
## 15471                                                 appreciate   2
## 15472                                                       brag   2
## 15473                                                       busy   2
## 15474                                                       care   2
## 15475                                                     decide   2
## 15476                                                     excite   2
## 15477                                                        fan   2
## 15478                                                      funny   2
## 15479                                                      genos   2
## 15480                                                       give   2
## 15481                                                      gross   2
## 15482                                                        hit   2
## 15483                                                       hype   2
## 15484                                                     matter   2
## 15485                                                        one   2
## 15486                                                        put   2
## 15487                                                    quickly   2
## 15488                                                       sick   2
## 15489                                                      small   2
## 15490                                                       soft   2
## 15491                                                      style   2
## 15492                                                       thin   2
## 15493                                                    tourist   2
## 15494                                                       turn   2
## 15495                                                 understand   2
## 15496                                                       work   2
## 15497                                                        can   2
## 15498                                                 completely   2
## 15499                                                     decide   2
## 15500                                                         do   2
## 15501                                                        eat   2
## 15502                                                       feel   2
## 15503                                                       find   2
## 15504                                                       just   2
## 15505                                                       long   2
## 15506                                                       meat   2
## 15507                                                       want   2
## 15508                                                cheesesteak   2
## 15509                                                       food   2
## 15510                                                 experience   2
## 15511                                                     philly   2
## 15512                                                      genos   2
## 15513                                                        use   2
## 15514                                                      bring   2
## 15515                                                     cheese   2
## 15516                                                     either   2
## 15517                                                       good   2
## 15518                                                       head   2
## 15519                                                   location   2
## 15520                                                       look   2
## 15521                                                        one   2
## 15522                                                     people   2
## 15523                                                 restaurant   2
## 15524                                                    someone   2
## 15525                                                        wiz   2
## 15526                                                      youre   2
## 15527                                                         go   2
## 15528                                                      local   2
## 15529                                                       skip   2
## 15530                                                        hot   2
## 15531                                               cheesesteaks   2
## 15532                                                       give   2
## 15533                                                    provide   2
## 15534                                                        say   2
## 15535                                               cheesesteaks   2
## 15536                                                         go   2
## 15537                                                       girl   2
## 15538                                                       look   2
## 15539                                                       rude   2
## 15540                                                        say   2
## 15541                                                        eat   2
## 15542                                                        get   2
## 15543                                                       give   2
## 15544                                                       late   2
## 15545                                                   american   2
## 15546                                               cheesesteaks   2
## 15547                                                     philly   2
## 15548                                                       stop   2
## 15549                                                      large   2
## 15550                                                      agree   2
## 15551                                                        sub   2
## 15552                                                   sandwich   2
## 15553                                                     cheese   2
## 15554                                                  correctly   2
## 15555                                                      first   2
## 15556                                                       good   2
## 15557                                                      taste   2
## 15558                                                     philly   2
## 15559                                                      youre   2
## 15560                                                      onion   2
## 15561                                                     racist   2
## 15562                                               cheesesteaks   2
## 15563                                                       chew   2
## 15564                                                 experience   2
## 15565                                                      order   2
## 15566                                                         go   2
## 15567                                                       good   2
## 15568                                                       life   2
## 15569                                                      peace   2
## 15570                                                     review   2
## 15571                                                       stop   2
## 15572                                                      world   2
## 15573                                                       also   2
## 15574                                                     always   2
## 15575                                                        can   2
## 15576                                                cheesesteak   2
## 15577                                                       food   2
## 15578                                                       good   2
## 15579                                                       hype   2
## 15580                                                  otherwise   2
## 15581                                                      place   2
## 15582                                                       rate   2
## 15583                                                        say   2
## 15584                                                      south   2
## 15585                                                         us   2
## 15586                                                      visit   2
## 15587                                                   customer   2
## 15588                                                      order   2
## 15589                                               philadelphia   2
## 15590                                                      place   2
## 15591                                                        can   2
## 15592                                                 comparison   2
## 15593                                                     decide   2
## 15594                                                      didnt   2
## 15595                                                    english   2
## 15596                                                     figure   2
## 15597                                                       find   2
## 15598                                                     friend   2
## 15599                                                        get   2
## 15600                                                   honestly   2
## 15601                                                        ill   2
## 15602                                                        let   2
## 15603                                                      local   2
## 15604                                                       look   2
## 15605                                                       make   2
## 15606                                                       nice   2
## 15607                                                     online   2
## 15608                                                      order   2
## 15609                                                  seriously   2
## 15610                                                       sign   2
## 15611                                                     simply   2
## 15612                                                      state   2
## 15613                                                    tourist   2
## 15614                                                       walk   2
## 15615                                                      waste   2
## 15616                                                     island   2
## 15617                                                         do   2
## 15618                                                       meat   2
## 15619                                                      bread   2
## 15620                                                  coattails   2
## 15621                                                       home   2
## 15622                                                        nyc   2
## 15623                                                     philly   2
## 15624                                                        try   2
## 15625                                                       fast   2
## 15626                                                       also   2
## 15627                                                        bat   2
## 15628                                                     behind   2
## 15629                                                        can   2
## 15630                                                     cheese   2
## 15631                                                       feel   2
## 15632                                                      first   2
## 15633                                                      grill   2
## 15634                                                        guy   2
## 15635                                                       haha   2
## 15636                                                         im   2
## 15637                                                      lingo   2
## 15638                                                       make   2
## 15639                                                     middle   2
## 15640                                                      money   2
## 15641                                                    outside   2
## 15642                                                        pay   2
## 15643                                               philadelphia   2
## 15644                                                       read   2
## 15645                                                     reason   2
## 15646                                                       side   2
## 15647                                                       stop   2
## 15648                                                     street   2
## 15649                                                       time   2
## 15650                                                      wrong   2
## 15651                                                       cafe   2
## 15652                                                     please   2
## 15653                                                cheesesteak   2
## 15654                                                        two   2
## 15655                                                      genos   2
## 15656                                                     pepper   2
## 15657                                                      solid   2
## 15658                                                        add   2
## 15659                                                       also   2
## 15660                                                   anything   2
## 15661                                                      arent   2
## 15662                                                        ask   2
## 15663                                                        bad   2
## 15664                                                      bland   2
## 15665                                                      cheez   2
## 15666                                                     crusty   2
## 15667                                                     decent   2
## 15668                                                  delicious   2
## 15669                                                        die   2
## 15670                                                         do   2
## 15671                                                       even   2
## 15672                                                       fill   2
## 15673                                                      fresh   2
## 15674                                                       give   2
## 15675                                                        lot   2
## 15676                                                       make   2
## 15677                                                       okay   2
## 15678                                                       pack   2
## 15679                                                      place   2
## 15680                                                     rather   2
## 15681                                                       seem   2
## 15682                                                      super   2
## 15683                                                       time   2
## 15684                                                        use   2
## 15685                                                      whole   2
## 15686                                                        wit   2
## 15687                                                      roman   2
## 15688                                                        pat   2
## 15689                                                       star   2
## 15690                                                       meat   2
## 15691                                                      bread   2
## 15692                                                        bun   2
## 15693                                                     cheese   2
## 15694                                                       spin   2
## 15695                                                   attitude   2
## 15696                                                        can   2
## 15697                                                cheesesteak   2
## 15698                                                      didnt   2
## 15699                                                       even   2
## 15700                                                   everyone   2
## 15701                                                      guess   2
## 15702                                                        ive   2
## 15703                                                       know   2
## 15704                                                       mean   2
## 15705                                                  obnoxious   2
## 15706                                                      order   2
## 15707                                                        pat   2
## 15708                                                     person   2
## 15709                                                      place   2
## 15710                                                      price   2
## 15711                                                     really   2
## 15712                                                       rush   2
## 15713                                                      short   2
## 15714                                                       sign   2
## 15715                                                  subhumans   2
## 15716                                                  unhelpful   2
## 15717                                                         us   2
## 15718                                                     worker   2
## 15719                                                       yell   2
## 15720                                                      staff   2
## 15721                                                      build   2
## 15722                                                       meat   2
## 15723                                                   sandwich   2
## 15724                                                      steak   2
## 15725                                                      taste   2
## 15726                                                      order   2
## 15727                                                        car   2
## 15728                                                         do   2
## 15729                                                         im   2
## 15730                                                        pat   2
## 15731                                                     philly   2
## 15732                                                   register   2
## 15733                                                 reputation   2
## 15734                                                      rocky   2
## 15735                                                       step   2
## 15736                                                     cheese   2
## 15737                                                      still   2
## 15738                                                       last   2
## 15739                                                       line   2
## 15740                                                      steak   2
## 15741                                                         go   2
## 15742                                                       good   2
## 15743                                                cheesesteak   2
## 15744                                                     excuse   2
## 15745                                                      genos   2
## 15746                                                     report   2
## 15747                                                      thing   2
## 15748                                                 disappoint   2
## 15749                                                      genos   2
## 15750                                                      place   2
## 15751                                                       also   2
## 15752                                                      bread   2
## 15753                                                        fry   2
## 15754                                               cheesesteaks   2
## 15755                                                      genos   2
## 15756                                                       good   2
## 15757                                                      genos   2
## 15758                                                        get   2
## 15759                                                      taste   2
## 15760                                                 absolutely   2
## 15761                                                     almost   2
## 15762                                                   american   2
## 15763                                                   attitude   2
## 15764                                                      avoid   2
## 15765                                                      awful   2
## 15766                                                        bag   2
## 15767                                                      basic   2
## 15768                                                      bring   2
## 15769                                                 california   2
## 15770                                                       call   2
## 15771                                                      cause   2
## 15772                                                     choose   2
## 15773                                                       chop   2
## 15774                                                    compare   2
## 15775                                                   complete   2
## 15776                                                 completely   2
## 15777                                                     course   2
## 15778                                                      cross   2
## 15779                                                        cut   2
## 15780                                                     decide   2
## 15781                                                  different   2
## 15782                                             disappointment   2
## 15783                                                    disgust   2
## 15784                                                        dry   2
## 15785                                                        end   2
## 15786                                                  enjoyable   2
## 15787                                              establishment   2
## 15788                                                 everything   2
## 15789                                                     expect   2
## 15790                                                 experience   2
## 15791                                                       fair   2
## 15792                                                  flavorful   2
## 15793                                                 flavorless   2
## 15794                                                       full   2
## 15795                                                    greatly   2
## 15796                                                      group   2
## 15797                                                        guy   2
## 15798                                                        hit   2
## 15799                                                        hot   2
## 15800                                                       hype   2
## 15801                                                         id   2
## 15802                                                     inside   2
## 15803                                                   interest   2
## 15804                                                       isnt   2
## 15805                                                       jims   2
## 15806                                                       keep   2
## 15807                                                        kid   2
## 15808                                                        let   2
## 15809                                                       life   2
## 15810                                                  literally   2
## 15811                                                      maker   2
## 15812                                                        man   2
## 15813                                                      maybe   2
## 15814                                                       mean   2
## 15815                                                   mediocre   2
## 15816                                                       meet   2
## 15817                                                       need   2
## 15818                                                       next   2
## 15819                                                       none   2
## 15820                                                    nothing   2
## 15821                                                      other   2
## 15822                                                 overpriced   2
## 15823                                                  perfectly   2
## 15824                                                      photo   2
## 15825                                                     prefer   2
## 15826                                                    premade   2
## 15827                                                        put   2
## 15828                                                  recommend   2
## 15829                                                 restaurant   2
## 15830                                                    satisfy   2
## 15831                                                     season   2
## 15832                                                    service   2
## 15833                                                    similar   2
## 15834                                                        sit   2
## 15835                                                      soggy   2
## 15836                                                       sooo   2
## 15837                                                       spot   2
## 15838                                                      stand   2
## 15839                                                     starve   2
## 15840                                                      steak   2
## 15841                                                      style   2
## 15842                                                       suck   2
## 15843                                                      super   2
## 15844                                                      swear   2
## 15845                                                       tell   2
## 15846                                                   terrible   2
## 15847                                                     theres   2
## 15848                                                      three   2
## 15849                                                      throw   2
## 15850                                                       tiny   2
## 15851                                                    totally   2
## 15852                                                      tough   2
## 15853                                                traditional   2
## 15854                                                      trash   2
## 15855                                                     unwrap   2
## 15856                                                        use   2
## 15857                                                    verdict   2
## 15858                                                         vs   2
## 15859                                                        wet   2
## 15860                                                     within   2
## 15861                                                     wonder   2
## 15862                                                       wont   2
## 15863                                                       wrap   2
## 15864                                                       year   2
## 15865                                                      yummy   2
## 15866                                                      genos   2
## 15867                                                      gross   2
## 15868                                                        ive   2
## 15869                                                    ketchup   2
## 15870                                                        lot   2
## 15871                                                 phenomenal   2
## 15872                                                       save   2
## 15873                                                      spicy   2
## 15874                                                       take   2
## 15875                                                        way   2
## 15876                                                   mushroom   2
## 15877                                                   appetite   2
## 15878                                                       buck   2
## 15879                                                    calorie   2
## 15880                                                       late   2
## 15881                                                      place   2
## 15882                                                    stomach   2
## 15883                                                    trouble   2
## 15884                                                         ur   2
## 15885                                                      onion   2
## 15886                                                      agree   2
## 15887                                                       also   2
## 15888                                                    another   2
## 15889                                                     anyone   2
## 15890                                                       area   2
## 15891                                                   cashonly   2
## 15892                                                    couldnt   2
## 15893                                                  delicious   2
## 15894                                                   employee   2
## 15895                                                     excite   2
## 15896                                                  extremely   2
## 15897                                                   favorite   2
## 15898                                                       food   2
## 15899                                                        fry   2
## 15900                                                    garbage   2
## 15901                                                       geno   2
## 15902                                                      ginos   2
## 15903                                                      grill   2
## 15904                                                        guy   2
## 15905                                                      hello   2
## 15906                                                      heres   2
## 15907                                                        hes   2
## 15908                                                       lady   2
## 15909                                                      local   2
## 15910                                                 management   2
## 15911                                                        may   2
## 15912                                                      nasty   2
## 15913                                                     native   2
## 15914                                                    neither   2
## 15915                                                    nothing   2
## 15916                                                        now   2
## 15917                                                      onion   2
## 15918                                                    opinion   2
## 15919                                                 overpriced   2
## 15920                                                   overrate   2
## 15921                                                     please   2
## 15922                                                      press   2
## 15923                                                     refund   2
## 15924                                                     review   2
## 15925                                                      right   2
## 15926                                                       stay   2
## 15927                                                      still   2
## 15928                                                      taste   2
## 15929                                                      thats   2
## 15930                                                      thing   2
## 15931                                                     though   2
## 15932                                                          u   2
## 15933                                                         us   2
## 15934                                                        use   2
## 15935                                                        way   2
## 15936                                                      where   2
## 15937                                                        wiz   2
## 15938                                                       wont   2
## 15939                                                        wow   2
## 15940                                                    student   2
## 15941                                                      point   2
## 15942                                                      order   2
## 15943                                                       deal   2
## 15944                                                      bland   2
## 15945                                                      bread   2
## 15946                                                       even   2
## 15947                                                       ever   2
## 15948                                                         go   2
## 15949                                                         im   2
## 15950                                                      onion   2
## 15951                                                        put   2
## 15952                                                      right   2
## 15953                                                      steak   2
## 15954                                                        yes   2
## 15955                                                       also   2
## 15956                                                       area   2
## 15957                                                      clean   2
## 15958                                                       cold   2
## 15959                                                 definitely   2
## 15960                                                       easy   2
## 15961                                                       fact   2
## 15962                                                         go   2
## 15963                                                         im   2
## 15964                                                       park   2
## 15965                                                        pat   2
## 15966                                                     really   2
## 15967                                                        sit   2
## 15968                                                     sparse   2
## 15969                                                      still   2
## 15970                                                      table   2
## 15971                                                       late   2
## 15972                                                       time   2
## 15973                                                     bright   2
## 15974                                                      close   2
## 15975                                                      drive   2
## 15976                                                        get   2
## 15977                                                     happen   2
## 15978                                                         im   2
## 15979                                                        let   2
## 15980                                                      light   2
## 15981                                                       live   2
## 15982                                                      local   2
## 15983                                                       none   2
## 15984                                                   numerous   2
## 15985                                                        old   2
## 15986                                                        pay   2
## 15987                                                     person   2
## 15988                                                  recommend   2
## 15989                                                       seat   2
## 15990                                                       show   2
## 15991                                                       site   2
## 15992                                                    special   2
## 15993                                                      steak   2
## 15994                                                    sticker   2
## 15995                                                      truly   2
## 15996                                                         us   2
## 15997                                                       want   2
## 15998                                                        way   2
## 15999                                                    website   2
## 16000                                                      whats   2
## 16001                                                      youre   2
## 16002                                                       care   2
## 16003                                                      cheap   2
## 16004                                                       good   2
## 16005                                                      juicy   2
## 16006                                                       just   2
## 16007                                                       kind   2
## 16008                                                    lightly   2
## 16009                                                       make   2
## 16010                                                       nice   2
## 16011                                                        put   2
## 16012                                                       rude   2
## 16013                                                   sandwich   2
## 16014                                                        tad   2
## 16015                                                    tourist   2
## 16016                                                      weird   2
## 16017                                                   sandwich   2
## 16018                                                    respect   2
## 16019                                                     crappy   2
## 16020                                                       good   2
## 16021                                                     philly   2
## 16022                                                      point   2
## 16023                                                      steak   2
## 16024                                                         us   2
## 16025                                                       warm   2
## 16026                                                        say   2
## 16027                                                      order   2
## 16028                                                        get   2
## 16029                                                        bad   2
## 16030                                                         do   2
## 16031                                                        ive   2
## 16032                                                       just   2
## 16033                                                      think   2
## 16034                                                     anyone   2
## 16035                                                cheesesteak   2
## 16036                                                     crappy   2
## 16037                                                   customer   2
## 16038                                                         do   2
## 16039                                                       fast   2
## 16040                                                       like   2
## 16041                                                       look   2
## 16042                                                       mean   2
## 16043                                                       meat   2
## 16044                                                        one   2
## 16045                                                     people   2
## 16046                                                    quickly   2
## 16047                                                       side   2
## 16048                                                      slice   2
## 16049                                                    someone   2
## 16050                                                        ton   2
## 16051                                                   attitude   2
## 16052                                                        act   2
## 16053                                                      amaze   2
## 16054                                                 atmosphere   2
## 16055                                                    average   2
## 16056                                                      awful   2
## 16057                                                      bread   2
## 16058                                                       cash   2
## 16059                                                        con   2
## 16060                                                     course   2
## 16061                                                       even   2
## 16062                                                        far   2
## 16063                                                      first   2
## 16064                                                      guess   2
## 16065                                                        guy   2
## 16066                                                 incredibly   2
## 16067                                                       isnt   2
## 16068                                                      issue   2
## 16069                                                  lightning   2
## 16070                                                       long   2
## 16071                                                       make   2
## 16072                                                      maybe   2
## 16073                                                       nice   2
## 16074                                                      order   2
## 16075                                                    outdoor   2
## 16076                                                     pretty   2
## 16077                                                      quite   2
## 16078                                                   sandwich   2
## 16079                                                       save   2
## 16080                                                    service   2
## 16081                                                      skill   2
## 16082                                                      soooo   2
## 16083                                                       star   2
## 16084                                                   superior   2
## 16085                                                      tasty   2
## 16086                                                     theyre   2
## 16087                                                      think   2
## 16088                                                        top   2
## 16089                                                       want   2
## 16090                                                       will   2
## 16091                                                       back   2
## 16092                                                      great   2
## 16093                                                      place   2
## 16094                                                       atms   2
## 16095                                                       hour   2
## 16096                                                      local   2
## 16097                                                       year   2
## 16098                                                      genos   2
## 16099                                                       bing   2
## 16100                                                cheesesteak   2
## 16101                                                      genos   2
## 16102                                                        pat   2
## 16103                                                   sandwich   2
## 16104                                                     cheese   2
## 16105                                                      steak   2
## 16106                                                      steak   2
## 16107                                                       hole   2
## 16108                                                      steak   2
## 16109                                                    leather   2
## 16110                                                     answer   2
## 16111                                                       head   2
## 16112                                                     around   2
## 16113                                                       back   2
## 16114                                                        can   2
## 16115                                                         do   2
## 16116                                                       like   2
## 16117                                                     nearby   2
## 16118                                                      owner   2
## 16119                                                      cycle   2
## 16120                                                     answer   2
## 16121                                                         go   2
## 16122                                                       good   2
## 16123                                                     simple   2
## 16124                                                       just   2
## 16125                                                         go   2
## 16126                                                   surprise   2
## 16127                                                     listen   2
## 16128                                                   sandwich   2
## 16129                                                        eat   2
## 16130                                                    feature   2
## 16131                                                      genos   2
## 16132                                                       hype   2
## 16133                                                       know   2
## 16134                                                        man   2
## 16135                                                    someone   2
## 16136                                                      taste   2
## 16137                                                       work   2
## 16138                                                      worth   2
## 16139                                                      genos   2
## 16140                                                      piece   2
## 16141                                                        eat   2
## 16142                                                    another   2
## 16143                                                      bland   2
## 16144                                                      bread   2
## 16145                                                    counter   2
## 16146                                                       even   2
## 16147                                                     flavor   2
## 16148                                                      genos   2
## 16149                                                        get   2
## 16150                                                         go   2
## 16151                                                       good   2
## 16152                                                      guess   2
## 16153                                                       help   2
## 16154                                                       meat   2
## 16155                                                        one   2
## 16156                                                     people   2
## 16157                                                   probably   2
## 16158                                                     racism   2
## 16159                                                   sandwich   2
## 16160                                                        see   2
## 16161                                                      taste   2
## 16162                                                     bother   2
## 16163                                                     bottom   2
## 16164                                                      build   2
## 16165                                                        can   2
## 16166                                                      cause   2
## 16167                                                confederate   2
## 16168                                                       even   2
## 16169                                                         im   2
## 16170                                                       late   2
## 16171                                                      light   2
## 16172                                                       near   2
## 16173                                                        pat   2
## 16174                                                    picture   2
## 16175                                                    plaster   2
## 16176                                                     poster   2
## 16177                                                    support   2
## 16178                                                       wall   2
## 16179                                                        yes   2
## 16180                                                      genos   2
## 16181                                                   sandwich   2
## 16182                                                         do   2
## 16183                                                       food   2
## 16184                                                   sandwich   2
## 16185                                                cheesesteak   2
## 16186                                                       rude   2
## 16187                                                        say   2
## 16188                                                    tourist   2
## 16189                                                     engage   2
## 16190                                                     across   2
## 16191                                                       also   2
## 16192                                                      drive   2
## 16193                                                   everyone   2
## 16194                                                     famous   2
## 16195                                                    feature   2
## 16196                                                       food   2
## 16197                                                       hear   2
## 16198                                                       high   2
## 16199                                                         im   2
## 16200                                                       last   2
## 16201                                                  literally   2
## 16202                                                       live   2
## 16203                                                        lot   2
## 16204                                                       move   2
## 16205                                                       open   2
## 16206                                                      order   2
## 16207                                                     philly   2
## 16208                                                   remember   2
## 16209                                                      steak   2
## 16210                                                     sunday   2
## 16211                                                      thats   2
## 16212                                                     theyre   2
## 16213                                                    tourist   2
## 16214                                                       town   2
## 16215                                                        use   2
## 16216                                                       whiz   2
## 16217                                                        sir   2
## 16218                                                  boyfriend   2
## 16219                                                     across   2
## 16220                                                    airport   2
## 16221                                                    already   2
## 16222                                                      dirty   2
## 16223                                                     inside   2
## 16224                                                       next   2
## 16225                                                       side   2
## 16226                                                       take   2
## 16227                                                       game   2
## 16228                                                       meat   2
## 16229                                                      piece   2
## 16230                                                    portion   2
## 16231                                                     cheese   2
## 16232                                                     little   2
## 16233                                                        fry   2
## 16234                                                       good   2
## 16235                                                      place   2
## 16236                                                    tourist   2
## 16237                                                       beef   2
## 16238                                                      order   2
## 16239                                                      didnt   2
## 16240                                                       easy   2
## 16241                                                       even   2
## 16242                                                       good   2
## 16243                                                      juicy   2
## 16244                                                     little   2
## 16245                                                       nice   2
## 16246                                                     philly   2
## 16247                                                     prefer   2
## 16248                                                       real   2
## 16249                                                     really   2
## 16250                                                        rib   2
## 16251                                                      shred   2
## 16252                                                     tender   2
## 16253                                                     versus   2
## 16254                                                         vs   2
## 16255                                                       whiz   2
## 16256                                                     window   2
## 16257                                                     margin   2
## 16258                                                    crunchy   2
## 16259                                                 disappoint   2
## 16260                                                       edge   2
## 16261                                                     greasy   2
## 16262                                                      small   2
## 16263                                                      steak   2
## 16264                                                        pat   2
## 16265                                                cheesesteak   2
## 16266                                                        cup   2
## 16267                                                        dog   2
## 16268                                                       lack   2
## 16269                                                     little   2
## 16270                                               neighborhood   2
## 16271                                                 overpriced   2
## 16272                                                      place   2
## 16273                                                   sandwich   2
## 16274                                                      steak   2
## 16275                                                        old   2
## 16276                                                       face   2
## 16277                                                        guy   2
## 16278                                                       less   2
## 16279                                                       look   2
## 16280                                                       snap   2
## 16281                                                     dollar   2
## 16282                                                    service   2
## 16283                                                       shop   2
## 16284                                                      steak   2
## 16285                                                    buttery   2
## 16286                                                     cheese   2
## 16287                                                      chewy   2
## 16288                                                      drink   2
## 16289                                                     hoagie   2
## 16290                                                       nice   2
## 16291                                                       plus   2
## 16292                                                     though   2
## 16293                                                       warm   2
## 16294                                                      whole   2
## 16295                                                    already   2
## 16296                                                      bland   2
## 16297                                                      messy   2
## 16298                                                   mushroom   2
## 16299                                                    nothing   2
## 16300                                                        pat   2
## 16301                                                       roll   2
## 16302                                                   sandwich   2
## 16303                                                      wasnt   2
## 16304                                                         do   2
## 16305                                                        ask   2
## 16306                                                       come   2
## 16307                                                        get   2
## 16308                                                       life   2
## 16309                                                       like   2
## 16310                                                      never   2
## 16311                                                        pay   2
## 16312                                                       work   2
## 16313                                                       else   2
## 16314                                                      bread   2
## 16315                                                       call   2
## 16316                                                cheesesteak   2
## 16317                                               cheesesteaks   2
## 16318                                                     decent   2
## 16319                                                  delicious   2
## 16320                                                       look   2
## 16321                                                      never   2
## 16322                                                        new   2
## 16323                                                   remember   2
## 16324                                                        try   2
## 16325                                                        pat   2
## 16326                                                  flavorful   2
## 16327                                                       spin   2
## 16328                                                       food   2
## 16329                                                       geno   2
## 16330                                                    italian   2
## 16331                                                       just   2
## 16332                                                        law   2
## 16333                                                       like   2
## 16334                                                       good   2
## 16335                                                       late   2
## 16336                                                     excite   2
## 16337                                                       good   2
## 16338                                                       much   2
## 16339                                                 disappoint   2
## 16340                                                       give   2
## 16341                                                        ive   2
## 16342                                                     people   2
## 16343                                                     philly   2
## 16344                                                      place   2
## 16345                                                      gross   2
## 16346                                                      johns   2
## 16347                                              philadelphian   2
## 16348                                                    phillys   2
## 16349                                                         th   2
## 16350                                                       just   2
## 16351                                                      order   2
## 16352                                                    another   2
## 16353                                                cheesesteak   2
## 16354                                                      didnt   2
## 16355                                                      genos   2
## 16356                                                    italian   2
## 16357                                                      order   2
## 16358                                                   whatever   2
## 16359                                                   actually   2
## 16360                                                    compare   2
## 16361                                                 definitely   2
## 16362                                                     either   2
## 16363                                                       food   2
## 16364                                                       good   2
## 16365                                                        hot   2
## 16366                                                       just   2
## 16367                                                      place   2
## 16368                                                   sandwich   2
## 16369                                                      sauce   2
## 16370                                                       stop   2
## 16371                                                      taste   2
## 16372                                                         tv   2
## 16373                                                    service   2
## 16374                                                    another   2
## 16375                                                        day   2
## 16376                                                     dollar   2
## 16377                                                  elsewhere   2
## 16378                                                       hour   2
## 16379                                                        one   2
## 16380                                                       just   2
## 16381                                                       food   2
## 16382                                                       food   2
## 16383                                                        one   2
## 16384                                                  cheesteak   2
## 16385                                                         go   2
## 16386                                                      steak   2
## 16387                                                      block   2
## 16388                                                        can   2
## 16389                                                     choose   2
## 16390                                                    compare   2
## 16391                                                 experience   2
## 16392                                                       food   2
## 16393                                                       good   2
## 16394                                                       grab   2
## 16395                                                         im   2
## 16396                                                     nearby   2
## 16397                                                      order   2
## 16398                                                     people   2
## 16399                                                      right   2
## 16400                                                      still   2
## 16401                                                       sure   2
## 16402                                                      thats   2
## 16403                                                      think   2
## 16404                                                        try   2
## 16405                                                       wait   2
## 16406                                                       will   2
## 16407                                                      bread   2
## 16408                                                     garden   2
## 16409                                                      water   2
## 16410                                                cheesesteak   2
## 16411                                                         do   2
## 16412                                                      genos   2
## 16413                                                       good   2
## 16414                                                        pat   2
## 16415                                                     abrupt   2
## 16416                                                        act   2
## 16417                                                     always   2
## 16418                                                       bite   2
## 16419                                                       even   2
## 16420                                                      genos   2
## 16421                                                     greasy   2
## 16422                                                 incredibly   2
## 16423                                                        ive   2
## 16424                                                       like   2
## 16425                                                     little   2
## 16426                                                     pretty   2
## 16427                                                      quick   2
## 16428                                                     really   2
## 16429                                                       seem   2
## 16430                                                      super   2
## 16431                                                 unfriendly   2
## 16432                                                        way   2
## 16433                                                     cheese   2
## 16434                                                cheesesteak   2
## 16435                                                      didnt   2
## 16436                                                        old   2
## 16437                                                       roll   2
## 16438                                                       side   2
## 16439                                                      steak   2
## 16440                                                     across   2
## 16441                                                          2   2
## 16442                                                         go   2
## 16443                                                     little   2
## 16444                                                       mind   2
## 16445                                                       near   2
## 16446                                                       open   2
## 16447                                                     pretty   2
## 16448                                                     philly   2
## 16449                                                  community   2
## 16450                                                     philly   2
## 16451                                                        bad   2
## 16452                                                       base   2
## 16453                                                  boyfriend   2
## 16454                                                     cheese   2
## 16455                                                cheesesteak   2
## 16456                                                       come   2
## 16457                                                       crap   2
## 16458                                                 definitely   2
## 16459                                                         do   2
## 16460                                                      drive   2
## 16461                                                        due   2
## 16462                                                       fact   2
## 16463                                                      first   2
## 16464                                                        fry   2
## 16465                                                    history   2
## 16466                                                        ive   2
## 16467                                                       know   2
## 16468                                                       next   2
## 16469                                                        now   2
## 16470                                                  obviously   2
## 16471                                                     option   2
## 16472                                               philadelphia   2
## 16473                                                   probably   2
## 16474                                                 restaurant   2
## 16475                                                      staff   2
## 16476                                                       take   2
## 16477                                                     though   2
## 16478                                                        two   2
## 16479                                                      visit   2
## 16480                                                         vs   2
## 16481                                                        way   2
## 16482                                                       like   2
## 16483                                                        ask   2
## 16484                                                     change   2
## 16485                                                cheesesteak   2
## 16486                                                      first   2
## 16487                                                       good   2
## 16488                                                       know   2
## 16489                                                      laugh   2
## 16490                                                      order   2
## 16491                                                     review   2
## 16492                                                     scream   2
## 16493                                                      steak   2
## 16494                                                          w   2
## 16495                                                      genos   2
## 16496                                                         go   2
## 16497                                                     island   2
## 16498                                                    liberty   2
## 16499                                                      clear   2
## 16500                                                        far   2
## 16501                                                        pat   2
## 16502                                                 absolutely   2
## 16503                                                        add   2
## 16504                                                    airport   2
## 16505                                                     albeit   2
## 16506                                                     almost   2
## 16507                                                    already   2
## 16508                                                   anywhere   2
## 16509                                                        aok   2
## 16510                                                  authentic   2
## 16511                                                       beef   2
## 16512                                                    believe   2
## 16513                                                       blah   2
## 16514                                                      block   2
## 16515                                                       buck   2
## 16516                                                         ca   2
## 16517                                                 california   2
## 16518                                                  cardboard   2
## 16519                                                       cash   2
## 16520                                                     cheeze   2
## 16521                                                     chunky   2
## 16522                                                 comparable   2
## 16523                                                     corner   2
## 16524                                                    couldnt   2
## 16525                                                   directly   2
## 16526                                                     doesnt   2
## 16527                                                       easy   2
## 16528                                                        ems   2
## 16529                                                        fan   2
## 16530                                                        fun   2
## 16531                                                       geno   2
## 16532                                                      giant   2
## 16533                                                      guess   2
## 16534                                                        guy   2
## 16535                                                       half   2
## 16536                                                       home   2
## 16537                                                   honestly   2
## 16538                                                   horrible   2
## 16539                                                     jersey   2
## 16540                                                      knock   2
## 16541                                                       lady   2
## 16542                                                      large   2
## 16543                                                       lazy   2
## 16544                                                        let   2
## 16545                                                       life   2
## 16546                                                       live   2
## 16547                                                     locate   2
## 16548                                                       long   2
## 16549                                                       look   2
## 16550                                                       many   2
## 16551                                                      maybe   2
## 16552                                                       melt   2
## 16553                                                      night   2
## 16554                                                  northeast   2
## 16555                                                      offer   2
## 16556                                                    opinion   2
## 16557                                                   overrate   2
## 16558                                                     pepper   2
## 16559                                                     person   2
## 16560                                                       pile   2
## 16561                                                       pipe   2
## 16562                                                      plain   2
## 16563                                                  plentiful   2
## 16564                                                       plus   2
## 16565                                                    portion   2
## 16566                                                    prepare   2
## 16567                                                      price   2
## 16568                                                   probably   2
## 16569                                                    quality   2
## 16570                                                   question   2
## 16571                                                     review   2
## 16572                                                 ridiculous   2
## 16573                                                       save   2
## 16574                                                      share   2
## 16575                                                   slightly   2
## 16576                                                  somewhere   2
## 16577                                                       soso   2
## 16578                                                     street   2
## 16579                                                     subpar   2
## 16580                                                       suck   2
## 16581                                                    texture   2
## 16582                                                      thats   2
## 16583                                                     theyre   2
## 16584                                                       thin   2
## 16585                                                      three   2
## 16586                                                       trip   2
## 16587                                                        two   2
## 16588                                              unfortunately   2
## 16589                                                     unless   2
## 16590                                                 unseasoned   2
## 16591                                                    various   2
## 16592                                                          w   2
## 16593                                                       west   2
## 16594                                                   whatever   2
## 16595                                                       wish   2
## 16596                                                     within   2
## 16597                                                       work   2
## 16598                                                       wrap   2
## 16599                                                       year   2
## 16600                                                      youll   2
## 16601                                                      youve   2
## 16602                                                    ketchup   2
## 16603                                                        hot   2
## 16604                                                      steak   2
## 16605                                                      clear   2
## 16606                                                       back   2
## 16607                                                    counter   2
## 16608                                                      first   2
## 16609                                                       game   2
## 16610                                                      right   2
## 16611                                                       side   2
## 16612                                                        etc   2
## 16613                                                       head   2
## 16614                                                       like   2
## 16615                                                   original   2
## 16616                                                       near   2
## 16617                                                        pen   2
## 16618                                                      place   2
## 16619                                                       call   2
## 16620                                                    crunchy   2
## 16621                                                     decent   2
## 16622                                                     decide   2
## 16623                                                     edible   2
## 16624                                                  excellent   2
## 16625                                                   favorite   2
## 16626                                                       hard   2
## 16627                                                       hunt   2
## 16628                                                         im   2
## 16629                                                       just   2
## 16630                                                       keep   2
## 16631                                                     little   2
## 16632                                                       look   2
## 16633                                                        lot   2
## 16634                                                       need   2
## 16635                                                       nice   2
## 16636                                                      order   2
## 16637                                                     philly   2
## 16638                                                     remain   2
## 16639                                                       room   2
## 16640                                                       sign   2
## 16641                                                       soft   2
## 16642                                                  something   2
## 16643                                                      tasty   2
## 16644                                                    tourist   2
## 16645                                                       want   2
## 16646                                                       warm   2
## 16647                                                      onion   2
## 16648                                                      genos   2
## 16649                                                       turn   2
## 16650                                                  afternoon   2
## 16651                                                       come   2
## 16652                                                        day   2
## 16653                                                      drive   2
## 16654                                                     famous   2
## 16655                                                      first   2
## 16656                                                       good   2
## 16657                                                       grab   2
## 16658                                                       make   2
## 16659                                                     recent   2
## 16660                                                       take   2
## 16661                                                       talk   2
## 16662                                                    weekend   2
## 16663                                                      bread   2
## 16664                                                        buy   2
## 16665                                                        can   2
## 16666                                                     cheese   2
## 16667                                                     across   2
## 16668                                                    airport   2
## 16669                                                    forward   2
## 16670                                                      place   2
## 16671                                                        atm   2
## 16672                                                       bite   2
## 16673                                                      block   2
## 16674                                                      bring   2
## 16675                                                        buy   2
## 16676                                                      check   2
## 16677                                                 competitor   2
## 16678                                                       cred   2
## 16679                                                     decide   2
## 16680                                                 disappoint   2
## 16681                                                     either   2
## 16682                                                     figure   2
## 16683                                                       find   2
## 16684                                                        guy   2
## 16685                                                    however   2
## 16686                                                        ill   2
## 16687                                                         im   2
## 16688                                                    instead   2
## 16689                                                      light   2
## 16690                                                  literally   2
## 16691                                                     little   2
## 16692                                                       long   2
## 16693                                                        may   2
## 16694                                                       move   2
## 16695                                                     narrow   2
## 16696                                                      never   2
## 16697                                                         oh   2
## 16698                                                    outdoor   2
## 16699                                                       past   2
## 16700                                                     people   2
## 16701                                                   sandwich   2
## 16702                                                       side   2
## 16703                                                      since   2
## 16704                                                      still   2
## 16705                                                      super   2
## 16706                                                         tv   2
## 16707                                                       wait   2
## 16708                                                       walk   2
## 16709                                                    without   2
## 16710                                                      wrong   2
## 16711                                                     enough   2
## 16712                                                    tourist   2
## 16713                                                    english   2
## 16714                                                     around   2
## 16715                                                         go   2
## 16716                                                     window   2
## 16717                                                       cook   2
## 16718                                                       back   2
## 16719                                                      bread   2
## 16720                                                      drink   2
## 16721                                                       ever   2
## 16722                                                      juicy   2
## 16723                                                        one   2
## 16724                                                        say   2
## 16725                                                        see   2
## 16726                                                       soft   2
## 16727                                                        sub   2
## 16728                                                     subpar   2
## 16729                                                       will   2
## 16730                                                    without   2
## 16731                                                cheesesteak   2
## 16732                                                       food   2
## 16733                                                    quiznos   2
## 16734                                                   sandwich   2
## 16735                                                       walk   2
## 16736                                                   business   2
## 16737                                                        big   2
## 16738                                                      bread   2
## 16739                                                        can   2
## 16740                                                       care   2
## 16741                                                       cold   2
## 16742                                                     enough   2
## 16743                                                         go   2
## 16744                                                       good   2
## 16745                                                         im   2
## 16746                                                     little   2
## 16747                                                       menu   2
## 16748                                                        pat   2
## 16749                                                       spin   2
## 16750                                                    tourist   2
## 16751                                                     casino   2
## 16752                                                        eat   2
## 16753                                                      genos   2
## 16754                                                       give   2
## 16755                                                        ago   2
## 16756                                                        day   2
## 16757                                                      cheap   2
## 16758                                                     cheesy   2
## 16759                                                       cold   2
## 16760                                                       cool   2
## 16761                                                      duper   2
## 16762                                                  expensive   2
## 16763                                                     greasy   2
## 16764                                                      juicy   2
## 16765                                                       long   2
## 16766                                                      moist   2
## 16767                                                    popular   2
## 16768                                                      yummy   2
## 16769                                                cheesesteak   2
## 16770                                                       meat   2
## 16771                                               philadelphia   2
## 16772                                                      place   2
## 16773                                                      enjoy   2
## 16774                                                     famous   2
## 16775                                                       like   2
## 16776                                                        one   2
## 16777                                                      check   2
## 16778                                                     cheese   2
## 16779                                                     enough   2
## 16780                                                     happen   2
## 16781                                                       hell   2
## 16782                                                       help   2
## 16783                                                      local   2
## 16784                                                        lot   2
## 16785                                                       much   2
## 16786                                                      other   2
## 16787                                                        pat   2
## 16788                                                     philly   2
## 16789                                                     really   2
## 16790                                                        son   2
## 16791                                                      taste   2
## 16792                                                      thats   2
## 16793                                                       want   2
## 16794                                                      whats   2
## 16795                                                      youre   2
## 16796                                                     cheese   2
## 16797                                                   negative   2
## 16798                                                      clean   2
## 16799                                                       like   2
## 16800                                                      never   2
## 16801                                                      place   2
## 16802                                                    tourist   2
## 16803                                                   probably   2
## 16804                                                     theyre   2
## 16805                                                     cheese   2
## 16806                                                      order   2
## 16807                                                      clean   2
## 16808                                                         do   2
## 16809                                                      empty   2
## 16810                                                      enjoy   2
## 16811                                                       find   2
## 16812                                                      first   2
## 16813                                                        get   2
## 16814                                                      never   2
## 16815                                                        see   2
## 16816                                                      space   2
## 16817                                                       take   2
## 16818                                                       bell   2
## 16819                                                   friendly   2
## 16820                                                    another   2
## 16821                                                    brother   2
## 16822                                                  challenge   2
## 16823                                                     cousin   2
## 16824                                                     credit   2
## 16825                                                   everyone   2
## 16826                                                       five   2
## 16827                                                       food   2
## 16828                                                    forever   2
## 16829                                                       hour   2
## 16830                                                        job   2
## 16831                                                      leave   2
## 16832                                               outoftowners   2
## 16833                                                       pass   2
## 16834                                                     people   2
## 16835                                               philadelphia   2
## 16836                                                      place   2
## 16837                                                    plastic   2
## 16838                                                      quick   2
## 16839                                                       ride   2
## 16840                                                        son   2
## 16841                                                      stuff   2
## 16842                                                     subway   2
## 16843                                                       tour   2
## 16844                                                      train   2
## 16845                                                       turn   2
## 16846                                                       uber   2
## 16847                                                    visitor   2
## 16848                                                       vote   2
## 16849                                                        way   2
## 16850                                                       wife   2
## 16851                                                        win   2
## 16852                                                       word   2
## 16853                                                       help   2
## 16854                                                       bout   2
## 16855                                               cheesesteaks   2
## 16856                                                      local   2
## 16857                                                      order   2
## 16858                                                     people   2
## 16859                                                     philly   2
## 16860                                                    service   2
## 16861                                                         us   2
## 16862                                                        spa   2
## 16863                                                     window   2
## 16864                                                      alone   2
## 16865                                                     avatar   2
## 16866                                                  challenge   2
## 16867                                                      cheap   2
## 16868                                                       cook   2
## 16869                                                       cool   2
## 16870                                                       even   2
## 16871                                                        far   2
## 16872                                                       fine   2
## 16873                                                      first   2
## 16874                                                     heaven   2
## 16875                                                   honestly   2
## 16876                                                   horrible   2
## 16877                                                  legendary   2
## 16878                                                       life   2
## 16879                                                        lot   2
## 16880                                                       many   2
## 16881                                                   mediocre   2
## 16882                                                        odd   2
## 16883                                                        one   2
## 16884                                                      plain   2
## 16885                                                     racism   2
## 16886                                                       roll   2
## 16887                                                        sad   2
## 16888                                                       side   2
## 16889                                                       spin   2
## 16890                                                      still   2
## 16891                                                        sub   2
## 16892                                                       take   2
## 16893                                                     though   2
## 16894                                                       true   2
## 16895                                                       want   2
## 16896                                                      water   2
## 16897                                                       whiz   2
## 16898                                                       will   2
## 16899                                                        wiz   2
## 16900                                                      world   2
## 16901                                                        bad   2
## 16902                                                       cant   2
## 16903                                                     cheese   2
## 16904                                                         do   2
## 16905                                                       food   2
## 16906                                                     philly   2
## 16907                                                      thing   2
## 16908                                                     albeit   2
## 16909                                                       bite   2
## 16910                                               cheesesteaks   2
## 16911                                                         do   2
## 16912                                                        get   2
## 16913                                                     greasy   2
## 16914                                                      juicy   2
## 16915                                                       just   2
## 16916                                                       like   2
## 16917                                                     little   2
## 16918                                                      thing   2
## 16919                                                      total   2
## 16920                                                     driver   2
## 16921                                                       fare   2
## 16922                                                        pat   2
## 16923                                                      genos   2
## 16924                                                    program   2
## 16925                                                        bad   2
## 16926                                                   behemoth   2
## 16927                                                     cheese   2
## 16928                                                   customer   2
## 16929                                                   everyone   2
## 16930                                                       give   2
## 16931                                                       know   2
## 16932                                                   language   2
## 16933                                                       make   2
## 16934                                                       many   2
## 16935                                                       need   2
## 16936                                                      owner   2
## 16937                                                     philly   2
## 16938                                                  something   2
## 16939                                                      truth   2
## 16940                                                       will   2
## 16941                                                        buy   2
## 16942                                                     minute   2
## 16943                                                    believe   2
## 16944                                                      bread   2
## 16945                                                     cheese   2
## 16946                                                        cut   2
## 16947                                                  delicious   2
## 16948                                                    however   2
## 16949                                                     season   2
## 16950                                                      steak   2
## 16951                                                     flavor   2
## 16952                                                    service   2
## 16953                                                     around   2
## 16954                                                   attitude   2
## 16955                                                      bread   2
## 16956                                                cheesesteak   2
## 16957                                                 experience   2
## 16958                                                       much   2
## 16959                                                       park   2
## 16960                                               cheesesteaks   2
## 16961                                                        eat   2
## 16962                                                       fair   2
## 16963                                                        see   2
## 16964                                                      thing   2
## 16965                                                        say   2
## 16966                                                      genos   2
## 16967                                                       just   2
## 16968                                                        ave   2
## 16969                                                    century   2
## 16970                                                        fry   2
## 16971                                                         pm   2
## 16972                                                      south   2
## 16973                                                         st   2
## 16974                                                       stop   2
## 16975                                                       good   2
## 16976                                                   goodness   2
## 16977                                                      great   2
## 16978                                                        guy   2
## 16979                                                        lot   2
## 16980                                                      place   2
## 16981                                                      steak   2
## 16982                                                         us   2
## 16983                                                     always   2
## 16984                                                        can   2
## 16985                                                     choice   2
## 16986                                                       cool   2
## 16987                                                   coworker   2
## 16988                                                       even   2
## 16989                                                       give   2
## 16990                                                       high   2
## 16991                                                      kinda   2
## 16992                                                      leave   2
## 16993                                                        pat   2
## 16994                                                 preference   2
## 16995                                                     proper   2
## 16996                                                       real   2
## 16997                                                       sign   2
## 16998                                                      taste   2
## 16999                                                       tell   2
## 17000                                                    tourist   2
## 17001                                                       true   2
## 17002                                                        two   2
## 17003                                                      worth   2
## 17004                                                        big   2
## 17005                                                  condiment   2
## 17006                                                        lot   2
## 17007                                                     across   2
## 17008                                                   actually   2
## 17009                                                       also   2
## 17010                                                     charge   2
## 17011                                                       damn   2
## 17012                                                     famous   2
## 17013                                                        get   2
## 17014                                                       give   2
## 17015                                                 incredibly   2
## 17016                                                       know   2
## 17017                                                     little   2
## 17018                                                   probably   2
## 17019                                                    suppose   2
## 17020                                                    tourist   2
## 17021                                                        use   2
## 17022                                                      never   2
## 17023                                                       bite   2
## 17024                                                      bread   2
## 17025                                                     cheese   2
## 17026                                                      genos   2
## 17027                                                      steak   2
## 17028                                                       cook   2
## 17029                                                     crispy   2
## 17030                                                     enough   2
## 17031                                                         im   2
## 17032                                                     little   2
## 17033                                                      place   2
## 17034                                                     really   2
## 17035                                                 absolutely   2
## 17036                                                   actually   2
## 17037                                                        add   2
## 17038                                                    america   2
## 17039                                                        big   2
## 17040                                                       bite   2
## 17041                                                     bother   2
## 17042                                                      bring   2
## 17043                                                       cash   2
## 17044                                                       city   2
## 17045                                                      earth   2
## 17046                                                       ever   2
## 17047                                                     friend   2
## 17048                                                    however   2
## 17049                                                         id   2
## 17050                                                         im   2
## 17051                                                        lol   2
## 17052                                                        may   2
## 17053                                                       menu   2
## 17054                                                       nice   2
## 17055                                                       note   2
## 17056                                                      order   2
## 17057                                                 restaurant   2
## 17058                                                       save   2
## 17059                                                       seem   2
## 17060                                                      speak   2
## 17061                                                      stick   2
## 17062                                                       take   2
## 17063                                                      wasnt   2
## 17064                                                        yes   2
## 17065                                                      youll   2
## 17066                                                     anyone   2
## 17067                                                     become   2
## 17068                                                       bite   2
## 17069                                                      check   2
## 17070                                                      cheez   2
## 17071                                                       come   2
## 17072                                                    couldve   2
## 17073                                                     decent   2
## 17074                                                  delicious   2
## 17075                                                      drink   2
## 17076                                                        eat   2
## 17077                                                       even   2
## 17078                                                       ever   2
## 17079                                                     expect   2
## 17080                                                       food   2
## 17081                                                       geno   2
## 17082                                                       give   2
## 17083                                                       hype   2
## 17084                                                    italian   2
## 17085                                                        itd   2
## 17086                                                       joke   2
## 17087                                                       kind   2
## 17088                                                       lose   2
## 17089                                                       many   2
## 17090                                                      maybe   2
## 17091                                                       neon   2
## 17092                                                       next   2
## 17093                                                        now   2
## 17094                                                  otherwise   2
## 17095                                               philadelphia   2
## 17096                                                     pretty   2
## 17097                                                  provolone   2
## 17098                                                     reason   2
## 17099                                                      right   2
## 17100                                                       rude   2
## 17101                                                    someone   2
## 17102                                                      steam   2
## 17103                                                      strip   2
## 17104                                                       sure   2
## 17105                                                       take   2
## 17106                                                     theres   2
## 17107                                                      theyd   2
## 17108                                                      thing   2
## 17109                                                        use   2
## 17110                                                       wait   2
## 17111                                                        way   2
## 17112                                                      weird   2
## 17113                                                       whiz   2
## 17114                                                     worker   2
## 17115                                                      youre   2
## 17116                                                     minute   2
## 17117                                                         bf   2
## 17118                                                     bright   2
## 17119                                                 definitely   2
## 17120                                                        fry   2
## 17121                                                     havent   2
## 17122                                                       long   2
## 17123                                                       make   2
## 17124                                                       much   2
## 17125                                                       open   2
## 17126                                                     people   2
## 17127                                                     prefer   2
## 17128                                                     review   2
## 17129                                                        say   2
## 17130                                                       seem   2
## 17131                                                      since   2
## 17132                                                      stand   2
## 17133                                                      steak   2
## 17134                                                     theres   2
## 17135                                                    tourist   2
## 17136                                                       wait   2
## 17137                                                       want   2
## 17138                                                      whole   2
## 17139                                                       wish   2
## 17140                                                      worth   2
## 17141                                                      youre   2
## 17142                                                       upon   2
## 17143                                                      block   2
## 17144                                                cheesesteak   2
## 17145                                                  different   2
## 17146                                                     minute   2
## 17147                                                     people   2
## 17148                                                   sandwich   2
## 17149                                                      thing   2
## 17150                                                       type   2
## 17151                                                     flavor   2
## 17152                                                    garbage   2
## 17153                                                       roll   2
## 17154                                                       tony   2
## 17155                                                        top   2
## 17156                                                     window   2
## 17157                                                        pat   2
## 17158                                                      night   2
## 17159                                                        one   2
## 17160                                                       good   2
## 17161                                                        day   2
## 17162                                                       able   2
## 17163                                                     arrive   2
## 17164                                                    believe   2
## 17165                                                         bf   2
## 17166                                                      bring   2
## 17167                                                     change   2
## 17168                                                     cheese   2
## 17169                                                      crowd   2
## 17170                                                     crunch   2
## 17171                                                   customer   2
## 17172                                                      didnt   2
## 17173                                                    discuss   2
## 17174                                                        end   2
## 17175                                                       even   2
## 17176                                                     figure   2
## 17177                                                    finally   2
## 17178                                                       find   2
## 17179                                                       food   2
## 17180                                                        fry   2
## 17181                                                      ginos   2
## 17182                                                      guess   2
## 17183                                                       hand   2
## 17184                                                       hour   2
## 17185                                                    however   2
## 17186                                                   ignorant   2
## 17187                                                       know   2
## 17188                                                       lady   2
## 17189                                                      learn   2
## 17190                                                       like   2
## 17191                                                     little   2
## 17192                                                       long   2
## 17193                                                        may   2
## 17194                                                      maybe   2
## 17195                                                       must   2
## 17196                                                    nervous   2
## 17197                                                      offer   2
## 17198                                                         oh   2
## 17199                                                       pass   2
## 17200                                                       past   2
## 17201                                                      quick   2
## 17202                                                    someone   2
## 17203                                                      stand   2
## 17204                                                      still   2
## 17205                                                       stop   2
## 17206                                                       sure   2
## 17207                                                      think   2
## 17208                                                       time   2
## 17209                                                      today   2
## 17210                                                       upon   2
## 17211                                                    usually   2
## 17212                                                    visitor   2
## 17213                                                      watch   2
## 17214                                                    weekend   2
## 17215                                                      worth   2
## 17216                                                       yelp   2
## 17217                                                       city   2
## 17218                                                     amount   2
## 17219                                                       cash   2
## 17220                                                         go   2
## 17221                                                      order   2
## 17222                                                     people   2
## 17223                                                       meat   2
## 17224                                                       warm   2
## 17225                                                      genos   2
## 17226                                                       give   2
## 17227                                                        ive   2
## 17228                                                     really   2
## 17229                                                       take   2
## 17230                                                        try   2
## 17231                                                       line   2
## 17232                                                       meat   2
## 17233                                                        one   2
## 17234                                                  perfectly   2
## 17235                                                     dinics   2
## 17236                                                     cheese   2
## 17237                                                   customer   2
## 17238                                                     flavor   2
## 17239                                                      bread   2
## 17240                                                     choice   2
## 17241                                                   favorite   2
## 17242                                                       geno   2
## 17243                                                       good   2
## 17244                                                       line   2
## 17245                                                       love   2
## 17246                                                       meat   2
## 17247                                                      onion   2
## 17248                                                      order   2
## 17249                                                     philly   2
## 17250                                                      place   2
## 17251                                                     racist   2
## 17252                                                   sandwich   2
## 17253                                                      steak   2
## 17254                                                        ten   2
## 17255                                                  available   2
## 17256                                                       want   2
## 17257                                                     ripoff   2
## 17258                                                     expect   2
## 17259                                                         go   2
## 17260                                                   overrate   2
## 17261                                                    tourist   2
## 17262                                                       pole   2
## 17263                                                    subject   2
## 17264                                                 flavorless   2
## 17265                                                       good   2
## 17266                                                       hard   2
## 17267                                                       just   2
## 17268                                                       kind   2
## 17269                                                     little   2
## 17270                                                    overall   2
## 17271                                                       side   2
## 17272                                                     street   2
## 17273                                                      taste   2
## 17274                                                  tasteless   2
## 17275                                                        bus   2
## 17276                                                       city   2
## 17277                                                    company   2
## 17278                                                       spot   2
## 17279                                                        buy   2
## 17280                                                    couldnt   2
## 17281                                                     doesnt   2
## 17282                                                     dollar   2
## 17283                                                      first   2
## 17284                                                      flock   2
## 17285                                                     friend   2
## 17286                                                    hotspot   2
## 17287                                                       know   2
## 17288                                                       make   2
## 17289                                                      maybe   2
## 17290                                                      money   2
## 17291                                                       move   2
## 17292                                                       must   2
## 17293                                                     native   2
## 17294                                                   pamphlet   2
## 17295                                                   sandwich   2
## 17296                                                     though   2
## 17297                                                    tourist   2
## 17298                                                       type   2
## 17299                                                        way   2
## 17300                                                      whose   2
## 17301                                                       will   2
## 17302                                                      youre   2
## 17303                                                      youre   2
## 17304                                                     people   2
## 17305                                                     course   2
## 17306                                                        eat   2
## 17307                                                       feel   2
## 17308                                                       hear   2
## 17309                                                    however   2
## 17310                                                       hunt   2
## 17311                                                      never   2
## 17312                                                       open   2
## 17313                                                       park   2
## 17314                                                     philly   2
## 17315                                                        say   2
## 17316                                                      since   2
## 17317                                                       will   2
## 17318                                                     philly   2
## 17319                                                        get   2
## 17320                                                        bad   2
## 17321                                                     cheese   2
## 17322                                                cheesesteak   2
## 17323                                               cheesesteaks   2
## 17324                                                 definitely   2
## 17325                                                      every   2
## 17326                                                       fall   2
## 17327                                                       feel   2
## 17328                                                       fill   2
## 17329                                                       food   2
## 17330                                                       good   2
## 17331                                                       head   2
## 17332                                                     highly   2
## 17333                                                       know   2
## 17334                                                       long   2
## 17335                                                       meat   2
## 17336                                                      price   2
## 17337                                                   sandwich   2
## 17338                                                       self   2
## 17339                                                       take   2
## 17340                                                   terrible   2
## 17341                                                      thats   2
## 17342                                                        can   2
## 17343                                                         do   2
## 17344                                                         go   2
## 17345                                                        pat   2
## 17346                                                   carnival   2
## 17347                                                      badly   2
## 17348                                                         us   2
## 17349                                                      south   2
## 17350                                                        try   2
## 17351                                                     cheese   2
## 17352                                                       city   2
## 17353                                                         dc   2
## 17354                                                         do   2
## 17355                                                        end   2
## 17356                                                      first   2
## 17357                                                        get   2
## 17358                                                         go   2
## 17359                                                      legit   2
## 17360                                                      order   2
## 17361                                                         pa   2
## 17362                                                     really   2
## 17363                                                        say   2
## 17364                                                       take   2
## 17365                                                       want   2
## 17366                                                      worth   2
## 17367                                                   american   2
## 17368                                                cheesesteak   2
## 17369                                                 difference   2
## 17370                                                     foodie   2
## 17371                                                       good   2
## 17372                                                      local   2
## 17373                                                      taste   2
## 17374                                                  delicious   2
## 17375                                                 disappoint   2
## 17376                                                    tourist   2
## 17377                                                      local   2
## 17378                                                        try   2
## 17379                                                      youll   2
## 17380                                                       good   2
## 17381                                                       tell   2
## 17382                                                 backtoback   2
## 17383                                                     battle   2
## 17384                                                        bum   2
## 17385                                                       cash   2
## 17386                                                  challenge   2
## 17387                                                      check   2
## 17388                                                    classic   2
## 17389                                                       come   2
## 17390                                                     course   2
## 17391                                                        cut   2
## 17392                                                      didnt   2
## 17393                                                 disappoint   2
## 17394                                                  elsewhere   2
## 17395                                                        end   2
## 17396                                                       even   2
## 17397                                                      every   2
## 17398                                                    freedom   2
## 17399                                                       geno   2
## 17400                                                        guy   2
## 17401                                                       help   2
## 17402                                                       high   2
## 17403                                                       hole   2
## 17404                                                         im   2
## 17405                                                    instead   2
## 17406                                                       know   2
## 17407                                                       last   2
## 17408                                                      learn   2
## 17409                                                      leave   2
## 17410                                                  literally   2
## 17411                                                        max   2
## 17412                                                       meat   2
## 17413                                                       move   2
## 17414                                                   neighbor   2
## 17415                                                       nice   2
## 17416                                                   overrate   2
## 17417                                                       park   2
## 17418                                                     prefer   2
## 17419                                                     pretty   2
## 17420                                                     really   2
## 17421                                                 restaurant   2
## 17422                                                      right   2
## 17423                                                      rival   2
## 17424                                                       side   2
## 17425                                                       star   2
## 17426                                                      thats   2
## 17427                                                   touristy   2
## 17428                                                 understand   2
## 17429                                                        use   2
## 17430                                                       want   2
## 17431                                                      wasnt   2
## 17432                                                      whole   2
## 17433                                                        wiz   2
## 17434                                                      youre   2
## 17435                                                     friend   2
## 17436                                                       good   2
## 17437                                                 commercial   2
## 17438                                                     decide   2
## 17439                                                       food   2
## 17440                                                       give   2
## 17441                                                       know   2
## 17442                                                       many   2
## 17443                                                     really   2
## 17444                                                        big   2
## 17445                                                         go   2
## 17446                                                     across   2
## 17447                                                        bad   2
## 17448                                                      bread   2
## 17449                                                      buddy   2
## 17450                                                   business   2
## 17451                                                 competitor   2
## 17452                                                        day   2
## 17453                                                   employee   2
## 17454                                                        end   2
## 17455                                                        fry   2
## 17456                                                        get   2
## 17457                                                         go   2
## 17458                                                      group   2
## 17459                                                       half   2
## 17460                                                    however   2
## 17461                                                      joint   2
## 17462                                                       just   2
## 17463                                                       long   2
## 17464                                                   mushroom   2
## 17465                                                      night   2
## 17466                                                      onion   2
## 17467                                                    popular   2
## 17468                                                 restaurant   2
## 17469                                                        say   2
## 17470                                                       shop   2
## 17471                                                      slice   2
## 17472                                                      small   2
## 17473                                                       soda   2
## 17474                                                     summer   2
## 17475                                                    suppose   2
## 17476                                                       thin   2
## 17477                                                      think   2
## 17478                                                      thumb   2
## 17479                                                       time   2
## 17480                                                        try   2
## 17481                                                        way   2
## 17482                                                       week   2
## 17483                                                       word   2
## 17484                                                      steak   2
## 17485                                                   american   2
## 17486                                                     cheese   2
## 17487                                                cheesesteak   2
## 17488                                                        can   2
## 17489                                                        get   2
## 17490                                                     philly   2
## 17491                                                     decide   2
## 17492                                                      onion   2
## 17493                                                      place   2
## 17494                                                     anyone   2
## 17495                                                    concept   2
## 17496                                                        get   2
## 17497                                                       keep   2
## 17498                                                       line   2
## 17499                                                        low   2
## 17500                                                        pat   2
## 17501                                                     philly   2
## 17502                                                 popularity   2
## 17503                                                        say   2
## 17504                                              establishment   2
## 17505                                                     expect   2
## 17506                                               cheesesteaks   2
## 17507                                                 disappoint   2
## 17508                                                       line   2
## 17509                                                        one   2
## 17510                                                        pat   2
## 17511                                                      wasnt   2
## 17512                                                 experience   2
## 17513                                                      drink   2
## 17514                                                         im   2
## 17515                                                 experience   2
## 17516                                                       jims   2
## 17517                                                       many   2
## 17518                                                cheesesteak   2
## 17519                                                     arrive   2
## 17520                                                      first   2
## 17521                                                   thousand   2
## 17522                                                      first   2
## 17523                                                    stomach   2
## 17524                                                        ask   2
## 17525                                                   business   2
## 17526                                                cheesesteak   2
## 17527                                                    country   2
## 17528                                                 disappoint   2
## 17529                                                         do   2
## 17530                                                      drink   2
## 17531                                                      enjoy   2
## 17532                                                       even   2
## 17533                                                      first   2
## 17534                                                       geno   2
## 17535                                                       good   2
## 17536                                                       line   2
## 17537                                                     minute   2
## 17538                                                     online   2
## 17539                                                       push   2
## 17540                                                   remember   2
## 17541                                                        try   2
## 17542                                                       want   2
## 17543                                                       will   2
## 17544                                                        big   2
## 17545                                                      bread   2
## 17546                                                        can   2
## 17547                                                   describe   2
## 17548                                                  flavorful   2
## 17549                                                      fresh   2
## 17550                                                      genos   2
## 17551                                                       hear   2
## 17552                                                        hot   2
## 17553                                                       much   2
## 17554                                                     napkin   2
## 17555                                                       nice   2
## 17556                                                 restaurant   2
## 17557                                                       salt   2
## 17558                                                      slice   2
## 17559                                                    support   2
## 17560                                                       whiz   2
## 17561                                                      whole   2
## 17562                                                       word   2
## 17563                                                     cheese   2
## 17564                                                cheesesteak   2
## 17565                                                        eat   2
## 17566                                                         go   2
## 17567                                                       just   2
## 17568                                                       like   2
## 17569                                                       long   2
## 17570                                                        one   2
## 17571                                                     pretty   2
## 17572                                                        see   2
## 17573                                                       park   2
## 17574                                                      genos   2
## 17575                                                      great   2
## 17576                                                     casino   2
## 17577                                                      style   2
## 17578                                                   sandwich   2
## 17579                                                     cheese   2
## 17580                                                    machine   2
## 17581                                                       also   2
## 17582                                                      genos   2
## 17583                                                     racist   2
## 17584                                                        say   2
## 17585                                                      stand   2
## 17586                                                      forth   2
## 17587                                                      genos   2
## 17588                                                       side   2
## 17589                                                      south   2
## 17590                                                      genos   2
## 17591                                                     cheese   2
## 17592                                                       chop   2
## 17593                                                       hype   2
## 17594                                                        pat   2
## 17595                                                        ill   2
## 17596                                                      versa   2
## 17597                                                    brother   2
## 17598                                                     corner   2
## 17599                                                    country   2
## 17600                                              establishment   2
## 17601                                                 experience   2
## 17602                                                     famous   2
## 17603                                                      first   2
## 17604                                                       geno   2
## 17605                                                       home   2
## 17606                                                      italy   2
## 17607                                                         la   2
## 17608                                                       like   2
## 17609                                                     museum   2
## 17610                                                    october   2
## 17611                                               pennsylvania   2
## 17612                                               philadelphia   2
## 17613                                                       town   2
## 17614                                                       away   2
## 17615                                                        pat   2
## 17616                                                       chop   2
## 17617                                                       food   2
## 17618                                                       good   2
## 17619                                                        pat   2
## 17620                                                        wiz   2
## 17621                                                       good   2
## 17622                                                       time   2
## 17623                                                    another   2
## 17624                                                cheesesteak   2
## 17625                                                       cold   2
## 17626                                                       come   2
## 17627                                                        day   2
## 17628                                                 definitely   2
## 17629                                                     friend   2
## 17630                                                      genos   2
## 17631                                                       hype   2
## 17632                                                       inch   2
## 17633                                                       like   2
## 17634                                                        lot   2
## 17635                                                      money   2
## 17636                                                        one   2
## 17637                                                        see   2
## 17638                                                        sit   2
## 17639                                                       take   2
## 17640                                                     though   2
## 17641                                                       turn   2
## 17642                                                        two   2
## 17643                                                    counter   2
## 17644                                                         do   2
## 17645                                                       find   2
## 17646                                                        get   2
## 17647                                                       jims   2
## 17648                                                       line   2
## 17649                                                       past   2
## 17650                                                      place   2
## 17651                                                 restaurant   2
## 17652                                                        say   2
## 17653                                                    several   2
## 17654                                                      smell   2
## 17655                                                      pizza   2
## 17656                                                     police   2
## 17657                                                       know   2
## 17658                                                     actual   2
## 17659                                                    address   2
## 17660                                                    america   2
## 17661                                                       bite   2
## 17662                                                        can   2
## 17663                                                       even   2
## 17664                                                     finish   2
## 17665                                                       full   2
## 17666                                                       grab   2
## 17667                                                       hear   2
## 17668                                                      juicy   2
## 17669                                                       long   2
## 17670                                                       look   2
## 17671                                                       make   2
## 17672                                                      nasty   2
## 17673                                                        pay   2
## 17674                                                  provolone   2
## 17675                                                       rate   2
## 17676                                                       rude   2
## 17677                                                       save   2
## 17678                                                     scream   2
## 17679                                                       side   2
## 17680                                                      speak   2
## 17681                                                    support   2
## 17682                                                       talk   2
## 17683                                                       time   2
## 17684                                                      visit   2
## 17685                                                       walk   2
## 17686                                                      waste   2
## 17687                                                        wiz   2
## 17688                                                      write   2
## 17689                                                      genos   2
## 17690                                                         go   2
## 17691                                                     philly   2
## 17692                                                     cheese   2
## 17693                                                      chewy   2
## 17694                                                      fresh   2
## 17695                                                       good   2
## 17696                                                      melty   2
## 17697                                                   sandwich   2
## 17698                                                      steak   2
## 17699                                                        big   2
## 17700                                                       case   2
## 17701                                                      chewy   2
## 17702                                                       cook   2
## 17703                                                      crazy   2
## 17704                                                       drip   2
## 17705                                                  enjoyable   2
## 17706                                                     excite   2
## 17707                                                        far   2
## 17708                                                  flavorful   2
## 17709                                                       full   2
## 17710                                                       hard   2
## 17711                                                       huge   2
## 17712                                                     hungry   2
## 17713                                                      juicy   2
## 17714                                                      messy   2
## 17715                                                     nearly   2
## 17716                                                        one   2
## 17717                                                      salty   2
## 17718                                                     shabby   2
## 17719                                                spectacular   2
## 17720                                                       sure   2
## 17721                                                   surprise   2
## 17722                                                        ton   2
## 17723                                                      wasnt   2
## 17724                                                      world   2
## 17725                                                       time   2
## 17726                                                        gas   2
## 17727                                                         go   2
## 17728                                                   precious   2
## 17729                                                    stomach   2
## 17730                                                         ur   2
## 17731                                                   american   2
## 17732                                                        car   2
## 17733                                                       diet   2
## 17734                                                   numerous   2
## 17735                                                     people   2
## 17736                                                   phillies   2
## 17737                                                         tv   2
## 17738                                                         us   2
## 17739                                                     cheese   2
## 17740                                                         go   2
## 17741                                                     really   2
## 17742                                                      onion   2
## 17743                                                      ahead   2
## 17744                                                       also   2
## 17745                                                     beyond   2
## 17746                                                     boston   2
## 17747                                                       call   2
## 17748                                                       cant   2
## 17749                                                cheesesteak   2
## 17750                                                    chicago   2
## 17751                                                      clean   2
## 17752                                                       come   2
## 17753                                                       cook   2
## 17754                                                   describe   2
## 17755                                                  expensive   2
## 17756                                                       find   2
## 17757                                                      first   2
## 17758                                                        fun   2
## 17759                                                       just   2
## 17760                                                       many   2
## 17761                                                         ny   2
## 17762                                                        nyc   2
## 17763                                                        one   2
## 17764                                                      onion   2
## 17765                                                       park   2
## 17766                                               philadelphia   2
## 17767                                                      place   2
## 17768                                                   possible   2
## 17769                                                       rate   2
## 17770                                                       real   2
## 17771                                                     return   2
## 17772                                                      serve   2
## 17773                                                    service   2
## 17774                                                      spicy   2
## 17775                                                      start   2
## 17776                                                      steak   2
## 17777                                                       stop   2
## 17778                                                      taste   2
## 17779                                                      think   2
## 17780                                                       time   2
## 17781                                                        two   2
## 17782                                                   virginia   2
## 17783                                                        wiz   2
## 17784                                                       work   2
## 17785                                                       good   2
## 17786                                                       free   2
## 17787                                                      glove   2
## 17788                                                      shirt   2
## 17789                                                       take   2
## 17790                                                         go   2
## 17791                                                      place   2
## 17792                                                      first   2
## 17793                                                      genos   2
## 17794                                                    getaway   2
## 17795                                                       like   2
## 17796                                                     philly   2
## 17797                                                      taste   2
## 17798                                                      genos   2
## 17799                                                      place   2
## 17800                                                       busy   2
## 17801                                                       even   2
## 17802                                                      grill   2
## 17803                                                      happy   2
## 17804                                                    impress   2
## 17805                                                     really   2
## 17806                                                       fart   2
## 17807                                                     grease   2
## 17808                                                       like   2
## 17809                                                        nap   2
## 17810                                                      soggy   2
## 17811                                                       hear   2
## 17812                                                        can   2
## 17813                                                   language   2
## 17814                                                     reason   2
## 17815                                                       deal   2
## 17816                                                 difference   2
## 17817                                                       love   2
## 17818                                                       real   2
## 17819                                                       sign   2
## 17820                                                       trip   2
## 17821                                                      wrong   2
## 17822                                                       just   2
## 17823                                                         im   2
## 17824                                                      genos   2
## 17825                                                        get   2
## 17826                                                       like   2
## 17827                                                        pat   2
## 17828                                                       want   2
## 17829                                                    cheddar   2
## 17830                                                     cheese   2
## 17831                                                      flour   2
## 17832                                                       neon   2
## 17833                                                supremacist   2
## 17834                                                        add   2
## 17835                                                 apparently   2
## 17836                                                    classic   2
## 17837                                                  delicious   2
## 17838                                                     doesnt   2
## 17839                                                        fan   2
## 17840                                                       food   2
## 17841                                                     grease   2
## 17842                                                         id   2
## 17843                                                      juice   2
## 17844                                                       know   2
## 17845                                                       love   2
## 17846                                                       mean   2
## 17847                                                   mushroom   2
## 17848                                                      never   2
## 17849                                                       okay   2
## 17850                                                    overall   2
## 17851                                                        pay   2
## 17852                                                      place   2
## 17853                                                     prefer   2
## 17854                                                       real   2
## 17855                                                     really   2
## 17856                                                       roll   2
## 17857                                                       save   2
## 17858                                                       seem   2
## 17859                                                      sound   2
## 17860                                               surprisingly   2
## 17861                                                      thing   2
## 17862                                                      think   2
## 17863                                                     though   2
## 17864                                                    tourist   2
## 17865                                                traditional   2
## 17866                                                      trust   2
## 17867                                                 understand   2
## 17868                                                          w   2
## 17869                                                      whole   2
## 17870                                                       will   2
## 17871                                                       work   2
## 17872                                                       area   2
## 17873                                                        bag   2
## 17874                                                       live   2
## 17875                                                    package   2
## 17876                                                       thin   2
## 17877                                                        way   2
## 17878                                                        wit   2
## 17879                                                       live   2
## 17880                                                    brother   2
## 17881                                                       come   2
## 17882                                                     decide   2
## 17883                                                        kid   2
## 17884                                                       like   2
## 17885                                                        pat   2
## 17886                                                     prefer   2
## 17887                                                        sit   2
## 17888                                                        son   2
## 17889                                                      split   2
## 17890                                                   favorite   2
## 17891                                                        add   2
## 17892                                                       also   2
## 17893                                                        bet   2
## 17894                                                        buy   2
## 17895                                                    forever   2
## 17896                                                      genos   2
## 17897                                                       hate   2
## 17898                                                       hold   2
## 17899                                                       jump   2
## 17900                                                       kick   2
## 17901                                                      knock   2
## 17902                                                       last   2
## 17903                                                        let   2
## 17904                                                       like   2
## 17905                                                     listen   2
## 17906                                                        now   2
## 17907                                                       rate   2
## 17908                                                     regret   2
## 17909                                                       send   2
## 17910                                                      serve   2
## 17911                                                       soon   2
## 17912                                                      spend   2
## 17913                                                     surely   2
## 17914                                                      thank   2
## 17915                                                      truly   2
## 17916                                                       want   2
## 17917                                                       book   2
## 17918                                                  challenge   2
## 17919                                                cheesesteak   2
## 17920                                                        day   2
## 17921                                                     flavor   2
## 17922                                                       good   2
## 17923                                                  handsdown   2
## 17924                                                        one   2
## 17925                                                       sure   2
## 17926                                                      taste   2
## 17927                                                         us   2
## 17928                                                          2   2
## 17929                                                    america   2
## 17930                                                       back   2
## 17931                                               cheesesteaks   2
## 17932                                                      didnt   2
## 17933                                                  different   2
## 17934                                                 everything   2
## 17935                                                   friendly   2
## 17936                                                      great   2
## 17937                                                    impress   2
## 17938                                                       lady   2
## 17939                                                       like   2
## 17940                                                       line   2
## 17941                                                       next   2
## 17942                                                       nice   2
## 17943                                                      place   2
## 17944                                                      press   2
## 17945                                                    quality   2
## 17946                                                    service   2
## 17947                                                       shut   2
## 17948                                                       side   2
## 17949                                                       sign   2
## 17950                                                  situation   2
## 17951                                                      slide   2
## 17952                                                      speak   2
## 17953                                                     street   2
## 17954                                                      wasnt   2
## 17955                                                      youre   2
## 17956                                                       plus   2
## 17957                                                 propaganda   2
## 17958                                                cheesesteak   2
## 17959                                                 definitely   2
## 17960                                                       line   2
## 17961                                                      genos   2
## 17962                                                       list   2
## 17963                                                     little   2
## 17964                                                       make   2
## 17965                                                       meat   2
## 17966                                                      offer   2
## 17967                                                      order   2
## 17968                                                       stop   2
## 17969                                                       take   2
## 17970                                                    wouldve   2
## 17971                                                       also   2
## 17972                                                       come   2
## 17973                                                  delicious   2
## 17974                                                      enjoy   2
## 17975                                                      first   2
## 17976                                                       keep   2
## 17977                                                       know   2
## 17978                                                   mushroom   2
## 17979                                                  something   2
## 17980                                                      steak   2
## 17981                                                        tax   2
## 17982                                                       word   2
## 17983                                                cheesesteak   2
## 17984                                                  condiment   2
## 17985                                                         go   2
## 17986                                                 hesitation   2
## 17987                                                        hot   2
## 17988                                                       much   2
## 17989                                                  provolone   2
## 17990                                                       roll   2
## 17991                                                        say   2
## 17992                                                         us   2
## 17993                                                     theres   2
## 17994                                                   actually   2
## 17995                                                      amaze   2
## 17996                                                          b   2
## 17997                                                  basically   2
## 17998                                                    classic   2
## 17999                                                      extra   2
## 18000                                                       feel   2
## 18001                                                      genos   2
## 18002                                                    however   2
## 18003                                                         id   2
## 18004                                                         im   2
## 18005                                                       just   2
## 18006                                                       melt   2
## 18007                                                   original   2
## 18008                                                     philly   2
## 18009                                                      place   2
## 18010                                                     pretty   2
## 18011                                                        put   2
## 18012                                                     racist   2
## 18013                                                       real   2
## 18014                                                      sauce   2
## 18015                                                        say   2
## 18016                                                       stay   2
## 18017                                                      still   2
## 18018                                                       turn   2
## 18019                                                          w   2
## 18020                                                      wasnt   2
## 18021                                                        wid   2
## 18022                                                     widout   2
## 18023                                                       will   2
## 18024                                                        yes   2
## 18025                                                     cheese   2
## 18026                                                        fry   2
## 18027                                                     behind   2
## 18028                                                       give   2
## 18029                                                       work   2
## 18030                                                cheesesteak   2
## 18031                                                       even   2
## 18032                                                   original   2
## 18033                                                      staff   2
## 18034                                                       ever   2
## 18035                                                       find   2
## 18036                                                        let   2
## 18037                                                      sorry   2
## 18038                                                      waste   2
## 18039                                                        can   2
## 18040                                                   describe   2
## 18041                                                     street   2
## 18042                                                        ask   2
## 18043                                                     behind   2
## 18044                                                      class   2
## 18045                                                      genos   2
## 18046                                                  immigrant   2
## 18047                                                       just   2
## 18048                                                       like   2
## 18049                                                       live   2
## 18050                                                       next   2
## 18051                                                       nice   2
## 18052                                                        see   2
## 18053                                                        way   2
## 18054                                                       year   2
## 18055                                                      arent   2
## 18056                                                  extremely   2
## 18057                                                       make   2
## 18058                                                       nice   2
## 18059                                                       rude   2
## 18060                                                       even   2
## 18061                                                   personal   2
## 18062                                                   renowned   2
## 18063                                                   warcraft   2
## 18064                                                       line   2
## 18065                                                   attitude   2
## 18066                                                     charge   2
## 18067                                                       cost   2
## 18068                                                      every   2
## 18069                                                       food   2
## 18070                                                         im   2
## 18071                                                       just   2
## 18072                                                     little   2
## 18073                                                       look   2
## 18074                                                       next   2
## 18075                                                        one   2
## 18076                                                     really   2
## 18077                                                      stand   2
## 18078                                                      thats   2
## 18079                                                     though   2
## 18080                                                    tourist   2
## 18081                                                       walk   2
## 18082                                                       whiz   2
## 18083                                                       star   2
## 18084                                                        bad   2
## 18085                                                     bother   2
## 18086                                                      catch   2
## 18087                                                       ever   2
## 18088                                                     really   2
## 18089                                                       take   2
## 18090                                                        get   2
## 18091                                                       take   2
## 18092                                                       walk   2
## 18093                                                     factor   2
## 18094                                                         im   2
## 18095                                                       just   2
## 18096                                                     really   2
## 18097                                                      world   2
## 18098                                                        wax   2
## 18099                                                        get   2
## 18100                                                       just   2
## 18101                                                        now   2
## 18102                                                        one   2
## 18103                                                        pat   2
## 18104                                                     people   2
## 18105                                                     philly   2
## 18106                                                      thing   2
## 18107                                                    tourist   2
## 18108                                                      wasnt   2
## 18109                                                        wiz   2
## 18110                                                       good   2
## 18111                                                        one   2
## 18112                                                       crap   2
## 18113                                                    signage   2
## 18114                                                      speak   2
## 18115                                                         es   2
## 18116                                                        bad   2
## 18117                                                      begin   2
## 18118                                                        eve   2
## 18119                                                    however   2
## 18120                                                       last   2
## 18121                                                       live   2
## 18122                                                       make   2
## 18123                                                     really   2
## 18124                                                     simply   2
## 18125                                                        try   2
## 18126                                                       year   2
## 18127                                                        get   2
## 18128                                                       move   2
## 18129                                                      order   2
## 18130                                                    account   2
## 18131                                                        ask   2
## 18132                                                     decide   2
## 18133                                                      first   2
## 18134                                                       good   2
## 18135                                                        pat   2
## 18136                                                   complain   2
## 18137                                                    tourist   2
## 18138                                                        can   2
## 18139                                                cheesesteak   2
## 18140                                                       good   2
## 18141                                                       line   2
## 18142                                                       make   2
## 18143                                                        now   2
## 18144                                                     pretty   2
## 18145                                                       read   2
## 18146                                                     really   2
## 18147                                                     review   2
## 18148                                                      right   2
## 18149                                                      steak   2
## 18150                                                        try   2
## 18151                                                      worth   2
## 18152                                                      youre   2
## 18153                                                       find   2
## 18154                                                       oily   2
## 18155                                                       soft   2
## 18156                                                        try   2
## 18157                                                        day   2
## 18158                                                        ive   2
## 18159                                                       stop   2
## 18160                                                        try   2
## 18161                                                      gotta   2
## 18162                                                      steak   2
## 18163                                                 definitely   2
## 18164                                                      enjoy   2
## 18165                                                      happy   2
## 18166                                                       look   2
## 18167                                                      never   2
## 18168                                                      taste   2
## 18169                                                      thank   2
## 18170                                                       walk   2
## 18171                                                        man   2
## 18172                                                   actually   2
## 18173                                                        ask   2
## 18174                                                       chew   2
## 18175                                                      crave   2
## 18176                                                     either   2
## 18177                                                       good   2
## 18178                                                      hurry   2
## 18179                                                    italian   2
## 18180                                                      local   2
## 18181                                                       miss   2
## 18182                                                     starve   2
## 18183                                                      steal   2
## 18184                                                      still   2
## 18185                                                       take   2
## 18186                                                      taste   2
## 18187                                                        try   2
## 18188                                                      video   2
## 18189                                                       ever   2
## 18190                                                        one   2
## 18191                                                       read   2
## 18192                                                        try   2
## 18193                                                        old   2
## 18194                                                      place   2
## 18195                                                     cheese   2
## 18196                                                cheesesteak   2
## 18197                                                      genos   2
## 18198                                                      steak   2
## 18199                                                          3   1
## 18200                                                    anyways   1
## 18201                                                        ask   1
## 18202                                                    attempt   1
## 18203                                                   attitude   1
## 18204                                                       bite   1
## 18205                                                       book   1
## 18206                                                      bread   1
## 18207                                                       cash   1
## 18208                                                       come   1
## 18209                                                        day   1
## 18210                                             disappointment   1
## 18211                                                         do   1
## 18212                                                      fella   1
## 18213                                                        fry   1
## 18214                                                 generation   1
## 18215                                                      genos   1
## 18216                                                       idea   1
## 18217                                                 impression   1
## 18218                                                        ive   1
## 18219                                                       last   1
## 18220                                                      leave   1
## 18221                                                       love   1
## 18222                                                       must   1
## 18223                                                      order   1
## 18224                                                        pat   1
## 18225                                               philadelphia   1
## 18226                                                     philly   1
## 18227                                                       pipe   1
## 18228                                                     plenty   1
## 18229                                                      price   1
## 18230                                                    recover   1
## 18231                                                    reorder   1
## 18232                                                        say   1
## 18233                                                    specify   1
## 18234                                                       star   1
## 18235                                                     status   1
## 18236                                                    thought   1
## 18237                                                        try   1
## 18238                                                  ubertacky   1
## 18239                                                      visit   1
## 18240                                                      worth   1
## 18241                                                      among   1
## 18242                                                        ask   1
## 18243                                                     barely   1
## 18244                                                    besides   1
## 18245                                             disappointment   1
## 18246                                                   favorite   1
## 18247                                                        fry   1
## 18248                                                         im   1
## 18249                                                 impression   1
## 18250                                                        leg   1
## 18251                                                   mercedes   1
## 18252                                                    perhaps   1
## 18253                                                       time   1
## 18254                                                      visit   1
## 18255                                               dalessandros   1
## 18256                                             disappointment   1
## 18257                                                 generation   1
## 18258                                                       july   1
## 18259                                                       lady   1
## 18260                                                        one   1
## 18261                                                       time   1
## 18262                                                        let   1
## 18263                                                       last   1
## 18264                                                       bike   1
## 18265                                                    surgery   1
## 18266                                                      jamal   1
## 18267                                                      start   1
## 18268                                                        eat   1
## 18269                                                     answer   1
## 18270                                                       come   1
## 18271                                                 compensate   1
## 18272                                                confidently   1
## 18273                                                     direct   1
## 18274                                                 experience   1
## 18275                                                     fairly   1
## 18276                                                     figure   1
## 18277                                                       grab   1
## 18278                                                       hand   1
## 18279                                                        hit   1
## 18280                                                     invite   1
## 18281                                                       keep   1
## 18282                                                       move   1
## 18283                                                        one   1
## 18284                                                       read   1
## 18285                                                     really   1
## 18286                                                        see   1
## 18287                                                      sense   1
## 18288                                                       sink   1
## 18289                                                        sit   1
## 18290                                                      speak   1
## 18291                                                       star   1
## 18292                                                    witness   1
## 18293                                                        bad   1
## 18294                                                       cook   1
## 18295                                                       unto   1
## 18296                                                        buy   1
## 18297                                                      place   1
## 18298                                                    lighten   1
## 18299                                                     french   1
## 18300                                                       rude   1
## 18301                                                      staff   1
## 18302                                                 unfriendly   1
## 18303                                                   sandwich   1
## 18304                                                        ask   1
## 18305                                             disappointment   1
## 18306                                                       fave   1
## 18307                                                   favorite   1
## 18308                                                       feel   1
## 18309                                                       joke   1
## 18310                                                  legendary   1
## 18311                                                        meh   1
## 18312                                                       mess   1
## 18313                                                 perfection   1
## 18314                                                        top   1
## 18315                                                    tourist   1
## 18316                                                      waste   1
## 18317                                                    abysmal   1
## 18318                                                      amaze   1
## 18319                                                       blow   1
## 18320                                                      cheez   1
## 18321                                                     choose   1
## 18322                                                       come   1
## 18323                                                  complaint   1
## 18324                                                    correct   1
## 18325                                                      crazy   1
## 18326                                                    crunchy   1
## 18327                                                    disgust   1
## 18328                                                   dreadful   1
## 18329                                                     filthy   1
## 18330                                                      first   1
## 18331                                                 flavorless   1
## 18332                                                       good   1
## 18333                                                   heavenly   1
## 18334                                                 horrendous   1
## 18335                                                   horrible   1
## 18336                                                     insane   1
## 18337                                                        one   1
## 18338                                                  overwhelm   1
## 18339                                                 phenomenal   1
## 18340                                                     reason   1
## 18341                                                    remorse   1
## 18342                                                 ridiculous   1
## 18343                                                      right   1
## 18344                                                 seasoningi   1
## 18345                                                   shouldnt   1
## 18346                                                        sit   1
## 18347                                                       suck   1
## 18348                                                      taste   1
## 18349                                                       tour   1
## 18350                                                 underwhelm   1
## 18351                                                       vile   1
## 18352                                                       wait   1
## 18353                                                      waste   1
## 18354                                                     weight   1
## 18355                                                     cheese   1
## 18356                                                 experience   1
## 18357                                                     flavor   1
## 18358                                                      grill   1
## 18359                                                      juice   1
## 18360                                                      onion   1
## 18361                                                    politic   1
## 18362                                                       ugly   1
## 18363                                                  delicious   1
## 18364                                                      jamal   1
## 18365                                                        cop   1
## 18366                                                   december   1
## 18367                                                      didnt   1
## 18368                                                      first   1
## 18369                                                       join   1
## 18370                                                     theres   1
## 18371                                                      jamal   1
## 18372                                                     cheese   1
## 18373                                                 patriotism   1
## 18374                                                       even   1
## 18375                                                   customer   1
## 18376                                                       rest   1
## 18377                                                       rude   1
## 18378                                                  seriously   1
## 18379                                                      never   1
## 18380                                                       rude   1
## 18381                                                   shouldnt   1
## 18382                                                       want   1
## 18383                                                    attempt   1
## 18384                                                        can   1
## 18385                                                       come   1
## 18386                                                         do   1
## 18387                                                    eastern   1
## 18388                                                      heavy   1
## 18389                                                information   1
## 18390                                                       like   1
## 18391                                                      limit   1
## 18392                                                   pleasant   1
## 18393                                                       turn   1
## 18394                                                        get   1
## 18395                                                          h   1
## 18396                                                       just   1
## 18397                                                       life   1
## 18398                                                      amuse   1
## 18399                                                   anything   1
## 18400                                                 atmosphere   1
## 18401                                                      bread   1
## 18402                                                    embrace   1
## 18403                                                       fact   1
## 18404                                                       grab   1
## 18405                                                        lil   1
## 18406                                                      never   1
## 18407                                                    plastic   1
## 18408                                                     reason   1
## 18409                                                        say   1
## 18410                                                      amaze   1
## 18411                                                     amount   1
## 18412                                                     anyhow   1
## 18413                                                    couldnt   1
## 18414                                                     excuse   1
## 18415                                                         go   1
## 18416                                                         id   1
## 18417                                                    subject   1
## 18418                                                       wake   1
## 18419                                                   anywhere   1
## 18420                                                   bathroom   1
## 18421                                                     street   1
## 18422                                              vinegarchilis   1
## 18423                                                    section   1
## 18424                                                       head   1
## 18425                                                        try   1
## 18426                                                       also   1
## 18427                                                   customer   1
## 18428                                                       want   1
## 18429                                                      genos   1
## 18430                                                     little   1
## 18431                                                      river   1
## 18432                                                 xenophobia   1
## 18433                                                      order   1
## 18434                                                         bf   1
## 18435                                                       food   1
## 18436                                                     friend   1
## 18437                                                        lot   1
## 18438                                                      other   1
## 18439                                                    several   1
## 18440                                                       sign   1
## 18441                                                         tv   1
## 18442                                                    website   1
## 18443                                                       year   1
## 18444                                                      bring   1
## 18445                                                        buy   1
## 18446                                                        can   1
## 18447                                                       just   1
## 18448                                                  memorable   1
## 18449                                                  situation   1
## 18450                                                     degree   1
## 18451                                                  direction   1
## 18452                                                        odd   1
## 18453                                                   continue   1
## 18454                                                      mumia   1
## 18455                                                  perfectly   1
## 18456                                                      steal   1
## 18457                                                  embarrass   1
## 18458                                                   murderer   1
## 18459                                                       tend   1
## 18460                                                        try   1
## 18461                                                   tarjetas   1
## 18462                                                       foot   1
## 18463                                                         go   1
## 18464                                                      night   1
## 18465                                                      right   1
## 18466                                                    success   1
## 18467                                                    tourist   1
## 18468                                                  something   1
## 18469                                                     cheese   1
## 18470                                                      right   1
## 18471                                                     sister   1
## 18472                                                  authentic   1
## 18473                                                       park   1
## 18474                                                   probably   1
## 18475                                                       rest   1
## 18476                                                      wasnt   1
## 18477                                                      birch   1
## 18478                                       alwaystunedtothefood   1
## 18479                                                      board   1
## 18480                                                     cheese   1
## 18481                                                     corner   1
## 18482                                                     decide   1
## 18483                                                  eachother   1
## 18484                                                    finally   1
## 18485                                                    genosgo   1
## 18486                                                  genuinely   1
## 18487                                                        get   1
## 18488                                                      globe   1
## 18489                                                         go   1
## 18490                                                       hype   1
## 18491                                               intersection   1
## 18492                                                     little   1
## 18493                                                   location   1
## 18494                                                       main   1
## 18495                                                        may   1
## 18496                                                      order   1
## 18497                                                   original   1
## 18498                                                     philly   1
## 18499                                                      place   1
## 18500                                                      right   1
## 18501                                                      rival   1
## 18502                                                       room   1
## 18503                                                          s   1
## 18504                                                    someone   1
## 18505                                                         st   1
## 18506                                                      steet   1
## 18507                                                 streetmuch   1
## 18508                                                 streetpats   1
## 18509                                                   triangle   1
## 18510                                                      unite   1
## 18511                                                         us   1
## 18512                                                       walk   1
## 18513                                                      world   1
## 18514                                                      youll   1
## 18515                                                      aside   1
## 18516                                                      didnt   1
## 18517                                                   honestly   1
## 18518                                                      human   1
## 18519                                                       part   1
## 18520                                               philanthropy   1
## 18521                                                   probably   1
## 18522                                                     snotty   1
## 18523                                                       ugly   1
## 18524                                                        way   1
## 18525                                                     decade   1
## 18526                                                 excitement   1
## 18527                                                       give   1
## 18528                                                       like   1
## 18529                                                       need   1
## 18530                                                     philly   1
## 18531                                                       tend   1
## 18532                                                   military   1
## 18533                                                     orange   1
## 18534                                                     social   1
## 18535                                                 manipulate   1
## 18536                                                 playground   1
## 18537                                                      staff   1
## 18538                                                  authentic   1
## 18539                                                       bite   1
## 18540                                               cheesesteaks   1
## 18541                                         cheesesteaksimilar   1
## 18542                                               circumstance   1
## 18543                                                consumption   1
## 18544                                              establishment   1
## 18545                                                       meat   1
## 18546                                                     philly   1
## 18547                                                      price   1
## 18548                                                    product   1
## 18549                                                    quality   1
## 18550                                                      rocky   1
## 18551                                                   sandwich   1
## 18552                                                       shit   1
## 18553                                                     single   1
## 18554                                                       size   1
## 18555                                                transaction   1
## 18556                                                      think   1
## 18557                                                        add   1
## 18558                                                      amuse   1
## 18559                                                     appear   1
## 18560                                                        atm   1
## 18561                                                       bite   1
## 18562                                                      boast   1
## 18563                                                      bread   1
## 18564                                                       bump   1
## 18565                                                       cant   1
## 18566                                                       care   1
## 18567                                                      carry   1
## 18568                                                     cheese   1
## 18569                                                cheesesteak   1
## 18570                                                   complain   1
## 18571                                                    conduct   1
## 18572                                                consciously   1
## 18573                                               consistently   1
## 18574                                                       copy   1
## 18575                                                        cut   1
## 18576                                                  delicious   1
## 18577                                                       deny   1
## 18578                                                    disgust   1
## 18579                                                   dissuade   1
## 18580                                                         do   1
## 18581                                                       drip   1
## 18582                                                     edible   1
## 18583                                                      equal   1
## 18584                                                       even   1
## 18585                                                     expect   1
## 18586                                                  expensive   1
## 18587                                                      favor   1
## 18588                                                     finish   1
## 18589                                                      force   1
## 18590                                                    freedom   1
## 18591                                                   frequent   1
## 18592                                                     friend   1
## 18593                                                        fry   1
## 18594                                                     happen   1
## 18595                                                       hole   1
## 18596                                                        hot   1
## 18597                                                    however   1
## 18598                                                     hungry   1
## 18599                                                         im   1
## 18600                                                    inflame   1
## 18601                                                     inform   1
## 18602                                                       isnt   1
## 18603                                                       kind   1
## 18604                                                       leak   1
## 18605                                                       life   1
## 18606                                                     listen   1
## 18607                                                     little   1
## 18608                                                       live   1
## 18609                                                       love   1
## 18610                                                   maintain   1
## 18611                                                      maybe   1
## 18612                                                      moist   1
## 18613                                                     nearly   1
## 18614                                                       need   1
## 18615                                                       nice   1
## 18616                                                       numb   1
## 18617                                                       open   1
## 18618                                                       part   1
## 18619                                                        put   1
## 18620                                                    putting   1
## 18621                                                       rank   1
## 18622                                                     rather   1
## 18623                                                       real   1
## 18624                                                     really   1
## 18625                                                    refrain   1
## 18626                                                     return   1
## 18627                                                       roll   1
## 18628                                                       rude   1
## 18629                                                  sandwhich   1
## 18630                                                   sandwich   1
## 18631                                                        see   1
## 18632                                                       seem   1
## 18633                                                      shock   1
## 18634                                                        sit   1
## 18635                                                      slice   1
## 18636                                                      smile   1
## 18637                                                    someone   1
## 18638                                                      soooo   1
## 18639                                                      steak   1
## 18640                                                       suck   1
## 18641                                                   suprised   1
## 18642                                                  surpirsed   1
## 18643                                                      swing   1
## 18644                                                     tender   1
## 18645                                                      think   1
## 18646                                                       wait   1
## 18647                                                       warm   1
## 18648                                                      water   1
## 18649                                                     werein   1
## 18650                                                        wet   1
## 18651                                                   wildwood   1
## 18652                                                       wrap   1
## 18653                                                      write   1
## 18654                                                        see   1
## 18655                                                     thatll   1
## 18656                                                  compliant   1
## 18657                                                        man   1
## 18658                                                   richmans   1
## 18659                                                    express   1
## 18660                                                  rebellion   1
## 18661                                                 absolutely   1
## 18662                                                 additional   1
## 18663                                                    amenity   1
## 18664                                             arteryclogging   1
## 18665                                                  available   1
## 18666                                                      bring   1
## 18667                                                        cab   1
## 18668                                                       card   1
## 18669                                                  character   1
## 18670                                                     cheese   1
## 18671                                               cheesesteaks   1
## 18672                                                 cheessteak   1
## 18673                                                     cherry   1
## 18674                                                       cold   1
## 18675                                               considerable   1
## 18676                                                   coworker   1
## 18677                                                     crappy   1
## 18678                                                      crapy   1
## 18679                                                  dimension   1
## 18680                                                    dryness   1
## 18681                                                     enough   1
## 18682                                                  extremely   1
## 18683                                                       fact   1
## 18684                                                        far   1
## 18685                                                   feedback   1
## 18686                                                      fiery   1
## 18687                                                flavorwrong   1
## 18688                                                        fun   1
## 18689                                                      great   1
## 18690                                                      hasnt   1
## 18691                                                       heat   1
## 18692                                                  heaviness   1
## 18693                                                   homemade   1
## 18694                                                   hotsauce   1
## 18695                                                         im   1
## 18696                                                 ingredient   1
## 18697                                                 inyourface   1
## 18698                                                      johns   1
## 18699                                                     legend   1
## 18700                                                      limit   1
## 18701                                                       list   1
## 18702                                                       long   1
## 18703                                                     market   1
## 18704                                                       mayo   1
## 18705                                                   moisture   1
## 18706                                                       must   1
## 18707                                                       name   1
## 18708                                                       neon   1
## 18709                                                       nice   1
## 18710                                                    nothing   1
## 18711                                                    overall   1
## 18712                                                      photo   1
## 18713                                                     please   1
## 18714                                                  provolone   1
## 18715                                          provoloneamerican   1
## 18716                                                        red   1
## 18717                                                     relish   1
## 18718                                                      slice   1
## 18719                                                  something   1
## 18720                                                  sparingly   1
## 18721                                                       stop   1
## 18722                                                      taste   1
## 18723                                                        tax   1
## 18724                                                    texture   1
## 18725                                                      thing   1
## 18726                                                      toast   1
## 18727                                                   together   1
## 18728                                                        ton   1
## 18729                                                        top   1
## 18730                                                      touch   1
## 18731                                                       trip   1
## 18732                                                       upon   1
## 18733                                                        way   1
## 18734                                                       whiz   1
## 18735                                                        wiz   1
## 18736                                                       cant   1
## 18737                                                       keep   1
## 18738                                                     really   1
## 18739                                                    quality   1
## 18740                                                     dollar   1
## 18741                                                        get   1
## 18742                                                   honestly   1
## 18743                                                        hot   1
## 18744                                                        low   1
## 18745                                                       meat   1
## 18746                                                       okay   1
## 18747                                                      order   1
## 18748                                                    require   1
## 18749                                                      staff   1
## 18750                                                      steak   1
## 18751                                                     theyre   1
## 18752                                                     though   1
## 18753                                                        can   1
## 18754                                                       cost   1
## 18755                                                       next   1
## 18756                                                      sauce   1
## 18757                                                  smokiness   1
## 18758                                                   customer   1
## 18759                                                         do   1
## 18760                                                      genos   1
## 18761                                                      maybe   1
## 18762                                                      staff   1
## 18763                                                        ill   1
## 18764                                                       make   1
## 18765                                                       like   1
## 18766                                                   mushroom   1
## 18767                                                     couple   1
## 18768                                                     fellow   1
## 18769                                                    service   1
## 18770                                                       sign   1
## 18771                                                serviceable   1
## 18772                                                       para   1
## 18773                                                    locaton   1
## 18774                                                       park   1
## 18775                                                        pat   1
## 18776                                                residential   1
## 18777                                                   restroom   1
## 18778                                                     assure   1
## 18779                                                      youre   1
## 18780                                                      genos   1
## 18781                                                    picture   1
## 18782                                                      thats   1
## 18783                                                cheesesteak   1
## 18784                                                    despite   1
## 18785                                                      didnt   1
## 18786                                                     direct   1
## 18787                                                         do   1
## 18788                                                       draw   1
## 18789                                                      enjoy   1
## 18790                                                     entire   1
## 18791                                                       feel   1
## 18792                                                        fry   1
## 18793                                                      genos   1
## 18794                                                       good   1
## 18795                                                       grow   1
## 18796                                                       kind   1
## 18797                                                       less   1
## 18798                                                       meat   1
## 18799                                                    neither   1
## 18800                                                   outright   1
## 18801                                                    overall   1
## 18802                                                      photo   1
## 18803                                                       pick   1
## 18804                                                     purely   1
## 18805                                                        put   1
## 18806                                                    service   1
## 18807                                                      split   1
## 18808                                                      still   1
## 18809                                                      super   1
## 18810                                                      sweat   1
## 18811                                                       take   1
## 18812                                                      thing   1
## 18813                                                     though   1
## 18814                                                    tourist   1
## 18815                                                       yell   1
## 18816                                                      youre   1
## 18817                                                        que   1
## 18818                                                       long   1
## 18819                                                       numb   1
## 18820                                                      order   1
## 18821                                                     prefer   1
## 18822                                                     archie   1
## 18823                                                    outside   1
## 18824                                                      place   1
## 18825                                                       wall   1
## 18826                                                      child   1
## 18827                                                       ever   1
## 18828                                                       know   1
## 18829                                                      learn   1
## 18830                                                       time   1
## 18831                                                      staff   1
## 18832                                                       will   1
## 18833                                                      avoid   1
## 18834                                                        bat   1
## 18835                                                      genos   1
## 18836                                                        pat   1
## 18837                                                     reveal   1
## 18838                                                     sonnys   1
## 18839                                                          x   1
## 18840                                                     figure   1
## 18841                                                       find   1
## 18842                                                      never   1
## 18843                                                      order   1
## 18844                                                        pat   1
## 18845                                                       tell   1
## 18846                                                   adorable   1
## 18847                                                    another   1
## 18848                                                     around   1
## 18849                                                     arrive   1
## 18850                                                   campaign   1
## 18851                                                     corner   1
## 18852                                                     famous   1
## 18853                                                       game   1
## 18854                                                      genos   1
## 18855                                                     indoor   1
## 18856                                                      local   1
## 18857                                                        lol   1
## 18858                                                      major   1
## 18859                                                       make   1
## 18860                                                        one   1
## 18861                                                        pat   1
## 18862                                                    product   1
## 18863                                                      quick   1
## 18864                                                        sht   1
## 18865                                                       fire   1
## 18866                                                    develop   1
## 18867                                                       meat   1
## 18868                                                 television   1
## 18869                                                     anyone   1
## 18870                                                      avoid   1
## 18871                                                      check   1
## 18872                                                      drive   1
## 18873                                                      every   1
## 18874                                                   everyone   1
## 18875                                                     friend   1
## 18876                                                      genos   1
## 18877                                                       nice   1
## 18878                                                        one   1
## 18879                                                    receive   1
## 18880                                                     recent   1
## 18881                                                        red   1
## 18882                                                    tourist   1
## 18883                                                        try   1
## 18884                                                      visit   1
## 18885                                                       want   1
## 18886                                                         go   1
## 18887                                                     anyone   1
## 18888                                                       cash   1
## 18889                                                     friend   1
## 18890                                                         go   1
## 18891                                                    ketchup   1
## 18892                                                        one   1
## 18893                                                      order   1
## 18894                                                    someone   1
## 18895                                                    tourist   1
## 18896                                                      genos   1
## 18897                                               embarassment   1
## 18898                                                  recognize   1
## 18899                                                     remind   1
## 18900                                                     please   1
## 18901                                              pleasingtheir   1
## 18902                                                 unpleasing   1
## 18903                                                         do   1
## 18904                                                    mention   1
## 18905                                                      worth   1
## 18906                                               cheesesteaks   1
## 18907                                                     actual   1
## 18908                                                   business   1
## 18909                                                    opinion   1
## 18910                                                       rate   1
## 18911                                                 thankfully   1
## 18912                                                        lot   1
## 18913                                                     remake   1
## 18914                                                       cash   1
## 18915                                                     defend   1
## 18916                                                       meat   1
## 18917                                                      never   1
## 18918                                                        son   1
## 18919                                                       love   1
## 18920                                                       wont   1
## 18921                                              antiimmigrant   1
## 18922                                                     cheese   1
## 18923                                                     cheese   1
## 18924                                                        eat   1
## 18925                                                       long   1
## 18926                                                     really   1
## 18927                                                  recognize   1
## 18928                                                      thats   1
## 18929                                                     werent   1
## 18930                                                        guy   1
## 18931                                                       take   1
## 18932                                                       find   1
## 18933                                                      first   1
## 18934                                                      flyer   1
## 18935                                                         go   1
## 18936                                                      heavy   1
## 18937                                                    husband   1
## 18938                                                       just   1
## 18939                                                       line   1
## 18940                                                       long   1
## 18941                                                      lunch   1
## 18942                                                       make   1
## 18943                                                    neither   1
## 18944                                                      never   1
## 18945                                                       nice   1
## 18946                                                        now   1
## 18947                                                      order   1
## 18948                                                       park   1
## 18949                                                         pm   1
## 18950                                                     pretty   1
## 18951                                                   saturday   1
## 18952                                                      small   1
## 18953                                                     summer   1
## 18954                                                        try   1
## 18955                                                       wait   1
## 18956                                                      youre   1
## 18957                                                   whenever   1
## 18958                                                    suppose   1
## 18959                                                        eat   1
## 18960                                                       also   1
## 18961                                                   complain   1
## 18962                                                        fck   1
## 18963                                                       good   1
## 18964                                                      hence   1
## 18965                                                       keep   1
## 18966                                                        may   1
## 18967                                                   needless   1
## 18968                                                    several   1
## 18969                                                      taste   1
## 18970                                                     though   1
## 18971                                                        tmi   1
## 18972                                                        fun   1
## 18973                                                         ur   1
## 18974                                                      spend   1
## 18975                                                     friend   1
## 18976                                                        ago   1
## 18977                                                     beyond   1
## 18978                                                      dirty   1
## 18979                                                       time   1
## 18980                                                       wont   1
## 18981                                                       year   1
## 18982                                                     debate   1
## 18983                                                    country   1
## 18984                                                cheesesteak   1
## 18985                                                       food   1
## 18986                                                        try   1
## 18987                                                     debate   1
## 18988                                                       deal   1
## 18989                                                         do   1
## 18990                                                environment   1
## 18991                                                  obnoxious   1
## 18992                                           pseudoxenophobic   1
## 18993                                                     racism   1
## 18994                                                      thank   1
## 18995                                                 absolutely   1
## 18996                                                    airline   1
## 18997                                                     always   1
## 18998                                                      avoid   1
## 18999                                                     become   1
## 19000                                                    brother   1
## 19001                                                      buddy   1
## 19002                                                        can   1
## 19003                                                       cant   1
## 19004                                                     cheese   1
## 19005                                                cheesesteak   1
## 19006                                                 completely   1
## 19007                                                   coworker   1
## 19008                                                     decide   1
## 19009                                                      didnt   1
## 19010                                                         do   1
## 19011                                                   employee   1
## 19012                                                 firerescue   1
## 19013                                                        fry   1
## 19014                                                      genos   1
## 19015                                                  genuinely   1
## 19016                                                       good   1
## 19017                                                       hear   1
## 19018                                                    husband   1
## 19019                                                       idea   1
## 19020                                                       just   1
## 19021                                                       king   1
## 19022                                                       know   1
## 19023                                                        may   1
## 19024                                                      maybe   1
## 19025                                                   needless   1
## 19026                                                      never   1
## 19027                                                        new   1
## 19028                                                      owner   1
## 19029                                                     philly   1
## 19030                                                   probably   1
## 19031                                                       real   1
## 19032                                                    require   1
## 19033                                                      right   1
## 19034                                                  something   1
## 19035                                                     strike   1
## 19036                                                      super   1
## 19037                                                       take   1
## 19038                                                       talk   1
## 19039                                                      thing   1
## 19040                                                       town   1
## 19041                                                       trip   1
## 19042                                                    venture   1
## 19043                                                      wasnt   1
## 19044                                                     worker   1
## 19045                                                       zero   1
## 19046                                                        bad   1
## 19047                                                       bite   1
## 19048                                                        buy   1
## 19049                                                        can   1
## 19050                                                     cheese   1
## 19051                                                cheesesteak   1
## 19052                                                   daughter   1
## 19053                                                       dine   1
## 19054                                                      enjoy   1
## 19055                                                       ever   1
## 19056                                                      every   1
## 19057                                                   everyone   1
## 19058                                                        fry   1
## 19059                                                        get   1
## 19060                                                      ginos   1
## 19061                                                         go   1
## 19062                                                      great   1
## 19063                                                  immigrate   1
## 19064                                                       know   1
## 19065                                                       line   1
## 19066                                                        lot   1
## 19067                                                       make   1
## 19068                                                      marry   1
## 19069                                                       meat   1
## 19070                                                       move   1
## 19071                                                       need   1
## 19072                                                      order   1
## 19073                                                       park   1
## 19074                                                      place   1
## 19075                                                    politic   1
## 19076                                                      quite   1
## 19077                                                   sandwich   1
## 19078                                                      still   1
## 19079                                                          t   1
## 19080                                                       take   1
## 19081                                                      thick   1
## 19082                                                     though   1
## 19083                                                       true   1
## 19084                                                unsatisfied   1
## 19085                                                     ventos   1
## 19086                                                          w   1
## 19087                                                       walk   1
## 19088                                                    college   1
## 19089                                                     famous   1
## 19090                                                      first   1
## 19091                                                       good   1
## 19092                                                       heck   1
## 19093                                                        yes   1
## 19094                                                         do   1
## 19095                                                       find   1
## 19096                                                      genos   1
## 19097                                                      learn   1
## 19098                                                      order   1
## 19099                                                      place   1
## 19100                                                    pretend   1
## 19101                                                    ranking   1
## 19102                                                       read   1
## 19103                                                        say   1
## 19104                                                 stereotype   1
## 19105                                                       talk   1
## 19106                                                    tourist   1
## 19107                                                       turn   1
## 19108                                                         us   1
## 19109                                                       warn   1
## 19110                                                      bread   1
## 19111                                                     sister   1
## 19112                                                        now   1
## 19113                                                       neon   1
## 19114                                                      start   1
## 19115                                                     behind   1
## 19116                                                    obvious   1
## 19117                                                        own   1
## 19118                                                      owner   1
## 19119                                                    couldnt   1
## 19120                                                       cant   1
## 19121                                                        guy   1
## 19122                                                    digress   1
## 19123                                                        bet   1
## 19124                                                        pat   1
## 19125                                                     theres   1
## 19126                                                      wasnt   1
## 19127                                                      think   1
## 19128                                                     around   1
## 19129                                                      break   1
## 19130                                                     either   1
## 19131                                                       even   1
## 19132                                                     feelin   1
## 19133                                                      genos   1
## 19134                                                      gonna   1
## 19135                                                       long   1
## 19136                                                        mad   1
## 19137                                                       much   1
## 19138                                                  political   1
## 19139                                                     puttin   1
## 19140                                                      steak   1
## 19141                                                      worth   1
## 19142                                                       also   1
## 19143                                                    clearly   1
## 19144                                                  condition   1
## 19145                                                       face   1
## 19146                                                      force   1
## 19147                                                       king   1
## 19148                                                     manage   1
## 19149                                                    rivalry   1
## 19150                                                     scream   1
## 19151                                                      thick   1
## 19152                                                         go   1
## 19153                                                    tourist   1
## 19154                                                   stubborn   1
## 19155                                                        bad   1
## 19156                                                      bread   1
## 19157                                                        can   1
## 19158                                                      catch   1
## 19159                                                cheesesteak   1
## 19160                                                       come   1
## 19161                                                         do   1
## 19162                                                     doesnt   1
## 19163                                                      drive   1
## 19164                                                       fast   1
## 19165                                                      final   1
## 19166                                                       give   1
## 19167                                                      gross   1
## 19168                                                       head   1
## 19169                                                      hotel   1
## 19170                                                       hour   1
## 19171                                                       know   1
## 19172                                                      maybe   1
## 19173                                                          p   1
## 19174                                                     philly   1
## 19175                                                      right   1
## 19176                                                      serve   1
## 19177                                                      since   1
## 19178                                                       stay   1
## 19179                                                       sure   1
## 19180                                                      think   1
## 19181                                                       wife   1
## 19182                                                    mistake   1
## 19183                                                      block   1
## 19184                                                     cheese   1
## 19185                                                      chink   1
## 19186                                                        cop   1
## 19187                                                      genos   1
## 19188                                                     minute   1
## 19189                                                        old   1
## 19190                                                      onion   1
## 19191                                                        pat   1
## 19192                                                      stale   1
## 19193                                                      steak   1
## 19194                                                    tourist   1
## 19195                                                       uber   1
## 19196                                                     philly   1
## 19197                                                      carte   1
## 19198                                                          v   1
## 19199                                                 apparently   1
## 19200                                                      didnt   1
## 19201                                                        get   1
## 19202                                                        ill   1
## 19203                                                   sandwich   1
## 19204                                                      throw   1
## 19205                                                    flannel   1
## 19206                                                     artery   1
## 19207                                                       cold   1
## 19208                                                       cool   1
## 19209                                                     famous   1
## 19210                                                    freedom   1
## 19211                                                     little   1
## 19212                                                      quite   1
## 19213                                                     rudely   1
## 19214                                                      three   1
## 19215                                                        lot   1
## 19216                                                  seriously   1
## 19217                                                     indoor   1
## 19218                                                       like   1
## 19219                                                        wed   1
## 19220                                                      youll   1
## 19221                                                    stomach   1
## 19222                                                       good   1
## 19223                                                        mmm   1
## 19224                                                        hey   1
## 19225                                                        pat   1
## 19226                                                     arrive   1
## 19227                                                     cardno   1
## 19228                                                   everyone   1
## 19229                                                      smile   1
## 19230                                                  potential   1
## 19231                                                     anyway   1
## 19232                                                     figure   1
## 19233                                                      flock   1
## 19234                                                       line   1
## 19235                                                      bland   1
## 19236                                                       hard   1
## 19237                                                     pricey   1
## 19238                                                       spin   1
## 19239                                                       good   1
## 19240                                                       make   1
## 19241                                                    traffic   1
## 19242                                                       feel   1
## 19243                                                       make   1
## 19244                                                       epic   1
## 19245                                                       kill   1
## 19246                                                        pat   1
## 19247                                                    iverson   1
## 19248                                                     philly   1
## 19249                                                     though   1
## 19250                                                      phwww   1
## 19251                                                  something   1
## 19252                                                   employee   1
## 19253                                                   feasible   1
## 19254                                                     refuse   1
## 19255                                                    totally   1
## 19256                                                      place   1
## 19257                                                 singlelane   1
## 19258                                                       okay   1
## 19259                                                     choose   1
## 19260                                                 experience   1
## 19261                                                      drink   1
## 19262                                                       meat   1
## 19263                                                      steak   1
## 19264                                                     bright   1
## 19265                                                        add   1
## 19266                                                   anywhere   1
## 19267                                                      bring   1
## 19268                                                cheesesteak   1
## 19269                                                   continue   1
## 19270                                                   everyone   1
## 19271                                                       give   1
## 19272                                                       head   1
## 19273                                                         im   1
## 19274                                                       just   1
## 19275                                                      leave   1
## 19276                                                   longhaul   1
## 19277                                                      order   1
## 19278                                                      other   1
## 19279                                                       plus   1
## 19280                                                        see   1
## 19281                                                      serve   1
## 19282                                                        way   1
## 19283                                                    yelpers   1
## 19284                                                       fill   1
## 19285                                                    flicker   1
## 19286                                                      steak   1
## 19287                                                      mater   1
## 19288                                                     dollar   1
## 19289                                                          3   1
## 19290                                                      amaze   1
## 19291                                                     around   1
## 19292                                                       bite   1
## 19293                                                      break   1
## 19294                                                       buck   1
## 19295                                                caramelized   1
## 19296                                                     change   1
## 19297                                                       cold   1
## 19298                                                  comically   1
## 19299                                                   consider   1
## 19300                                                       copy   1
## 19301                                                       damn   1
## 19302                                                   daylight   1
## 19303                                                     decide   1
## 19304                                                      didnt   1
## 19305                                                         do   1
## 19306                                                     dollar   1
## 19307                                                     enough   1
## 19308                                                      every   1
## 19309                                                      exact   1
## 19310                                                    exactly   1
## 19311                                                        fee   1
## 19312                                                     flavor   1
## 19313                                                       food   1
## 19314                                                     forget   1
## 19315                                                      fresh   1
## 19316                                                       full   1
## 19317                                                         go   1
## 19318                                                       half   1
## 19319                                                        hit   1
## 19320                                                       hour   1
## 19321                                                  identical   1
## 19322                                                immediately   1
## 19323                                                  important   1
## 19324                                                   inedible   1
## 19325                                                  invisible   1
## 19326                                                       just   1
## 19327                                                       long   1
## 19328                                                        low   1
## 19329                                                       mile   1
## 19330                                                     mirror   1
## 19331                                                       miss   1
## 19332                                                       much   1
## 19333                                                       need   1
## 19334                                                        new   1
## 19335                                                nonexistent   1
## 19336                                                     option   1
## 19337                                                       past   1
## 19338                                                     pepper   1
## 19339                                               photoshopped   1
## 19340                                                  religious   1
## 19341                                                     relish   1
## 19342                                                reminiscent   1
## 19343                                                      right   1
## 19344                                                   sandwich   1
## 19345                                                     second   1
## 19346                                                      smile   1
## 19347                                                      stale   1
## 19348                                                  styrofoam   1
## 19349                                                      taste   1
## 19350                                                      tgree   1
## 19351                                                      think   1
## 19352                                                      throw   1
## 19353                                                       time   1
## 19354                                                     triple   1
## 19355                                                     twenty   1
## 19356                                                      twice   1
## 19357                                              uncomfortably   1
## 19358                                                       walk   1
## 19359                                                     watery   1
## 19360                                                       year   1
## 19361                                                    product   1
## 19362                                                  advantage   1
## 19363                                                       also   1
## 19364                                                   bathroom   1
## 19365                                                      bread   1
## 19366                                                     create   1
## 19367                                                      genos   1
## 19368                                                        get   1
## 19369                                                       give   1
## 19370                                                   ignorant   1
## 19371                                                lightweight   1
## 19372                                                       make   1
## 19373                                                      nasty   1
## 19374                                                     philly   1
## 19375                                                    quality   1
## 19376                                                  recommend   1
## 19377                                                   saturday   1
## 19378                                                    service   1
## 19379                                                      since   1
## 19380                                                      steak   1
## 19381                                                whizhowever   1
## 19382                                                       wont   1
## 19383                                                      worth   1
## 19384                                                     across   1
## 19385                                                        car   1
## 19386                                                       cash   1
## 19387                                                       ceil   1
## 19388                                                     cheese   1
## 19389                                                     choice   1
## 19390                                                competition   1
## 19391                                                       cute   1
## 19392                                                         do   1
## 19393                                                       east   1
## 19394                                                       fact   1
## 19395                                                       fast   1
## 19396                                                      fence   1
## 19397                                                      first   1
## 19398                                                     friend   1
## 19399                                                     gender   1
## 19400                                                     greasy   1
## 19401                                                       like   1
## 19402                                                      money   1
## 19403                                                        now   1
## 19404                                                      other   1
## 19405                                                    outside   1
## 19406                                                      place   1
## 19407                                                     pretty   1
## 19408                                                    quickly   1
## 19409                                                      rapid   1
## 19410                                                       road   1
## 19411                                                       roll   1
## 19412                                                   sandwich   1
## 19413                                                      stall   1
## 19414                                                     street   1
## 19415                                                         th   1
## 19416                                                      three   1
## 19417                                                       time   1
## 19418                                                       tiny   1
## 19419                                                        two   1
## 19420                                                    veggies   1
## 19421                                                          w   1
## 19422                                                       wall   1
## 19423                                                      whole   1
## 19424                                                        wit   1
## 19425                                                         do   1
## 19426                                                        one   1
## 19427                                                  attention   1
## 19428                                                      build   1
## 19429                                                   employee   1
## 19430                                                     family   1
## 19431                                                       food   1
## 19432                                                     people   1
## 19433                                                       soft   1
## 19434                                                    traffic   1
## 19435                                                      white   1
## 19436                                                      youll   1
## 19437                                                      avoid   1
## 19438                                                       back   1
## 19439                                                        bad   1
## 19440                                                      bland   1
## 19441                                                       cash   1
## 19442                                                      close   1
## 19443                                                    congeal   1
## 19444                                                       dead   1
## 19445                                                  dehydrate   1
## 19446                                                      drive   1
## 19447                                                  elaborate   1
## 19448                                                  embarrass   1
## 19449                                                   entrench   1
## 19450                                                     expect   1
## 19451                                                         ey   1
## 19452                                                   favorite   1
## 19453                                                      first   1
## 19454                                                       food   1
## 19455                                                       form   1
## 19456                                                       full   1
## 19457                                                        get   1
## 19458                                                       give   1
## 19459                                                       good   1
## 19460                                                       half   1
## 19461                                                    include   1
## 19462                                                     ithere   1
## 19463                                                       line   1
## 19464                                                    mention   1
## 19465                                                     nearby   1
## 19466                                                       neon   1
## 19467                                                       next   1
## 19468                                                      order   1
## 19469                                                         pa   1
## 19470                                                     people   1
## 19471                                                       plan   1
## 19472                                                        pre   1
## 19473                                                    premade   1
## 19474                                                    procure   1
## 19475                                                   purchase   1
## 19476                                                  reiterate   1
## 19477                                                        see   1
## 19478                                                        sit   1
## 19479                                                      speak   1
## 19480                                                      start   1
## 19481                                                        sub   1
## 19482                                                     thinly   1
## 19483                                                        tie   1
## 19484                                                       tony   1
## 19485                                                       wait   1
## 19486                                                       want   1
## 19487                                                        wiz   1
## 19488                                                       yelp   1
## 19489                                                      youre   1
## 19490                                                       fast   1
## 19491                                                    alright   1
## 19492                                                    awesome   1
## 19493                                                        bet   1
## 19494                                                      bread   1
## 19495                                                    capture   1
## 19496                                                     cheese   1
## 19497                                                cheesesteak   1
## 19498                                                    declare   1
## 19499                                                 definitely   1
## 19500                                                        ehh   1
## 19501                                                       even   1
## 19502                                                      genos   1
## 19503                                                importantly   1
## 19504                                                        ive   1
## 19505                                                       like   1
## 19506                                                       live   1
## 19507                                                    nothing   1
## 19508                                                       onto   1
## 19509                                                    palwere   1
## 19510                                                     review   1
## 19511                                                       sign   1
## 19512                                                      since   1
## 19513                                                      wasnt   1
## 19514                                                      worth   1
## 19515                                                   yessadly   1
## 19516                                                        yet   1
## 19517                                               expectedbest   1
## 19518                                                   johnnies   1
## 19519                                                      abuse   1
## 19520                                                      admit   1
## 19521                                                      agree   1
## 19522                                                     almost   1
## 19523                                                      amaze   1
## 19524                                                    another   1
## 19525                                                      apart   1
## 19526                                                     appear   1
## 19527                                                 appreciate   1
## 19528                                                       area   1
## 19529                                                      arent   1
## 19530                                                    article   1
## 19531                                                    assuage   1
## 19532                                                     assume   1
## 19533                                                       atms   1
## 19534                                                    attract   1
## 19535                                                    average   1
## 19536                                                      avoid   1
## 19537                                                      aware   1
## 19538                                                    awesome   1
## 19539                                                        bad   1
## 19540                                                    believe   1
## 19541                                                       bike   1
## 19542                                                      birch   1
## 19543                                                      bland   1
## 19544                                                       blow   1
## 19545                                                  boyfriend   1
## 19546                                                      bring   1
## 19547                                                    brother   1
## 19548                                                      bunch   1
## 19549                                                       call   1
## 19550                                                        can   1
## 19551                                                       cant   1
## 19552                                                    careful   1
## 19553                                                   cashonly   1
## 19554                                                     cheesy   1
## 19555                                                     choose   1
## 19556                                                       cmon   1
## 19557                                                   colorful   1
## 19558                                                       come   1
## 19559                                                    commend   1
## 19560                                                 comparison   1
## 19561                                                 completely   1
## 19562                                                    confuse   1
## 19563                                                    couldnt   1
## 19564                                                     crappy   1
## 19565                                                      crazy   1
## 19566                                                     credit   1
## 19567                                                       damn   1
## 19568                                                       deal   1
## 19569                                                      decor   1
## 19570                                                    delight   1
## 19571                                                     dinner   1
## 19572                                                     direct   1
## 19573                                                      dirty   1
## 19574                                                 disappoint   1
## 19575                                                   distinct   1
## 19576                                                     doesnt   1
## 19577                                                      doubt   1
## 19578                                                     easily   1
## 19579                                                    embroil   1
## 19580                                                  encourage   1
## 19581                                                      enjoy   1
## 19582                                                  enlighted   1
## 19583                                                   everyone   1
## 19584                                                     expect   1
## 19585                                                      extra   1
## 19586                                                  extremely   1
## 19587                                                     factor   1
## 19588                                                       fast   1
## 19589                                                      fleek   1
## 19590                                                    foreign   1
## 19591                                                     forget   1
## 19592                                                    fortune   1
## 19593                                                    freedom   1
## 19594                                                     french   1
## 19595                                                        fry   1
## 19596                                                      giant   1
## 19597                                                      gooey   1
## 19598                                                       grab   1
## 19599                                                       hard   1
## 19600                                                       hate   1
## 19601                                                       hell   1
## 19602                                                   horrible   1
## 19603                                                        hot   1
## 19604                                                       huge   1
## 19605                                                         im   1
## 19606                                                    impress   1
## 19607                                               inconvenient   1
## 19608                                                     indoor   1
## 19609                                                    inspire   1
## 19610                                                    instead   1
## 19611                                                  irritable   1
## 19612                                                       jims   1
## 19613                                                       keep   1
## 19614                                                       lady   1
## 19615                                                      large   1
## 19616                                                       last   1
## 19617                                                      learn   1
## 19618                                                      leave   1
## 19619                                                       list   1
## 19620                                                       live   1
## 19621                                                       look   1
## 19622                                                    luckily   1
## 19623                                                      major   1
## 19624                                                        may   1
## 19625                                                      meaty   1
## 19626                                                       move   1
## 19627                                                   mushroom   1
## 19628                                                         nd   1
## 19629                                                     nearly   1
## 19630                                                       need   1
## 19631                                                   negative   1
## 19632                                              neighbourhood   1
## 19633                                                        new   1
## 19634                                                       okay   1
## 19635                                                      onion   1
## 19636                                                    outside   1
## 19637                                                 overpriced   1
## 19638                                                      owner   1
## 19639                                                   parkings   1
## 19640                                                      patch   1
## 19641                                                     people   1
## 19642                                                     pepper   1
## 19643                                                    perfect   1
## 19644                                                       pile   1
## 19645                                                       plan   1
## 19646                                                  political   1
## 19647                                                       post   1
## 19648                                                     poster   1
## 19649                                                prominently   1
## 19650                                                    provide   1
## 19651                                                      quite   1
## 19652                                                     random   1
## 19653                                                       rate   1
## 19654                                                     rather   1
## 19655                                                        raw   1
## 19656                                                       real   1
## 19657                                                 relatively   1
## 19658                                                 restaurant   1
## 19659                                                 retrospect   1
## 19660                                                       ride   1
## 19661                                                      right   1
## 19662                                                      rival   1
## 19663                                                      roast   1
## 19664                                                       rude   1
## 19665                                                      screw   1
## 19666                                                       sell   1
## 19667                                                   semiwarm   1
## 19668                                                   separate   1
## 19669                                                      serve   1
## 19670                                                    service   1
## 19671                                                     shitty   1
## 19672                                                 shrinelike   1
## 19673                                                       side   1
## 19674                                                       sign   1
## 19675                                                     silver   1
## 19676                                                     sister   1
## 19677                                                      skimp   1
## 19678                                                     sloppy   1
## 19679                                                      small   1
## 19680                                                       sooo   1
## 19681                                                       spin   1
## 19682                                                      staff   1
## 19683                                                  staledont   1
## 19684                                                      steak   1
## 19685                                                      still   1
## 19686                                                        sub   1
## 19687                                                       suck   1
## 19688                                                    suggest   1
## 19689                                                       sure   1
## 19690                                                   surprise   1
## 19691                                                      table   1
## 19692                                                      tasty   1
## 19693                                                      taunt   1
## 19694                                                        tie   1
## 19695                                                        tip   1
## 19696                                                    totally   1
## 19697                                                 tremendous   1
## 19698                                                 understand   1
## 19699                                                         us   1
## 19700                                                    usually   1
## 19701                                                 vegetarian   1
## 19702                                                       want   1
## 19703                                                      water   1
## 19704                                                     werent   1
## 19705                                                      whats   1
## 19706                                                       whiz   1
## 19707                                                      whole   1
## 19708                                                       wish   1
## 19709                                                        wiz   1
## 19710                                                 xenophobic   1
## 19711                                      xenophobicracistwhich   1
## 19712                                                      youre   1
## 19713                                                       food   1
## 19714                                                  greasygod   1
## 19715                                                       bite   1
## 19716                                                       hill   1
## 19717                                                        two   1
## 19718                                                     campos   1
## 19719                                                  expensive   1
## 19720                                                      genos   1
## 19721                                                       good   1
## 19722                                                        hey   1
## 19723                                                        lot   1
## 19724                                                     nearby   1
## 19725                                                        pat   1
## 19726                                                     steves   1
## 19727                                                      order   1
## 19728                                                       like   1
## 19729                                                      admit   1
## 19730                                                       also   1
## 19731                                                     around   1
## 19732                                                 atmosphere   1
## 19733                                                       bite   1
## 19734                                                   business   1
## 19735                                                     cheese   1
## 19736                                                cheesesteak   1
## 19737                                               cheesesteaks   1
## 19738                                                      claim   1
## 19739                                                         do   1
## 19740                                                     drench   1
## 19741                                                       find   1
## 19742                                                     flashy   1
## 19743                                                        fun   1
## 19744                                                     highly   1
## 19745                                                         id   1
## 19746                                                     little   1
## 19747                                                       look   1
## 19748                                                       make   1
## 19749                                                necessarily   1
## 19750                                                   overrate   1
## 19751                                                     people   1
## 19752                                                     pretty   1
## 19753                                                      quick   1
## 19754                                                      quite   1
## 19755                                                       rank   1
## 19756                                                      ready   1
## 19757                                                    realize   1
## 19758                                                     regard   1
## 19759                                                        run   1
## 19760                                                   somewhat   1
## 19761                                                    suppose   1
## 19762                                                      taste   1
## 19763                                                    texture   1
## 19764                                                      token   1
## 19765                                                   truthful   1
## 19766                                                    usually   1
## 19767                                                       want   1
## 19768                                                       west   1
## 19769                                                       tone   1
## 19770                                                     charge   1
## 19771                                               cheesesteaks   1
## 19772                                                   mediocre   1
## 19773                                                      place   1
## 19774                                                         de   1
## 19775                                                        add   1
## 19776                                                      aglow   1
## 19777                                                      ahole   1
## 19778                                                     always   1
## 19779                                                     assume   1
## 19780                                                   attitude   1
## 19781                                                      bitch   1
## 19782                                                       busy   1
## 19783                                                       buzz   1
## 19784                                                       call   1
## 19785                                                      check   1
## 19786                                                      chewy   1
## 19787                                                       city   1
## 19788                                                       cold   1
## 19789                                                   consider   1
## 19790                                               consistently   1
## 19791                                                  courteous   1
## 19792                                                     crappy   1
## 19793                                                      crowd   1
## 19794                                                        cut   1
## 19795                                                     decent   1
## 19796                                                    deliver   1
## 19797                                             disappointment   1
## 19798                                                         do   1
## 19799                                                       drag   1
## 19800                                                  electrify   1
## 19801                                                    english   1
## 19802                                                       fall   1
## 19803                                                      fight   1
## 19804                                                     follow   1
## 19805                                                       food   1
## 19806                                                      fresh   1
## 19807                                                       full   1
## 19808                                                      genos   1
## 19809                                                     gladly   1
## 19810                                                      green   1
## 19811                                                      guard   1
## 19812                                                       hard   1
## 19813                                                       head   1
## 19814                                                        hit   1
## 19815                                                       huge   1
## 19816                                                       jims   1
## 19817                                                       just   1
## 19818                                                       less   1
## 19819                                                     looong   1
## 19820                                                       mean   1
## 19821                                                       meat   1
## 19822                                                     monkey   1
## 19823                                                       must   1
## 19824                                                       next   1
## 19825                                                       nice   1
## 19826                                                       numb   1
## 19827                                                        one   1
## 19828                                                       open   1
## 19829                                                   oversalt   1
## 19830                                                      owner   1
## 19831                                                  partially   1
## 19832                                                     people   1
## 19833                                                       pick   1
## 19834                                                       piss   1
## 19835                                                   pleasure   1
## 19836                                                       plus   1
## 19837                                                   probably   1
## 19838                                                      proud   1
## 19839                                                        put   1
## 19840                                                   question   1
## 19841                                                       rave   1
## 19842                                                  recommend   1
## 19843                                                   remember   1
## 19844                                                     reside   1
## 19845                                                      serve   1
## 19846                                                    service   1
## 19847                                                      short   1
## 19848                                                       soft   1
## 19849                                                      stand   1
## 19850                                                      steak   1
## 19851                                                    suggest   1
## 19852                                                      sunny   1
## 19853                                                       tear   1
## 19854                                                     theyve   1
## 19855                                                      thing   1
## 19856                                                    tourist   1
## 19857                                                        try   1
## 19858                                                       vote   1
## 19859                                                       walk   1
## 19860                                                    welcome   1
## 19861                                                        wiz   1
## 19862                                                      worth   1
## 19863                                                    network   1
## 19864                                                     jordon   1
## 19865                                                       hour   1
## 19866                                                     almost   1
## 19867                                                       also   1
## 19868                                                 atmosphere   1
## 19869                                                      build   1
## 19870                                                        can   1
## 19871                                                    cannoli   1
## 19872                                                 cheesecake   1
## 19873                                                    company   1
## 19874                                                       cool   1
## 19875                                                    couldnt   1
## 19876                                                     course   1
## 19877                                                     dinner   1
## 19878                                                     enough   1
## 19879                                                 everything   1
## 19880                                                     except   1
## 19881                                                     expect   1
## 19882                                                       four   1
## 19883                                                      genos   1
## 19884                                                       good   1
## 19885                                                        hot   1
## 19886                                                    however   1
## 19887                                                         im   1
## 19888                                                       line   1
## 19889                                                     little   1
## 19890                                                       long   1
## 19891                                                      moist   1
## 19892                                                      never   1
## 19893                                                        omg   1
## 19894                                                      owner   1
## 19895                                                    perfect   1
## 19896                                                     pretty   1
## 19897                                                   previous   1
## 19898                                                        pro   1
## 19899                                                 reputation   1
## 19900                                                        run   1
## 19901                                                       take   1
## 19902                                                      taste   1
## 19903                                                      thats   1
## 19904                                                     theyre   1
## 19905                                                      thing   1
## 19906                                                       time   1
## 19907                                                    totally   1
## 19908                                                    towners   1
## 19909                                                       turn   1
## 19910                                                untouchable   1
## 19911                                                     wonder   1
## 19912                                                      worth   1
## 19913                                                    wouldnt   1
## 19914                                                      young   1
## 19915                                                     cheese   1
## 19916                                                      clean   1
## 19917                                                      fresh   1
## 19918                                                  memorable   1
## 19919                                                       city   1
## 19920                                                       also   1
## 19921                                                      apart   1
## 19922                                                       bite   1
## 19923                                                     bright   1
## 19924                                                      charm   1
## 19925                                                 commercial   1
## 19926                                                 completely   1
## 19927                                                       cool   1
## 19928                                                     course   1
## 19929                                                      exist   1
## 19930                                                  fantastic   1
## 19931                                                       fast   1
## 19932                                                     flashy   1
## 19933                                                      focus   1
## 19934                                                       food   1
## 19935                                                      genos   1
## 19936                                                       good   1
## 19937                                                   humidity   1
## 19938                                                       just   1
## 19939                                                       lack   1
## 19940                                                 personally   1
## 19941                                                         ps   1
## 19942                                                       seem   1
## 19943                                                      south   1
## 19944                                                      trust   1
## 19945                                              unfortunately   1
## 19946                                                       want   1
## 19947                                                   anything   1
## 19948                                                       jims   1
## 19949                                                    outdoor   1
## 19950                                                     flavor   1
## 19951                                                      bread   1
## 19952                                                     people   1
## 19953                                                      right   1
## 19954                                                       make   1
## 19955                                                 absolutely   1
## 19956                                                       back   1
## 19957                                                 borderline   1
## 19958                                                   business   1
## 19959                                                        can   1
## 19960                                                       cant   1
## 19961                                                   everyone   1
## 19962                                                    freedom   1
## 19963                                                        gay   1
## 19964                                                      genos   1
## 19965                                                      great   1
## 19966                                                      guess   1
## 19967                                                       hear   1
## 19968                                                        hit   1
## 19969                          httpkananacrossamericablogspotcom   1
## 19970                                                       isnt   1
## 19971                                                        ive   1
## 19972                                                       just   1
## 19973                                                       list   1
## 19974                                                      loser   1
## 19975                                                       many   1
## 19976                                                        nah   1
## 19977                                                    nowhere   1
## 19978                                                       okay   1
## 19979                                                        pay   1
## 19980                                                     really   1
## 19981                                                      right   1
## 19982                                                          s   1
## 19983                                                      shock   1
## 19984                                                      theyd   1
## 19985                                                       turn   1
## 19986                                                       vibe   1
## 19987                                                       want   1
## 19988                                                    without   1
## 19989                                                     wonder   1
## 19990                                                       wont   1
## 19991                                                      wrong   1
## 19992                                                       wait   1
## 19993                                                        add   1
## 19994                                                         ah   1
## 19995                                                      amaze   1
## 19996                                                   ancestor   1
## 19997                                                 apparently   1
## 19998                                                      arent   1
## 19999                                                       back   1
## 20000                                                        bad   1
## 20001                                                       bear   1
## 20002                                                    believe   1
## 20003                                                       bite   1
## 20004                                                        can   1
## 20005                                                 capitalism   1
## 20006                                                      check   1
## 20007                                                    cheeese   1
## 20008                                                    cheesei   1
## 20009                                                cheesesteak   1
## 20010                                                     choose   1
## 20011                                                        chz   1
## 20012                                              controversial   1
## 20013                                                    country   1
## 20014                                                    dialect   1
## 20015                                                         do   1
## 20016                                                     doesnt   1
## 20017                                                     dollar   1
## 20018                                                    egotism   1
## 20019                                                     either   1
## 20020                                                embarassing   1
## 20021                                                   employee   1
## 20022                                                    english   1
## 20023                                              establishment   1
## 20024                                                       even   1
## 20025                                                     except   1
## 20026                                                       feel   1
## 20027                                                     female   1
## 20028                                                       flag   1
## 20029                                                         fo   1
## 20030                                                 frieswhich   1
## 20031                                                        get   1
## 20032                                                       gift   1
## 20033                                                       give   1
## 20034                                                       good   1
## 20035                                                      guess   1
## 20036                                                       icon   1
## 20037                                                  immigrate   1
## 20038                                                 importance   1
## 20039                                                       just   1
## 20040                                                       know   1
## 20041                                                   language   1
## 20042                                                       long   1
## 20043                                                       mean   1
## 20044                                                     middle   1
## 20045                                                       need   1
## 20046                                               neighborhood   1
## 20047                                                       next   1
## 20048                                                       nice   1
## 20049                                                        one   1
## 20050                                                 overweight   1
## 20051                                                     parent   1
## 20052                                                        pat   1
## 20053                                                       pick   1
## 20054                                                      pizza   1
## 20055                                                      place   1
## 20056                                                 propaganda   1
## 20057                                                 revolution   1
## 20058                                                       rude   1
## 20059                                                   sandwich   1
## 20060                                                      serve   1
## 20061                                                      since   1
## 20062                                            spanishspeaking   1
## 20063                                                       spot   1
## 20064                                                      still   1
## 20065                                                      stuff   1
## 20066                                                      swill   1
## 20067                                                traditional   1
## 20068                                                  viewswhen   1
## 20069                                                      wasnt   1
## 20070                                                        way   1
## 20071                                                       whit   1
## 20072                                                      white   1
## 20073                                                     witout   1
## 20074                                                  witwitout   1
## 20075                                                        wiz   1
## 20076                                                    wouldnt   1
## 20077                                                       yelp   1
## 20078                                                     actual   1
## 20079                                                       like   1
## 20080                                                       tour   1
## 20081                                                    without   1
## 20082                                                    glorify   1
## 20083                                                  propolice   1
## 20084                                                    couldnt   1
## 20085                                                      glass   1
## 20086                                                      apart   1
## 20087                                                cheeselight   1
## 20088                                               cheesesteaks   1
## 20089                                                     hustle   1
## 20090                                                       junk   1
## 20091                                                       less   1
## 20092                                                        old   1
## 20093                                                      other   1
## 20094                                                      thing   1
## 20095                                                    tourist   1
## 20096                                                     cheese   1
## 20097                                                   employee   1
## 20098                                                      group   1
## 20099                                                      place   1
## 20100                                                      thing   1
## 20101                                                      bread   1
## 20102                                                       long   1
## 20103                                                    produce   1
## 20104                                                      bread   1
## 20105                                                        get   1
## 20106                                                       roll   1
## 20107                                                   american   1
## 20108                                                      awful   1
## 20109                                                       beef   1
## 20110                                                       bill   1
## 20111                                                       bite   1
## 20112                                                     bottom   1
## 20113                                                    bunroll   1
## 20114                                                   business   1
## 20115                                                  calculate   1
## 20116                                            cheesysaltiness   1
## 20117                                                      cheez   1
## 20118                                                       chew   1
## 20119                                                 commercial   1
## 20120                                                        eat   1
## 20121                                                      fatty   1
## 20122                                                    fizzies   1
## 20123                                                      fluff   1
## 20124                                                       food   1
## 20125                                                    gristle   1
## 20126                                                       hard   1
## 20127                                                        hot   1
## 20128                                                       hype   1
## 20129                                                      juice   1
## 20130                                                       just   1
## 20131                                                        leg   1
## 20132                                                      light   1
## 20133                                                    maximum   1
## 20134                                                   mushroom   1
## 20135                                                       neon   1
## 20136                                                       ooze   1
## 20137                                                        pat   1
## 20138                                                      photo   1
## 20139                                                      plain   1
## 20140                                                     season   1
## 20141                                                       seat   1
## 20142                                                    smother   1
## 20143                                                      spice   1
## 20144                                                      still   1
## 20145                                                    tourist   1
## 20146                                                     cheese   1
## 20147                                                       side   1
## 20148                                                       time   1
## 20149                                                        stk   1
## 20150                                                       ooze   1
## 20151                                                       damn   1
## 20152                                                       hear   1
## 20153                                                     market   1
## 20154                                                       move   1
## 20155                                                      place   1
## 20156                                                          r   1
## 20157                                                      enjoy   1
## 20158                                                      piece   1
## 20159                                                      heres   1
## 20160                                                 definitely   1
## 20161                                                     starve   1
## 20162                                                      arent   1
## 20163                                                  immigrant   1
## 20164                                                       know   1
## 20165                                                      order   1
## 20166                                                       step   1
## 20167                                                     werent   1
## 20168                                                     decide   1
## 20169                                                        say   1
## 20170                                                     street   1
## 20171                                                       also   1
## 20172                                                     anyone   1
## 20173                                                       care   1
## 20174                                                     hoopla   1
## 20175                                                       lose   1
## 20176                                                      onion   1
## 20177                                                        pat   1
## 20178                                                     philly   1
## 20179                                                    quietly   1
## 20180                                                     racist   1
## 20181                                                      thank   1
## 20182                                                       open   1
## 20183                                                      worth   1
## 20184                                                     itthey   1
## 20185                                                      salty   1
## 20186                                                         ca   1
## 20187                                               dissapointed   1
## 20188                                                     excite   1
## 20189                                                     truely   1
## 20190                                                        try   1
## 20191                                                    anxiety   1
## 20192                                                    logical   1
## 20193                                                      order   1
## 20194                                                      right   1
## 20195                                                      beast   1
## 20196                                              consideration   1
## 20197                                                   decision   1
## 20198                                                        eat   1
## 20199                                                       food   1
## 20200                                                        guy   1
## 20201                                                        let   1
## 20202                                                   military   1
## 20203                                                     nobody   1
## 20204                                                      speak   1
## 20205                                                      tight   1
## 20206                                                       time   1
## 20207                                                      upset   1
## 20208                                                      first   1
## 20209                                                    rivalry   1
## 20210                                                 propaganda   1
## 20211                                                       rude   1
## 20212                                                      cause   1
## 20213                                                      decor   1
## 20214                                                      didnt   1
## 20215                                                       drip   1
## 20216                                                       face   1
## 20217                                                      genos   1
## 20218                                                        guy   1
## 20219                                                       hell   1
## 20220                                                    hideous   1
## 20221                                                       high   1
## 20222                                                       just   1
## 20223                                                       like   1
## 20224                                                       live   1
## 20225                                                      maybe   1
## 20226                                                      onion   1
## 20227                                                      order   1
## 20228                                                     people   1
## 20229                                                     policy   1
## 20230                                                   probably   1
## 20231                                                   purchase   1
## 20232                                                        rib   1
## 20233                                                       ring   1
## 20234                                                      stare   1
## 20235                                                      thing   1
## 20236                                                       tier   1
## 20237                                                    tourist   1
## 20238                                                         us   1
## 20239                                                      wasnt   1
## 20240                                                       cash   1
## 20241                                                       rude   1
## 20242                                                     flower   1
## 20243                                                      visit   1
## 20244                                                     anyway   1
## 20245                                                          3   1
## 20246                                                       also   1
## 20247                                                     anyhoo   1
## 20248                                                   argument   1
## 20249                                                     aspect   1
## 20250                                                    average   1
## 20251                                                        bad   1
## 20252                                                        big   1
## 20253                                                      block   1
## 20254                                                      bring   1
## 20255                                                        cab   1
## 20256                                                       cash   1
## 20257                                                       cent   1
## 20258                                                     chance   1
## 20259                                                     cheese   1
## 20260                                                    company   1
## 20261                                                 competitor   1
## 20262                                                   coworker   1
## 20263                                                      didnt   1
## 20264                                             differentiator   1
## 20265                                                  direction   1
## 20266                                                 disappoint   1
## 20267                                                    disgust   1
## 20268                                                         do   1
## 20269                                                     doesnt   1
## 20270                                                      drink   1
## 20271                                                     either   1
## 20272                                                   employee   1
## 20273                                              establishment   1
## 20274                                                       even   1
## 20275                                                 everything   1
## 20276                                                     family   1
## 20277                                                      flyer   1
## 20278                                                   fountain   1
## 20279                                                     friend   1
## 20280                                                       geno   1
## 20281                                                        get   1
## 20282                                                         go   1
## 20283                                                      great   1
## 20284                                                      gruff   1
## 20285                                                        guy   1
## 20286                                                        hey   1
## 20287                                                       hour   1
## 20288                                                         hr   1
## 20289                                                    husband   1
## 20290                                                         im   1
## 20291                                                      issue   1
## 20292                                                       know   1
## 20293                                                         la   1
## 20294                                                      local   1
## 20295                                                    locally   1
## 20296                                                      lunch   1
## 20297                                                       mark   1
## 20298                                                       meal   1
## 20299                                                       mean   1
## 20300                                                mildlystale   1
## 20301                                                      minus   1
## 20302                                                       much   1
## 20303                                                     nicely   1
## 20304                                                       note   1
## 20305                                                        now   1
## 20306                                                       oooo   1
## 20307                                                    perhaps   1
## 20308                                                   personal   1
## 20309                                               philadelphia   1
## 20310                                                       pick   1
## 20311                                                     planet   1
## 20312                                                   probably   1
## 20313                                                      queue   1
## 20314                                                     random   1
## 20315                                                     really   1
## 20316                                                   restuant   1
## 20317                                                   reviewer   1
## 20318                                                      right   1
## 20319                                                      rival   1
## 20320                                                    rivalry   1
## 20321                                                        sad   1
## 20322                                                   scenario   1
## 20323                                                       seem   1
## 20324                                                   separate   1
## 20325                                                    service   1
## 20326                                                      slice   1
## 20327                                                      south   1
## 20328                                                      stand   1
## 20329                                                      start   1
## 20330                                                      state   1
## 20331                                                      steak   1
## 20332                                                    sticker   1
## 20333                                                      story   1
## 20334                                                    storyin   1
## 20335                                                      taste   1
## 20336                                                      think   1
## 20337                                                      three   1
## 20338                                                        tip   1
## 20339                                                    topping   1
## 20340                                                        two   1
## 20341                                                     unless   1
## 20342                                                   vacation   1
## 20343                                                    venture   1
## 20344                                                      visit   1
## 20345                                                      watch   1
## 20346                                                       will   1
## 20347                                                      youre   1
## 20348                                                    texture   1
## 20349                                                     anyone   1
## 20350                                                        ask   1
## 20351                                                        big   1
## 20352                                                       cant   1
## 20353                                                        dad   1
## 20354                                                  different   1
## 20355                                                      drive   1
## 20356                                                   everyone   1
## 20357                                                     fcking   1
## 20358                                                     friend   1
## 20359                                                        get   1
## 20360                                                       like   1
## 20361                                              milliondollar   1
## 20362                                                       mind   1
## 20363                                                        one   1
## 20364                                                      phone   1
## 20365                                                 proverbial   1
## 20366                                                   recently   1
## 20367                                                   reporter   1
## 20368                                                       type   1
## 20369                                                       want   1
## 20370                                                        yes   1
## 20371                                                   anything   1
## 20372                                                      hater   1
## 20373                                                      order   1
## 20374                                                      bring   1
## 20375                                                      first   1
## 20376                                                       ooze   1
## 20377                                                       trip   1
## 20378                                                        try   1
## 20379                                                       feel   1
## 20380                                                       kill   1
## 20381                                                    quietly   1
## 20382                                                       take   1
## 20383                                                       hard   1
## 20384                                                       sign   1
## 20385                                                    bigotry   1
## 20386                                                      chain   1
## 20387                                                       crap   1
## 20388                                                     jabber   1
## 20389                                                   rhetoric   1
## 20390                                                  sentiment   1
## 20391                                                    signage   1
## 20392                                                      group   1
## 20393                                                 propaganda   1
## 20394                                                  prophilly   1
## 20395                                                       sign   1
## 20396                                                    garbage   1
## 20397                                                       okay   1
## 20398                                                     poster   1
## 20399                                                      stuff   1
## 20400                                                  antimumia   1
## 20401                                                       even   1
## 20402                                                        ask   1
## 20403                                                         go   1
## 20404                                                      moral   1
## 20405                                                   munchies   1
## 20406                                                     philly   1
## 20407                                                       tell   1
## 20408                                                       want   1
## 20409                                               dalessandros   1
## 20410                                                        wiz   1
## 20411                                                       back   1
## 20412                                                        far   1
## 20413                                                    politic   1
## 20414                                                 regardless   1
## 20415                                                      steak   1
## 20416                                                       wont   1
## 20417                                                 disappoint   1
## 20418                                                        fry   1
## 20419                                                      genos   1
## 20420                                                       hair   1
## 20421                                                       know   1
## 20422                                                        now   1
## 20423                                                      order   1
## 20424                                                      place   1
## 20425                                                     really   1
## 20426                                                 reputation   1
## 20427                                                      shall   1
## 20428                                                      since   1
## 20429                                                       will   1
## 20430                                                   actually   1
## 20431                                                   although   1
## 20432                                                       area   1
## 20433                                                        ask   1
## 20434                                                  attendant   1
## 20435                                                     behind   1
## 20436                                                        buy   1
## 20437                                                       care   1
## 20438                                                       come   1
## 20439                                                    correct   1
## 20440                                                     couple   1
## 20441                                                      didnt   1
## 20442                                                   everyone   1
## 20443                                                   fabulous   1
## 20444                                                   familiar   1
## 20445                                                       feel   1
## 20446                                                      first   1
## 20447                                                    foreign   1
## 20448                                                       half   1
## 20449                                                      hasnt   1
## 20450                                                         id   1
## 20451                                                       know   1
## 20452                                                       lead   1
## 20453                                                       life   1
## 20454                                                       like   1
## 20455                                                       live   1
## 20456                                                      local   1
## 20457                                                       look   1
## 20458                                                     manner   1
## 20459                                                       need   1
## 20460                                                    opinion   1
## 20461                                               philadelphia   1
## 20462                                                     philly   1
## 20463                                                      place   1
## 20464                                                    quality   1
## 20465                                                   question   1
## 20466                                                     really   1
## 20467                                                     reason   1
## 20468                                                     review   1
## 20469                                                       save   1
## 20470                                                    support   1
## 20471                                                       tell   1
## 20472                                                       trip   1
## 20473                                                        try   1
## 20474                                                       wait   1
## 20475                                                       whos   1
## 20476                                                       will   1
## 20477                                                 absolutely   1
## 20478                                                   actually   1
## 20479                                                       also   1
## 20480                                                      amaze   1
## 20481                                                     appeal   1
## 20482                                                       away   1
## 20483                                                  baltimore   1
## 20484                                                     bright   1
## 20485                                                        can   1
## 20486                                                      cause   1
## 20487                                                     cheese   1
## 20488                                                cheesesteak   1
## 20489                                               cheesesteaks   1
## 20490                                                      clean   1
## 20491                                                      close   1
## 20492                                                    compare   1
## 20493                                                        cop   1
## 20494                                                    couldnt   1
## 20495                                                   customer   1
## 20496                                                     decide   1
## 20497                                                    deuchey   1
## 20498                                                      douse   1
## 20499                                                        due   1
## 20500                                                     either   1
## 20501                                                 especially   1
## 20502                                                     expect   1
## 20503                                              extraordinary   1
## 20504                                                       find   1
## 20505                                                     flavor   1
## 20506                                                     follow   1
## 20507                                                   foodwise   1
## 20508                                                       gain   1
## 20509                                                       give   1
## 20510                                                         go   1
## 20511                                                     greasy   1
## 20512                                                      great   1
## 20513                                                     happen   1
## 20514                                                       hate   1
## 20515                                                     havent   1
## 20516                                                         id   1
## 20517                                                     inside   1
## 20518                                                     invite   1
## 20519                                                        ive   1
## 20520                                                       just   1
## 20521                                                      leave   1
## 20522                                                       long   1
## 20523                                                        low   1
## 20524                                                    magical   1
## 20525                                                       mind   1
## 20526                                                       near   1
## 20527                                                       nice   1
## 20528                                                        now   1
## 20529                                                      onion   1
## 20530                                                    outside   1
## 20531                                                   pathetic   1
## 20532                                                     philly   1
## 20533                                                      power   1
## 20534                                                     really   1
## 20535                                                 remarkable   1
## 20536                                                    require   1
## 20537                                                        sad   1
## 20538                                                   sandwich   1
## 20539                                                     season   1
## 20540                                                        see   1
## 20541                                                      south   1
## 20542                                                 specialive   1
## 20543                                                       star   1
## 20544                                                      still   1
## 20545                                                        sub   1
## 20546                                                      super   1
## 20547                                                       take   1
## 20548                                                      taste   1
## 20549                                               tastetexture   1
## 20550                                                     theyre   1
## 20551                                                    tourist   1
## 20552                                                 unamerican   1
## 20553                                                         us   1
## 20554                                                      white   1
## 20555                                                    without   1
## 20556                                                        wow   1
## 20557                                                        yes   1
## 20558                                                      youre   1
## 20559                                                      drink   1
## 20560                                                   horrible   1
## 20561                                                         im   1
## 20562                                                        max   1
## 20563                                                     philly   1
## 20564                                                        see   1
## 20565                                                      steak   1
## 20566                                                       want   1
## 20567                                                        way   1
## 20568                                                   although   1
## 20569                                                        bad   1
## 20570                                                      board   1
## 20571                                                        can   1
## 20572                                                cheesesteak   1
## 20573                                               cheesesteaks   1
## 20574                                                 experience   1
## 20575                                                     forget   1
## 20576                                                       give   1
## 20577                                                       head   1
## 20578                                                    however   1
## 20579                                                        ill   1
## 20580                                                         im   1
## 20581                                                       just   1
## 20582                                                       make   1
## 20583                                                       meat   1
## 20584                                                    mexican   1
## 20585                                                      order   1
## 20586                                                      owner   1
## 20587                                                      place   1
## 20588                                                     please   1
## 20589                                                      pound   1
## 20590                                                     pretty   1
## 20591                                                  publicity   1
## 20592                                                       real   1
## 20593                                                     realli   1
## 20594                                                    sadwich   1
## 20595                                                    support   1
## 20596                                                      thats   1
## 20597                                                       time   1
## 20598                                                 underwhelm   1
## 20599                                                       wait   1
## 20600                                                      whats   1
## 20601                                                        yes   1
## 20602                                                      youll   1
## 20603                                               genospicture   1
## 20604                                                     invite   1
## 20605                                                     actual   1
## 20606                                               cheesesteaks   1
## 20607                                                      cross   1
## 20608                                                      enjoy   1
## 20609                                                     friend   1
## 20610                                                       good   1
## 20611                                                    husband   1
## 20612                                                       less   1
## 20613                                                       make   1
## 20614                                                       meat   1
## 20615                                                      place   1
## 20616                                                   roommate   1
## 20617                                                      steak   1
## 20618                                                       walk   1
## 20619                                                       else   1
## 20620                                                        bad   1
## 20621                                                  basically   1
## 20622                                                       city   1
## 20623                                                      close   1
## 20624                                                    country   1
## 20625                                                      didnt   1
## 20626                                                     expect   1
## 20627                                                       find   1
## 20628                                                    florida   1
## 20629                                                       food   1
## 20630                                                      genos   1
## 20631                                                     grease   1
## 20632                                                      guess   1
## 20633                                                       just   1
## 20634                                                       know   1
## 20635                                                       line   1
## 20636                                                     matter   1
## 20637                                                     nearby   1
## 20638                                                        pat   1
## 20639                                                       real   1
## 20640                                                     street   1
## 20641                                                      world   1
## 20642                                                      steak   1
## 20643                                                     actual   1
## 20644                                                        ask   1
## 20645                                                      great   1
## 20646                                                    however   1
## 20647                                                        ill   1
## 20648                                                 ingredient   1
## 20649                                                      light   1
## 20650                                                       miss   1
## 20651                                                       vote   1
## 20652                                                       also   1
## 20653                                                      ample   1
## 20654                                                     cheese   1
## 20655                                                   curbside   1
## 20656                                                     easily   1
## 20657                                                        fry   1
## 20658                                                       geno   1
## 20659                                                     hoagie   1
## 20660                                                       meat   1
## 20661                                                 overpriced   1
## 20662                                                     purist   1
## 20663                                                        see   1
## 20664                                                      visit   1
## 20665                                                    wrapper   1
## 20666                                                  gradually   1
## 20667                                                       less   1
## 20668                                                  expectant   1
## 20669                                                     behind   1
## 20670                                                       shit   1
## 20671                                                      shizz   1
## 20672                                                       whoa   1
## 20673                                                        hit   1
## 20674                                                    husband   1
## 20675                                                     slight   1
## 20676                                                        try   1
## 20677                                                       dine   1
## 20678                                                 everything   1
## 20679                                                        low   1
## 20680                                                       meat   1
## 20681                                                      place   1
## 20682                                                     racist   1
## 20683                                                        two   1
## 20684                                                      wasnt   1
## 20685                                                      genos   1
## 20686                                                      stand   1
## 20687                                                        way   1
## 20688                                                    zealous   1
## 20689                                                       also   1
## 20690                                                     always   1
## 20691                                                      cause   1
## 20692                                                  confusion   1
## 20693                                                       good   1
## 20694                                                       hate   1
## 20695                                                        ill   1
## 20696                                                       kind   1
## 20697                                                   language   1
## 20698                                                       love   1
## 20699                                                     lovely   1
## 20700                                                      moral   1
## 20701                                                     normal   1
## 20702                                                        one   1
## 20703                                                      order   1
## 20704                                                    package   1
## 20705                                                      place   1
## 20706                                                      quite   1
## 20707                                                      serve   1
## 20708                                                      style   1
## 20709                                                   superior   1
## 20710                                                       take   1
## 20711                                                     theres   1
## 20712                                                    tourist   1
## 20713                                                        two   1
## 20714                                                      white   1
## 20715                                                   actually   1
## 20716                                                     always   1
## 20717                                                     anyway   1
## 20718                                                       beef   1
## 20719                                                     cheese   1
## 20720                                                cheesesteak   1
## 20721                                               conservative   1
## 20722                                                     corner   1
## 20723                                                 experience   1
## 20724                                                        eye   1
## 20725                                                      first   1
## 20726                                                      hasnt   1
## 20727                                                      light   1
## 20728                                                       line   1
## 20729                                                    overall   1
## 20730                                                        pat   1
## 20731                                                     really   1
## 20732                                                significant   1
## 20733                                                       tony   1
## 20734                                                       walk   1
## 20735                                                    wouldnt   1
## 20736                                                      annoy   1
## 20737                                              antiimmigrant   1
## 20738                                                        can   1
## 20739                                                      clean   1
## 20740                                                       come   1
## 20741                                                        cop   1
## 20742                                                        dry   1
## 20743                                                  extremely   1
## 20744                                                       full   1
## 20745                                                     locate   1
## 20746                                                 marginally   1
## 20747                                            nightcompletely   1
## 20748                                                      offer   1
## 20749                                                        old   1
## 20750                                                      order   1
## 20751                                                     patron   1
## 20752                                                      place   1
## 20753                                                      short   1
## 20754                                                      small   1
## 20755                                                       soak   1
## 20756                                                       take   1
## 20757                                                        two   1
## 20758                                                     cheese   1
## 20759                                                cheesesteak   1
## 20760                                                      clean   1
## 20761                                                       dark   1
## 20762                                                     enough   1
## 20763                                                       food   1
## 20764                                                      genos   1
## 20765                                                      place   1
## 20766                                                       sign   1
## 20767                                                       vibe   1
## 20768                                                      local   1
## 20769                                                       half   1
## 20770                                                     almost   1
## 20771                                                      drive   1
## 20772                                                        eat   1
## 20773                                               exploitation   1
## 20774                                                        get   1
## 20775                                                       just   1
## 20776                                                      money   1
## 20777                                                        run   1
## 20778                                                        try   1
## 20779                                                     worthy   1
## 20780                                                     friend   1
## 20781                                                        big   1
## 20782                                                      didnt   1
## 20783                                                       less   1
## 20784                                                   sandwich   1
## 20785                                                    stomach   1
## 20786                                                        bee   1
## 20787                                                       fall   1
## 20788                                                       less   1
## 20789                                                        try   1
## 20790                                                    include   1
## 20791                                                       roll   1
## 20792                                                      drink   1
## 20793                                                 generously   1
## 20794                                                      steak   1
## 20795                                                    welfare   1
## 20796                                                   ambiance   1
## 20797                                                    awkward   1
## 20798                                                    blatant   1
## 20799                                                       bold   1
## 20800                                                      bread   1
## 20801                                                   customer   1
## 20802                                                  diversity   1
## 20803                                                         do   1
## 20804                                                   friendly   1
## 20805                                                      genos   1
## 20806                                                        guy   1
## 20807                                                       life   1
## 20808                                                       long   1
## 20809                                                       love   1
## 20810                                                        man   1
## 20811                                                       note   1
## 20812                                                        pat   1
## 20813                                                  provolone   1
## 20814                                                    quality   1
## 20815                                                  sacrifice   1
## 20816                                                     simple   1
## 20817                                                       soon   1
## 20818                                                      still   1
## 20819                                                      think   1
## 20820                                                        two   1
## 20821                                                 understate   1
## 20822                                                       walk   1
## 20823                                                      whole   1
## 20824                                                   customer   1
## 20825                                                   traveler   1
## 20826                                                        one   1
## 20827                                                      order   1
## 20828                                                      angry   1
## 20829                                                    counter   1
## 20830                                                         do   1
## 20831                                                      drive   1
## 20832                                                        eat   1
## 20833                                                         go   1
## 20834                                               intersection   1
## 20835                                                       keep   1
## 20836                                                       meat   1
## 20837                                                 mediocrity   1
## 20838                                                      order   1
## 20839                                                     pretty   1
## 20840                                                      repel   1
## 20841                                                        see   1
## 20842                                                    service   1
## 20843                                                   velveeta   1
## 20844                                                      woman   1
## 20845                                                         do   1
## 20846                                                       sign   1
## 20847                                                     bright   1
## 20848                                                       name   1
## 20849                                                 restaurant   1
## 20850                                                       roll   1
## 20851                                                     minute   1
## 20852                                                    million   1
## 20853                                                         do   1
## 20854                                                        get   1
## 20855                                                         go   1
## 20856                                                        pat   1
## 20857                                                     sample   1
## 20858                                                        see   1
## 20859                                                      gotta   1
## 20860                                                      sound   1
## 20861                                                     proper   1
## 20862                                                       pick   1
## 20863                                                         go   1
## 20864                                                      power   1
## 20865                                                  bunkeresq   1
## 20866                                                          2   1
## 20867                                                 absolutely   1
## 20868                                                     absorb   1
## 20869                                                   actually   1
## 20870                                                        air   1
## 20871                                                       also   1
## 20872                                                   anywayit   1
## 20873                                                      arent   1
## 20874                                                         bf   1
## 20875                                                       bite   1
## 20876                                                      bring   1
## 20877                                                      bunch   1
## 20878                                                 california   1
## 20879                                                      check   1
## 20880                                                 cheeseteak   1
## 20881                                                     choose   1
## 20882                                                       city   1
## 20883                                                      clean   1
## 20884                                                    compare   1
## 20885                                                   customer   1
## 20886                                                 definitely   1
## 20887                                                    diverse   1
## 20888                                                         do   1
## 20889                                                      early   1
## 20890                                                     either   1
## 20891                                                     entire   1
## 20892                                                       even   1
## 20893                                                       ever   1
## 20894                                                        fee   1
## 20895                                                     figure   1
## 20896                                                       find   1
## 20897                                                 flawlessly   1
## 20898                                                       free   1
## 20899                                                    genuine   1
## 20900                                                      gonna   1
## 20901                                                   govindas   1
## 20902                                                    history   1
## 20903                                                         id   1
## 20904                                                         im   1
## 20905                                                    inhabit   1
## 20906                                                       kind   1
## 20907                                                       know   1
## 20908                                                       last   1
## 20909                                                        let   1
## 20910                                                       love   1
## 20911                                                       make   1
## 20912                                                 manageable   1
## 20913                                                      maybe   1
## 20914                                                       meat   1
## 20915                                                      month   1
## 20916                                                       much   1
## 20917                                                       near   1
## 20918                                                       need   1
## 20919                                                       next   1
## 20920                                                       nice   1
## 20921                                                       note   1
## 20922                                                    nothing   1
## 20923                                                        now   1
## 20924                                                      offer   1
## 20925                                                        one   1
## 20926                                                       open   1
## 20927                                                        opt   1
## 20928                                                      order   1
## 20929                                                    perhaps   1
## 20930                                                     philly   1
## 20931                                                       pick   1
## 20932                                                      place   1
## 20933                                                   possible   1
## 20934                                                    prepare   1
## 20935                                                    problem   1
## 20936                                                  recommend   1
## 20937                                                 restaurant   1
## 20938                                                   restroom   1
## 20939                                                       seat   1
## 20940                                                        see   1
## 20941                                                      serve   1
## 20942                                                       side   1
## 20943                                                       skip   1
## 20944                                                   southern   1
## 20945                                                      start   1
## 20946                                                      super   1
## 20947                                                       take   1
## 20948                                                      think   1
## 20949                                                       time   1
## 20950                                                      today   1
## 20951                                                    tourist   1
## 20952                                                       town   1
## 20953                                                      twice   1
## 20954                                                   upstairs   1
## 20955                                                       walk   1
## 20956                                                       wall   1
## 20957                                                       want   1
## 20958                                                       will   1
## 20959                                                  wonderful   1
## 20960                                                     worker   1
## 20961                                                    wouldnt   1
## 20962                                                      youll   1
## 20963                                                        yum   1
## 20964                                                   probably   1
## 20965                                                       favs   1
## 20966                                                       well   1
## 20967                                                     accept   1
## 20968                                                     always   1
## 20969                                                   american   1
## 20970                                                   anything   1
## 20971                                                       area   1
## 20972                                                    awesome   1
## 20973                                                        bad   1
## 20974                                                      cheap   1
## 20975                                                       city   1
## 20976                                                       cook   1
## 20977                                                    english   1
## 20978                                                 especially   1
## 20979                                                  expensive   1
## 20980                                                  fantastic   1
## 20981                                                   friendly   1
## 20982                                                      fully   1
## 20983                                                       grab   1
## 20984                                                       half   1
## 20985                                                     honest   1
## 20986                                                  immigrant   1
## 20987                                                       keen   1
## 20988                                                      local   1
## 20989                                                       mind   1
## 20990                                                     nearly   1
## 20991                                                       nice   1
## 20992                                                        one   1
## 20993                                                     philly   1
## 20994                                                     polite   1
## 20995                                                      saute   1
## 20996                                                      serve   1
## 20997                                                      soggy   1
## 20998                                                  something   1
## 20999                                                    suppose   1
## 21000                                                      thing   1
## 21001                                                      total   1
## 21002                                                     truely   1
## 21003                                                      white   1
## 21004                                                     worthy   1
## 21005                                                       good   1
## 21006                                                 impossible   1
## 21007                                                     racist   1
## 21008                                                 xenophobic   1
## 21009                                                   allergic   1
## 21010                                                    america   1
## 21011                                                      first   1
## 21012                                                         go   1
## 21013                                                       line   1
## 21014                                                      onion   1
## 21015                                                        pat   1
## 21016                                                    politic   1
## 21017                                                       want   1
## 21018                                                       back   1
## 21019                                                        can   1
## 21020                                                      genos   1
## 21021                                                         id   1
## 21022                                                immigration   1
## 21023                                                importantly   1
## 21024                                                       keep   1
## 21025                                                     regard   1
## 21026                                                      super   1
## 21027                                                      truth   1
## 21028                                                       come   1
## 21029                                                       know   1
## 21030                                                        yet   1
## 21031                                                       want   1
## 21032                                                        air   1
## 21033                                                cheesesteak   1
## 21034                                                     famous   1
## 21035                                                       jump   1
## 21036                                                  knowledge   1
## 21037                                                       work   1
## 21038                                                        wit   1
## 21039                                                       feel   1
## 21040                                                      genos   1
## 21041                                                        ive   1
## 21042                                                reminiscent   1
## 21043                                                   actually   1
## 21044                                                   adjacent   1
## 21045                                                       also   1
## 21046                                                     amount   1
## 21047                                                    another   1
## 21048                                                     arrive   1
## 21049                                                        bad   1
## 21050                                                       bite   1
## 21051                                                      bland   1
## 21052                                                      blend   1
## 21053                                                      board   1
## 21054                                                        car   1
## 21055                                                       cash   1
## 21056                                                      cause   1
## 21057                                                     cheese   1
## 21058                                                cheesesteak   1
## 21059                                               cheesesteaks   1
## 21060                                               chitchatting   1
## 21061                                                      clean   1
## 21062                                                 completely   1
## 21063                                                      cross   1
## 21064                                                    crunchy   1
## 21065                                                     demand   1
## 21066                                                 disappoint   1
## 21067                                                 everything   1
## 21068                                                          f   1
## 21069                                                       fact   1
## 21070                                                       find   1
## 21071                                                      first   1
## 21072                                                       five   1
## 21073                                                  flavorful   1
## 21074                                                    forever   1
## 21075                                                      fresh   1
## 21076                                                     fridge   1
## 21077                                                     friend   1
## 21078                                                      front   1
## 21079                                                        fry   1
## 21080                                                 generation   1
## 21081                                                        get   1
## 21082                                                       half   1
## 21083                                                       hear   1
## 21084                                                       hour   1
## 21085                                                        ice   1
## 21086                                                         id   1
## 21087                                                         im   1
## 21088                                                     inside   1
## 21089                                                  kellywest   1
## 21090                                                    kitchen   1
## 21091                                                      learn   1
## 21092                                                       less   1
## 21093                                                        let   1
## 21094                                                       line   1
## 21095                                                     little   1
## 21096                                                       look   1
## 21097                                                       love   1
## 21098                                                      lunch   1
## 21099                                                  lunchtime   1
## 21100                                                       many   1
## 21101                                                        may   1
## 21102                                                       mean   1
## 21103                                                       meat   1
## 21104                                                        mid   1
## 21105                                                     midday   1
## 21106                                                   midnight   1
## 21107                                                       mile   1
## 21108                                                       much   1
## 21109                                                   mulberry   1
## 21110                                                     nation   1
## 21111                                                       next   1
## 21112                                                    noonish   1
## 21113                                                    nothing   1
## 21114                                                    outline   1
## 21115                                                       pass   1
## 21116                                                        per   1
## 21117                                          philadelphiagenos   1
## 21118                                                     pretty   1
## 21119                                                  profanity   1
## 21120                                                  provolone   1
## 21121                                               questionable   1
## 21122                                                       race   1
## 21123                                                  recommend   1
## 21124                                                     record   1
## 21125                                                     regard   1
## 21126                                                    several   1
## 21127                                                       shit   1
## 21128                                                       shop   1
## 21129                                                      since   1
## 21130                                                       snow   1
## 21131                                                      stare   1
## 21132                                                      start   1
## 21133                                                      state   1
## 21134                                                      steak   1
## 21135                                                      still   1
## 21136                                                       sure   1
## 21137                                               surprisingly   1
## 21138                                                       tell   1
## 21139                                                        ten   1
## 21140                                                         th   1
## 21141                                                      thats   1
## 21142                                                      theyd   1
## 21143                                                     theyve   1
## 21144                                                      think   1
## 21145                                                      throw   1
## 21146                                                   thursday   1
## 21147                                                   tomorrow   1
## 21148                                                     tongue   1
## 21149                                                   tristate   1
## 21150                                                       type   1
## 21151                                                        way   1
## 21152                                                    weekend   1
## 21153                                                      whole   1
## 21154                                                       will   1
## 21155                                                     window   1
## 21156                                                    wouldnt   1
## 21157                                                    wrapper   1
## 21158                                                        yes   1
## 21159                                                       yumm   1
## 21160                                                   horrible   1
## 21161                                                      filet   1
## 21162                                                    already   1
## 21163                                                       good   1
## 21164                                               philadelphia   1
## 21165                                                     philly   1
## 21166                                                      begin   1
## 21167                                                     bright   1
## 21168                                                   business   1
## 21169                                                        can   1
## 21170                                                      close   1
## 21171                                                     corner   1
## 21172                                                     decide   1
## 21173                                                destination   1
## 21174                                                        far   1
## 21175                                                      first   1
## 21176                                                      front   1
## 21177                                                       goto   1
## 21178                                                        guy   1
## 21179                                                       home   1
## 21180                                                    instead   1
## 21181                                                        mid   1
## 21182                                                       move   1
## 21183                                                     notice   1
## 21184                                                      order   1
## 21185                                                        pat   1
## 21186                                                    quickly   1
## 21187                                                   register   1
## 21188                                                     starve   1
## 21189                                                      tower   1
## 21190                                                 unmolested   1
## 21191                                                    weekday   1
## 21192                                                       whoa   1
## 21193                                                       bear   1
## 21194                                                 definitely   1
## 21195                                                     demand   1
## 21196                                                     either   1
## 21197                                                   employee   1
## 21198                                                       good   1
## 21199                                                   attitude   1
## 21200                                                       come   1
## 21201                                                      prick   1
## 21202                                                        ask   1
## 21203                                                       chop   1
## 21204                                                    liberty   1
## 21205                                                  wonderful   1
## 21206                                                       arch   1
## 21207                                                    clogger   1
## 21208                                                       even   1
## 21209                                                       fact   1
## 21210                                                     myopic   1
## 21211                                                        top   1
## 21212                                                       game   1
## 21213                                                smorgasborg   1
## 21214                                                       even   1
## 21215                                                      guess   1
## 21216                                                immigration   1
## 21217                                                   internet   1
## 21218                                                        ive   1
## 21219                                                       tape   1
## 21220                                                      write   1
## 21221                                                       want   1
## 21222                                                     cheese   1
## 21223                                                      gooey   1
## 21224                                                      stuff   1
## 21225                                                 buttlicker   1
## 21226                                                      never   1
## 21227                                                       find   1
## 21228                                                     people   1
## 21229                                                     anyone   1
## 21230                                              establishment   1
## 21231                                                       fair   1
## 21232                                                         go   1
## 21233                                                 impression   1
## 21234                                                       pass   1
## 21235                                                   resident   1
## 21236                                                      serve   1
## 21237                                                       yelp   1
## 21238                                                     accent   1
## 21239                                                    african   1
## 21240                                                  community   1
## 21241                                                       even   1
## 21242                                                     family   1
## 21243                                                        ive   1
## 21244                                                    latinos   1
## 21245                                                     people   1
## 21246                                                      plaza   1
## 21247                                                    student   1
## 21248                                                       make   1
## 21249                                                    average   1
## 21250                                                        bad   1
## 21251                                                      brick   1
## 21252                                                 definitely   1
## 21253                                                  delicious   1
## 21254                                                   divisive   1
## 21255                                                     expect   1
## 21256                                                       fact   1
## 21257                                                       food   1
## 21258                                                        fun   1
## 21259                                                        get   1
## 21260                                                         go   1
## 21261                                                       hour   1
## 21262                                                       lack   1
## 21263                                                 memorabile   1
## 21264                                                       nice   1
## 21265                                                      owner   1
## 21266                                                   physical   1
## 21267                                                     racist   1
## 21268                                                       read   1
## 21269                                                     really   1
## 21270                                                       rude   1
## 21271                                                       sign   1
## 21272                                                     single   1
## 21273                                                      staff   1
## 21274                                                      steak   1
## 21275                                                      think   1
## 21276                                                     though   1
## 21277                                                        use   1
## 21278                                                       wait   1
## 21279                                                      youre   1
## 21280                                                   soupnazi   1
## 21281                                                        end   1
## 21282                                                   ignorant   1
## 21283                                                      slang   1
## 21284                                                 afterwards   1
## 21285                                                 apparently   1
## 21286                                                      apple   1
## 21287                                                  attendant   1
## 21288                                                   bathroom   1
## 21289                                                      begin   1
## 21290                                                    believe   1
## 21291                                                         bf   1
## 21292                                                  boyfriend   1
## 21293                                                      bunch   1
## 21294                                                        can   1
## 21295                                                       cant   1
## 21296                                               cheesesteaks   1
## 21297                                                       coke   1
## 21298                                                        cop   1
## 21299                                                    counter   1
## 21300                                                   customer   1
## 21301                                                 definitely   1
## 21302                                                   describe   1
## 21303                                                      didnt   1
## 21304                                                 difference   1
## 21305                                                       dumb   1
## 21306                                                        eat   1
## 21307                                                      every   1
## 21308                                                   everyone   1
## 21309                                                 everything   1
## 21310                                                     fellow   1
## 21311                                                     female   1
## 21312                                                      first   1
## 21313                                                        fix   1
## 21314                                                     follow   1
## 21315                                                       food   1
## 21316                                                     forget   1
## 21317                                                    freedom   1
## 21318                                                     french   1
## 21319                                                     friend   1
## 21320                                                 frombefore   1
## 21321                                                      fruit   1
## 21322                                                      genos   1
## 21323                                                  gentleman   1
## 21324                                                         go   1
## 21325                                                     google   1
## 21326                                                      guest   1
## 21327                                                        hey   1
## 21328                                                        ice   1
## 21329                                                         id   1
## 21330                                                    illegal   1
## 21331                                                         im   1
## 21332                                                       joke   1
## 21333                                                       just   1
## 21334                                                       know   1
## 21335                                                       lady   1
## 21336                                                      lemon   1
## 21337                                                    lettuce   1
## 21338                                                      light   1
## 21339                                                        lot   1
## 21340                                                        man   1
## 21341                                                    manager   1
## 21342                                                 mayonnaise   1
## 21343                                                       melt   1
## 21344                                                     middle   1
## 21345                                                        mom   1
## 21346                                                       move   1
## 21347                                                       much   1
## 21348                                                    mustard   1
## 21349                                                       none   1
## 21350                                                       nose   1
## 21351                                                        old   1
## 21352                                                      paint   1
## 21353                                                        pat   1
## 21354                                                     patron   1
## 21355                                                     pepper   1
## 21356                                                    plastic   1
## 21357                                                   pleasant   1
## 21358                                                     please   1
## 21359                                                   politely   1
## 21360                                                  political   1
## 21361                                                    popular   1
## 21362                                                        ppl   1
## 21363                                                    prepare   1
## 21364                                                      price   1
## 21365                                                       rate   1
## 21366                                                     relend   1
## 21367                                                     remake   1
## 21368                                                     remove   1
## 21369                                                replacement   1
## 21370                                                    respond   1
## 21371                                                      score   1
## 21372                                                       seat   1
## 21373                                                     server   1
## 21374                                                       show   1
## 21375                                                      since   1
## 21376                                                       slip   1
## 21377                                                   somewhat   1
## 21378                                                 substitute   1
## 21379                                                    suppose   1
## 21380                                                       take   1
## 21381                                                     travel   1
## 21382                                                   triangle   1
## 21383                                                      twice   1
## 21384                                                       uber   1
## 21385                                                     unless   1
## 21386                                                        use   1
## 21387                                                     waiter   1
## 21388                                                      whats   1
## 21389                                                       whiz   1
## 21390                                                      whole   1
## 21391                                                       wife   1
## 21392                                                       will   1
## 21393                                                        win   1
## 21394                                                        wiz   1
## 21395                                                    wouldnt   1
## 21396                                                       yell   1
## 21397                                                cheesesteak   1
## 21398                                                      genos   1
## 21399                                                         go   1
## 21400                                                cheesesteak   1
## 21401                                                       much   1
## 21402                                                     across   1
## 21403                                                     artery   1
## 21404                                                      blast   1
## 21405                                                cheesesteak   1
## 21406                                                   customer   1
## 21407                                                         do   1
## 21408                                                        end   1
## 21409                                                      genos   1
## 21410                                                         go   1
## 21411                                                       kiss   1
## 21412                                                       life   1
## 21413                                                    outdoor   1
## 21414                                                 overpriced   1
## 21415                                                     patron   1
## 21416                                                   question   1
## 21417                                                     review   1
## 21418                                                       side   1
## 21419                                                    suggest   1
## 21420                                                      taste   1
## 21421                                                      thats   1
## 21422                                                    towards   1
## 21423                                                      water   1
## 21424                                                     window   1
## 21425                                                       wear   1
## 21426                                                       food   1
## 21427                                                      style   1
## 21428                                                      taste   1
## 21429                                                         aw   1
## 21430                                                      since   1
## 21431                                                     cheese   1
## 21432                                                      lunch   1
## 21433                                                      clown   1
## 21434                                                   behavior   1
## 21435                                                         im   1
## 21436                                                      sport   1
## 21437                                                      throw   1
## 21438                                                        act   1
## 21439                                                     charge   1
## 21440                                                      cocky   1
## 21441                                                     decide   1
## 21442                                                       dumb   1
## 21443                                                       jims   1
## 21444                                                        one   1
## 21445                                                        pat   1
## 21446                                                       piss   1
## 21447                                                       soup   1
## 21448                                                       talk   1
## 21449                                                      wasnt   1
## 21450                                                       feel   1
## 21451                                                   customer   1
## 21452                                                      order   1
## 21453                                               philadelphia   1
## 21454                                                       item   1
## 21455                                                      moral   1
## 21456                                                 background   1
## 21457                                                      badge   1
## 21458                                                       call   1
## 21459                                               cheesesteaks   1
## 21460                                                     direct   1
## 21461                                                 experience   1
## 21462                                                       fact   1
## 21463                                                       fame   1
## 21464                                                       fast   1
## 21465                                                       food   1
## 21466                                                       geno   1
## 21467                                                       good   1
## 21468                                                      group   1
## 21469                                                        guy   1
## 21470                                                       hype   1
## 21471                                                       just   1
## 21472                                                       must   1
## 21473                                                        one   1
## 21474                                                     option   1
## 21475                                                     people   1
## 21476                                                     philly   1
## 21477                                                       rare   1
## 21478                                                 restaurant   1
## 21479                                                   sandwich   1
## 21480                                                      since   1
## 21481                                                      steak   1
## 21482                                                      vento   1
## 21483                                                     window   1
## 21484                                                   anything   1
## 21485                                                      didnt   1
## 21486                                                       joey   1
## 21487                                                       just   1
## 21488                                                     sample   1
## 21489                                                      staff   1
## 21490                                                   resident   1
## 21491                                                    tourist   1
## 21492                                                      light   1
## 21493                                                       este   1
## 21494                                                      thats   1
## 21495                                                     handle   1
## 21496                                                        mob   1
## 21497                                                       good   1
## 21498                                                      order   1
## 21499                                                      think   1
## 21500                                                         im   1
## 21501                                                        get   1
## 21502                                                    however   1
## 21503                                                      rocky   1
## 21504                                                      smart   1
## 21505                                                     around   1
## 21506                                                       back   1
## 21507                                                       bank   1
## 21508                                                      block   1
## 21509                                                     charge   1
## 21510                                                       come   1
## 21511                                                   directly   1
## 21512                                                       glad   1
## 21513                                                         go   1
## 21514                                                      issue   1
## 21515                                                     locate   1
## 21516                                                       look   1
## 21517                                                    machine   1
## 21518                                                       near   1
## 21519                                                      order   1
## 21520                                                    overall   1
## 21521                                                    problem   1
## 21522                                                      right   1
## 21523                                                        say   1
## 21524                                                     street   1
## 21525                                                       take   1
## 21526                                              aesthetically   1
## 21527                                                     always   1
## 21528                                                      awful   1
## 21529                                                        bad   1
## 21530                                                        bar   1
## 21531                                                      bench   1
## 21532                                                      build   1
## 21533                                                        can   1
## 21534                                               cheesesteaks   1
## 21535                                                       cool   1
## 21536                                                      cover   1
## 21537                                               customizable   1
## 21538                                                 definitely   1
## 21539                                                    english   1
## 21540                                                       feel   1
## 21541                                                      first   1
## 21542                                                       food   1
## 21543                                                   friendly   1
## 21544                                                     invite   1
## 21545                                                       lack   1
## 21546                                                      large   1
## 21547                                                       make   1
## 21548                                                       nice   1
## 21549                                                    outside   1
## 21550                                                    overall   1
## 21551                                                       park   1
## 21552                                                    picture   1
## 21553                                                      place   1
## 21554                                                        see   1
## 21555                                                       seem   1
## 21556                                                     staple   1
## 21557                                                  tradition   1
## 21558                                                      truly   1
## 21559                                                        try   1
## 21560                                                     across   1
## 21561                                                    cashier   1
## 21562                                                      genos   1
## 21563                                                       near   1
## 21564                                                      metal   1
## 21565                                                      patss   1
## 21566                                                      sorry   1
## 21567                                                       stay   1
## 21568                                                       long   1
## 21569                                                   metallic   1
## 21570                                                      photo   1
## 21571                                                        btw   1
## 21572                                                     finish   1
## 21573                                                       good   1
## 21574                                                      place   1
## 21575                                                      plate   1
## 21576                                                       soul   1
## 21577                                                       word   1
## 21578                                                     people   1
## 21579                                                     assume   1
## 21580                                                     cheese   1
## 21581                                                    diffuse   1
## 21582                                                     digest   1
## 21583                                                    explain   1
## 21584                                                       find   1
## 21585                                                     follow   1
## 21586                                                        get   1
## 21587                                                      knife   1
## 21588                                                      learn   1
## 21589                                                       load   1
## 21590                                                       pull   1
## 21591                                                        see   1
## 21592                                                    serious   1
## 21593                                                      sorry   1
## 21594                                                      still   1
## 21595                                                        day   1
## 21596                                                       good   1
## 21597                                                       item   1
## 21598                                                      start   1
## 21599                                                 proprietor   1
## 21600                                                      antic   1
## 21601                                                        bad   1
## 21602                                                      build   1
## 21603                                                       even   1
## 21604                                                 eventually   1
## 21605                                                     flashy   1
## 21606                                                        get   1
## 21607                                                       hype   1
## 21608                                                instruction   1
## 21609                                                       know   1
## 21610                                                      owner   1
## 21611                                                      table   1
## 21612                                                      tacky   1
## 21613                                                        use   1
## 21614                                                        win   1
## 21615                                                    patient   1
## 21616                                                      great   1
## 21617                                                       like   1
## 21618                                                  something   1
## 21619                                                        ask   1
## 21620                                                        bad   1
## 21621                                                       cant   1
## 21622                                                       cash   1
## 21623                                                    cashier   1
## 21624                                                       city   1
## 21625                                                    counter   1
## 21626                                                      crazy   1
## 21627                                                      decor   1
## 21628                                                      didnt   1
## 21629                                                    diverse   1
## 21630                                                        eat   1
## 21631                                                   employee   1
## 21632                                                     enough   1
## 21633                                                        etc   1
## 21634                                                   everyone   1
## 21635                                                      favor   1
## 21636                                                       folk   1
## 21637                                                       food   1
## 21638                                                       fool   1
## 21639                                                  gentleman   1
## 21640                                                         go   1
## 21641                                                       good   1
## 21642                                                        guy   1
## 21643                                                       hard   1
## 21644                                                      kinda   1
## 21645                                                       know   1
## 21646                                                       love   1
## 21647                                                      money   1
## 21648                                                       much   1
## 21649                                                      nasty   1
## 21650                                               neighborhood   1
## 21651                                                    nothing   1
## 21652                                                    nowhere   1
## 21653                                                   overlook   1
## 21654                                                   overrate   1
## 21655                                                        pat   1
## 21656                                                        pay   1
## 21657                                               philadelphia   1
## 21658                                                     philly   1
## 21659                                                       plus   1
## 21660                                                  political   1
## 21661                                                    pompous   1
## 21662                                                       poor   1
## 21663                                                     prefer   1
## 21664                                                    prevail   1
## 21665                                                    quality   1
## 21666                                                     rather   1
## 21667                                                  recommend   1
## 21668                                             recommendation   1
## 21669                                                        run   1
## 21670                                                       seem   1
## 21671                                                       spin   1
## 21672                                                      still   1
## 21673                                                   strongly   1
## 21674                                                       suck   1
## 21675                                                    suppose   1
## 21676                                                       tell   1
## 21677                                                 throughout   1
## 21678                                                      thumb   1
## 21679                                                        top   1
## 21680                                                    towards   1
## 21681                                                      trust   1
## 21682                                                        two   1
## 21683                                                        use   1
## 21684                                                    welcome   1
## 21685                                                       will   1
## 21686                                                       wish   1
## 21687                                                     worker   1
## 21688                                                        yea   1
## 21689                                                        yet   1
## 21690                                                     people   1
## 21691                                                        get   1
## 21692                                                       kind   1
## 21693                                                    another   1
## 21694                                                     office   1
## 21695                                                     always   1
## 21696                                                  attention   1
## 21697                                                     bright   1
## 21698                                                        bug   1
## 21699                                                   business   1
## 21700                                                   customer   1
## 21701                                                      drunk   1
## 21702                                                      first   1
## 21703                                                      genos   1
## 21704                                                       like   1
## 21705                                                      major   1
## 21706                                                       neon   1
## 21707                                                        new   1
## 21708                                                      smell   1
## 21709                                                       sort   1
## 21710                                                cheesesteak   1
## 21711                                               cheesesteaks   1
## 21712                                                    despite   1
## 21713                                                      didnt   1
## 21714                                                        far   1
## 21715                                                       food   1
## 21716                                                        get   1
## 21717                                                         go   1
## 21718                                                       high   1
## 21719                                                       know   1
## 21720                                                       live   1
## 21721                                                       much   1
## 21722                                                         pa   1
## 21723                                                     people   1
## 21724                                                      place   1
## 21725                                                     rather   1
## 21726                                                       real   1
## 21727                                                     really   1
## 21728                                                       roll   1
## 21729                                                       seem   1
## 21730                                                    sellout   1
## 21731                                                      south   1
## 21732                                                       sure   1
## 21733                                                        ton   1
## 21734                                                       tour   1
## 21735                                                       true   1
## 21736                                                      trust   1
## 21737                                                      wasnt   1
## 21738                                                      youre   1
## 21739                                                       give   1
## 21740                                                       good   1
## 21741                                                       hole   1
## 21742                                                     bright   1
## 21743                                                 correspond   1
## 21744                                                    display   1
## 21745                                                       hour   1
## 21746                                                       neon   1
## 21747                                                       jous   1
## 21748                                                         ju   1
## 21749                                                       call   1
## 21750                                                      close   1
## 21751                                                    english   1
## 21752                                                        mom   1
## 21753                                                      first   1
## 21754                                                    grandpa   1
## 21755                                                       move   1
## 21756                                                        due   1
## 21757                                                     nojust   1
## 21758                                                    overall   1
## 21759                                                    student   1
## 21760                                                         bc   1
## 21761                                                 definitely   1
## 21762                                                     delish   1
## 21763                                              establishment   1
## 21764                                                 experience   1
## 21765                                                      genos   1
## 21766                                                        get   1
## 21767                                                         go   1
## 21768                                                       grow   1
## 21769                                                       like   1
## 21770                                                        one   1
## 21771                                                      onion   1
## 21772                                                        pay   1
## 21773                                                    phillys   1
## 21774                                                   possible   1
## 21775                                                 reasonable   1
## 21776                                                   scarfing   1
## 21777                                                      south   1
## 21778                                                        top   1
## 21779                                                       vibe   1
## 21780                                                      visit   1
## 21781                                                      worth   1
## 21782                                                       youd   1
## 21783                                                 experience   1
## 21784                                                    largely   1
## 21785                                                    someone   1
## 21786                                                       sake   1
## 21787                                              establishment   1
## 21788                                               spokesperson   1
## 21789                                                       body   1
## 21790                                                  celebrity   1
## 21791                                                       make   1
## 21792                                                       star   1
## 21793                                                      didnt   1
## 21794                                                    suppose   1
## 21795                                                         do   1
## 21796                                                  apologize   1
## 21797                                                         do   1
## 21798                                                   bathroom   1
## 21799                                                       cash   1
## 21800                                                    chicken   1
## 21801                                              complimentary   1
## 21802                                                  condiment   1
## 21803                                                     figure   1
## 21804                                                       folk   1
## 21805                                                        fry   1
## 21806                                                        get   1
## 21807                                                      grill   1
## 21808                                                       like   1
## 21809                                                       make   1
## 21810                                                    outdoor   1
## 21811                                                    outside   1
## 21812                                                        rip   1
## 21813                                                       seat   1
## 21814                                                   separate   1
## 21815                                                       side   1
## 21816                                                   sidewalk   1
## 21817                                                       step   1
## 21818                                                    summary   1
## 21819                                                    surface   1
## 21820                                                    overall   1
## 21821                                                     chubby   1
## 21822                                                       navi   1
## 21823                                                unobtainium   1
## 21824                                                       bala   1
## 21825                                                     castor   1
## 21826                                                     choose   1
## 21827                                                    cottman   1
## 21828                                                       folk   1
## 21829                                                  frankford   1
## 21830                                                        get   1
## 21831                                                       jims   1
## 21832                                                     philly   1
## 21833                                                    prepare   1
## 21834                                                       rise   1
## 21835                                                         th   1
## 21836                                                      tommy   1
## 21837                                               wannabeguido   1
## 21838                                                      genos   1
## 21839                                                     middle   1
## 21840                                                       real   1
## 21841                                                      whats   1
## 21842                                                       also   1
## 21843                                                    average   1
## 21844                                                      beast   1
## 21845                                                      bread   1
## 21846                                                    chinese   1
## 21847                                                 compliment   1
## 21848                                               construction   1
## 21849                                                   customer   1
## 21850                                                         do   1
## 21851                                                      drink   1
## 21852                                                      eater   1
## 21853                                                      extra   1
## 21854                                                       food   1
## 21855                                                        fry   1
## 21856                                                   generous   1
## 21857                                                         go   1
## 21858                                                       hate   1
## 21859                                            honestlynothing   1
## 21860                                                      juice   1
## 21861                                                       kind   1
## 21862                                                         le   1
## 21863                                                       like   1
## 21864                                                      local   1
## 21865                                                       many   1
## 21866                                                       meat   1
## 21867                                                  necessity   1
## 21868                                                       okay   1
## 21869                                                        one   1
## 21870                                                   overrate   1
## 21871                                                       part   1
## 21872                                                     person   1
## 21873                                               philadelphia   1
## 21874                                                      place   1
## 21875                                                   probably   1
## 21876                                                    product   1
## 21877                                                    quality   1
## 21878                                                  recommend   1
## 21879                                                       roll   1
## 21880                                                       rude   1
## 21881                                                   sandwich   1
## 21882                                                       seem   1
## 21883                                                    someone   1
## 21884                                                  sometimes   1
## 21885                                                       spin   1
## 21886                                                    suppose   1
## 21887                                                temperature   1
## 21888                                                     thinly   1
## 21889                                                        try   1
## 21890                                                        yea   1
## 21891                                                      think   1
## 21892                                                  wallpaper   1
## 21893                                               cheesesteaks   1
## 21894                                                       line   1
## 21895                                                        one   1
## 21896                                                      score   1
## 21897                                                     sizeno   1
## 21898                                                        law   1
## 21899                                                 altogether   1
## 21900                                                     cheese   1
## 21901                                                    compare   1
## 21902                                                      crowd   1
## 21903                                             disappointment   1
## 21904                                                       dump   1
## 21905                                                       food   1
## 21906                                                fortunately   1
## 21907                                                       good   1
## 21908                                                       like   1
## 21909                                                     little   1
## 21910                                                       long   1
## 21911                                                      nasty   1
## 21912                                                        one   1
## 21913                                                      order   1
## 21914                                                       park   1
## 21915                                                      right   1
## 21916                                                       save   1
## 21917                                                       seem   1
## 21918                                                      soggy   1
## 21919                                                      staff   1
## 21920                                                      taste   1
## 21921                                                       time   1
## 21922                                                   touristy   1
## 21923                                                    traffic   1
## 21924                                                        two   1
## 21925                                                       hell   1
## 21926                                                        add   1
## 21927                                                      first   1
## 21928                                                       pipe   1
## 21929                                                     review   1
## 21930                                                    several   1
## 21931                                                   customer   1
## 21932                                                      order   1
## 21933                                                      point   1
## 21934                                                       post   1
## 21935                                                     racist   1
## 21936                                                        win   1
## 21937                                                       cash   1
## 21938                                                    citizen   1
## 21939                                                         do   1
## 21940                                                       hear   1
## 21941                                                      learn   1
## 21942                                                     please   1
## 21943                                                  principle   1
## 21944                                                surrounding   1
## 21945                                                      white   1
## 21946                                                      youre   1
## 21947                                                    service   1
## 21948                                                   absolute   1
## 21949                                                  abysmally   1
## 21950                                                       also   1
## 21951                                                      amaze   1
## 21952                                                    anytime   1
## 21953                                                     around   1
## 21954                                                 asideenjoy   1
## 21955                                                       back   1
## 21956                                                   berkeley   1
## 21957                                                        boy   1
## 21958                                                  boyfriend   1
## 21959                                                     bright   1
## 21960                                                       call   1
## 21961                                                    careful   1
## 21962                                                       case   1
## 21963                                                     cheese   1
## 21964                                               cheesesteaks   1
## 21965                                                   consider   1
## 21966                                                        cup   1
## 21967                                                   customer   1
## 21968                                                        day   1
## 21969                                                 definitely   1
## 21970                                                  determine   1
## 21971                                           disappointmentwe   1
## 21972                                                 disastrous   1
## 21973                                                         do   1
## 21974                                                       drip   1
## 21975                                                     either   1
## 21976                                              establishment   1
## 21977                                                       even   1
## 21978                                                     family   1
## 21979                                                  fantastic   1
## 21980                                                      favor   1
## 21981                                                        fee   1
## 21982                                                      fence   1
## 21983                                                    finally   1
## 21984                                                       food   1
## 21985                                                    forever   1
## 21986                                                 frequently   1
## 21987                                                    garbage   1
## 21988                                                      ginos   1
## 21989                                                       give   1
## 21990                                                   goodness   1
## 21991                                                      gotta   1
## 21992                                                      gross   1
## 21993                                                      guess   1
## 21994                                                       half   1
## 21995                                                 hardearned   1
## 21996                                                       head   1
## 21997                                                       hero   1
## 21998                                                   hometown   1
## 21999                                                       hour   1
## 22000                                                       hype   1
## 22001                                                    impress   1
## 22002                                                      joeys   1
## 22003                                                       keep   1
## 22004                                                        kid   1
## 22005                                                       know   1
## 22006                                                       lady   1
## 22007                                                      leave   1
## 22008                                                        let   1
## 22009                                                      light   1
## 22010                                                        mad   1
## 22011                                                        mom   1
## 22012                                                       much   1
## 22013                                                     napkin   1
## 22014                                               neighborhood   1
## 22015                                                      never   1
## 22016                                                        now   1
## 22017                                                   oblivion   1
## 22018                                                      onion   1
## 22019                                                  overhyped   1
## 22020                                                  overwhelm   1
## 22021                                                       park   1
## 22022                                                        pay   1
## 22023                                                     people   1
## 22024                                                     philly   1
## 22025                                                      piece   1
## 22026                                                      point   1
## 22027                                                     racist   1
## 22028                                                        raw   1
## 22029                                                   remember   1
## 22030                                                     result   1
## 22031                                                      right   1
## 22032                                                       rude   1
## 22033                                                        say   1
## 22034                                                        see   1
## 22035                                                      share   1
## 22036                                                       shop   1
## 22037                                                       show   1
## 22038                                                     silver   1
## 22039                                                        sir   1
## 22040                                                      slice   1
## 22041                                                       soon   1
## 22042                                                      staff   1
## 22043                                                     subway   1
## 22044                                                    succeed   1
## 22045                                                       sure   1
## 22046                                                       take   1
## 22047                                                        two   1
## 22048                                                        use   1
## 22049                                                   vigorous   1
## 22050                                                      vomit   1
## 22051                                                      wasnt   1
## 22052                                                      whole   1
## 22053                                                       will   1
## 22054                                                     window   1
## 22055                                                       wont   1
## 22056                                                      worth   1
## 22057                                                    wouldnt   1
## 22058                                                       year   1
## 22059                                                        yes   1
## 22060                                                       seem   1
## 22061                                                        raw   1
## 22062                                                       also   1
## 22063                                                     always   1
## 22064                                                    another   1
## 22065                                                      bland   1
## 22066                                                        buy   1
## 22067                                               cheesesteaks   1
## 22068                                                      clean   1
## 22069                                                    combine   1
## 22070                                                       cook   1
## 22071                                              deliciousness   1
## 22072                                                        eat   1
## 22073                                                        eff   1
## 22074                                                        eve   1
## 22075                                                       ever   1
## 22076                                                      every   1
## 22077                                                       fake   1
## 22078                                                       feel   1
## 22079                                                    finally   1
## 22080                                                       food   1
## 22081                                                        fry   1
## 22082                                                        get   1
## 22083                                                        guy   1
## 22084                                                    history   1
## 22085                                                    however   1
## 22086                                                      kinda   1
## 22087                                                       last   1
## 22088                                                     little   1
## 22089                                                       make   1
## 22090                                                       meat   1
## 22091                                                       must   1
## 22092                                                       neon   1
## 22093                                                      never   1
## 22094                                                    nothing   1
## 22095                                                        pat   1
## 22096                                                     people   1
## 22097                                                   personal   1
## 22098                                                     philly   1
## 22099                                                    phillys   1
## 22100                                                      place   1
## 22101                                                      price   1
## 22102                                                      ready   1
## 22103                                                     really   1
## 22104                                                      saucy   1
## 22105                                                       suck   1
## 22106                                                       sure   1
## 22107                                                     theyre   1
## 22108                                                      think   1
## 22109                                                     tripso   1
## 22110                                                        way   1
## 22111                                                       will   1
## 22112                                                       wish   1
## 22113                                                      worth   1
## 22114                                                      write   1
## 22115                                                        pat   1
## 22116                                                   actually   1
## 22117                                                     almost   1
## 22118                                                       also   1
## 22119                                                    another   1
## 22120                                                     appall   1
## 22121                                                     arrive   1
## 22122                                                       cant   1
## 22123                                                cheesesteak   1
## 22124                                                      clear   1
## 22125                                                 especially   1
## 22126                                              establishment   1
## 22127                                                      every   1
## 22128                                                       fact   1
## 22129                                                     family   1
## 22130                                                       food   1
## 22131                                                      genos   1
## 22132                                                       good   1
## 22133                                                   horrible   1
## 22134                                                       hype   1
## 22135                                                       just   1
## 22136                                                       like   1
## 22137                                                       make   1
## 22138                                                       neon   1
## 22139                                                      onion   1
## 22140                                                     paltry   1
## 22141                                                       park   1
## 22142                                                        pat   1
## 22143                                                     people   1
## 22144                                                    product   1
## 22145                                                     racism   1
## 22146                                                     racist   1
## 22147                                                        rat   1
## 22148                                                    regular   1
## 22149                                                   sandwich   1
## 22150                                                    service   1
## 22151                                                      soggy   1
## 22152                                                       spin   1
## 22153                                                    suggest   1
## 22154                                                     travel   1
## 22155                                                      treat   1
## 22156                                               unappetizing   1
## 22157                                                  unchopped   1
## 22158                                                 vegetarian   1
## 22159                                                        way   1
## 22160                                                      whole   1
## 22161                                                       yank   1
## 22162                                                      bland   1
## 22163                                                  expensive   1
## 22164                                                     racist   1
## 22165                                                       cook   1
## 22166                                                        eat   1
## 22167                                                     inside   1
## 22168                                                       just   1
## 22169                                                   memorial   1
## 22170                                                      since   1
## 22171                                                         go   1
## 22172                                                      order   1
## 22173                                                        pro   1
## 22174                                                    sibling   1
## 22175                                                       ceil   1
## 22176                                                      cover   1
## 22177                                                   interest   1
## 22178                                                     mostly   1
## 22179                                                   overhead   1
## 22180                                                      thats   1
## 22181                                                     winter   1
## 22182                                                       cold   1
## 22183                                                     witout   1
## 22184                                                         ny   1
## 22185                                                    impress   1
## 22186                                                     philly   1
## 22187                                                       want   1
## 22188                                                       cant   1
## 22189                                                         go   1
## 22190                                                       good   1
## 22191                                                      lunch   1
## 22192                                                      owner   1
## 22193                                                        pay   1
## 22194                                                  publicity   1
## 22195                                                      ready   1
## 22196                                                    rivalry   1
## 22197                                                      slice   1
## 22198                                                      sorry   1
## 22199                                                     tshirt   1
## 22200                                                     window   1
## 22201                                                      youre   1
## 22202                                                        cow   1
## 22203                                                         id   1
## 22204                                                      niece   1
## 22205                                                       onto   1
## 22206                                                    service   1
## 22207                                                  synthetic   1
## 22208                                                        wiz   1
## 22209                                                          4   1
## 22210                                                     across   1
## 22211                                                   actually   1
## 22212                                                   againbut   1
## 22213                                                        aka   1
## 22214                                                      alley   1
## 22215                                                     almost   1
## 22216                                                       also   1
## 22217                                                     anyone   1
## 22218                                                    anytime   1
## 22219                                                  arlington   1
## 22220                                                     around   1
## 22221                                                        atl   1
## 22222                                                   atlantic   1
## 22223                                                 atmosphere   1
## 22224                                             attitudeicious   1
## 22225                                                 australian   1
## 22226                                                      avoid   1
## 22227                                                       bite   1
## 22228                                                  boardwalk   1
## 22229                                                      break   1
## 22230                                                  breakfast   1
## 22231                                                      bronx   1
## 22232                                                   brooklyn   1
## 22233                                                       buck   1
## 22234                                                        buy   1
## 22235                                                         ca   1
## 22236                                                        can   1
## 22237                                                   carcause   1
## 22238                                                     chance   1
## 22239                                                     charge   1
## 22240                                                    chicago   1
## 22241                                                  childhood   1
## 22242                                                     christ   1
## 22243                                                        civ   1
## 22244                                                      close   1
## 22245                                                       come   1
## 22246                                                  community   1
## 22247                                                consecutive   1
## 22248                                                consolation   1
## 22249                                                 convenient   1
## 22250                                                       cook   1
## 22251                                                    correct   1
## 22252                                                    couldnt   1
## 22253                                                   coworker   1
## 22254                                                      cross   1
## 22255                                                      curse   1
## 22256                                                        cut   1
## 22257                                                     decade   1
## 22258                                                 definitely   1
## 22259                                                  desperate   1
## 22260                                                   dietfish   1
## 22261                                                    disgust   1
## 22262                                                   downfall   1
## 22263                                                       east   1
## 22264                                                 especially   1
## 22265                                                     europe   1
## 22266                                                       ever   1
## 22267                                                    example   1
## 22268                                                      extra   1
## 22269                                                   familiar   1
## 22270                                                     figure   1
## 22271                                                       find   1
## 22272                                                      first   1
## 22273                                                    florida   1
## 22274                                                       food   1
## 22275                                                    freedom   1
## 22276                                                        fun   1
## 22277                                                     future   1
## 22278                                                        gas   1
## 22279                                                       give   1
## 22280                                                       hear   1
## 22281                                                      hence   1
## 22282                                                       high   1
## 22283                                                     honest   1
## 22284                                                      house   1
## 22285                                                    however   1
## 22286                                                    husband   1
## 22287                                                  ignorance   1
## 22288                                                    italian   1
## 22289                                                     jersey   1
## 22290                                                       keep   1
## 22291                                                         la   1
## 22292                                                       last   1
## 22293                                                      leave   1
## 22294                                                       less   1
## 22295                                                       life   1
## 22296                                                       like   1
## 22297                                                       link   1
## 22298                                                       many   1
## 22299                                                   maryland   1
## 22300                                                     middle   1
## 22301                                                       mile   1
## 22302                                                    morning   1
## 22303                                                     motion   1
## 22304                                                      mouth   1
## 22305                                                     native   1
## 22306                                                      never   1
## 22307                                                      night   1
## 22308                                                      north   1
## 22309                                                         ny   1
## 22310                                                  offensive   1
## 22311                                                         oh   1
## 22312                                                       okay   1
## 22313                                                        old   1
## 22314                                                       onto   1
## 22315                                                       open   1
## 22316                                                      other   1
## 22317                                                  otherwise   1
## 22318                                                        owe   1
## 22319                                                         oz   1
## 22320                                                       park   1
## 22321                                                       part   1
## 22322                                                        pay   1
## 22323                                                     people   1
## 22324                                                 personally   1
## 22325                                                 pittsburgh   1
## 22326                                                       plan   1
## 22327                                                      plane   1
## 22328                                                      point   1
## 22329                                                     pretty   1
## 22330                                                      price   1
## 22331                                                  provolone   1
## 22332                                                         ps   1
## 22333                                                    putting   1
## 22334                                                       real   1
## 22335                                                  recognize   1
## 22336                                               recommendhow   1
## 22337                                                     return   1
## 22338                                                     review   1
## 22339                                                       road   1
## 22340                                                       rude   1
## 22341                                                     sadden   1
## 22342                                                      salty   1
## 22343                                                        san   1
## 22344                                                     sayswe   1
## 22345                                                        see   1
## 22346                                                       seem   1
## 22347                                                         sf   1
## 22348                                                      shove   1
## 22349                                                      since   1
## 22350                                                      sober   1
## 22351                                                    someone   1
## 22352                                                   sometime   1
## 22353                                                  sometimes   1
## 22354                                                    steakum   1
## 22355                                                      story   1
## 22356                                                          t   1
## 22357                                                     taipei   1
## 22358                                                  tasteless   1
## 22359                                                       tell   1
## 22360                                                  thereever   1
## 22361                                                      think   1
## 22362                                                     throat   1
## 22363                                                      throw   1
## 22364                                                       town   1
## 22365                                                       turn   1
## 22366                                                    vehicle   1
## 22367                                                   virginia   1
## 22368                                                       walk   1
## 22369                                                       want   1
## 22370                                                       week   1
## 22371                                                      witch   1
## 22372                                                       year   1
## 22373                                                        big   1
## 22374                                                     across   1
## 22375                                                    italian   1
## 22376                                                      speak   1
## 22377                                                  provolone   1
## 22378                                                       must   1
## 22379                                                     decide   1
## 22380                                                  determine   1
## 22381                                                     within   1
## 22382                                                       wont   1
## 22383                                                     slogan   1
## 22384                                                     across   1
## 22385                                                   actually   1
## 22386                                                        add   1
## 22387                                                    alright   1
## 22388                                                   although   1
## 22389                                                      amaze   1
## 22390                                                    analogy   1
## 22391                                                    anyways   1
## 22392                                                       area   1
## 22393                                                  atrocious   1
## 22394                                                    attempt   1
## 22395                                                       base   1
## 22396                                                        bet   1
## 22397                                                    bigotry   1
## 22398                                                       bite   1
## 22399                                                       bout   1
## 22400                                                        boy   1
## 22401                                                        bun   1
## 22402                                                   business   1
## 22403                                            businessomgthis   1
## 22404                                                       call   1
## 22405                                                     charge   1
## 22406                                                chesesteaks   1
## 22407                                                      chewy   1
## 22408                                                     circus   1
## 22409                                                 completely   1
## 22410                                            compromisethats   1
## 22411                                                   consider   1
## 22412                                                      craft   1
## 22413                                                        cut   1
## 22414                                                   decision   1
## 22415                                                      decor   1
## 22416                                                      didnt   1
## 22417                                                       dine   1
## 22418                                              disapppointed   1
## 22419                                                        dog   1
## 22420                                              embarrassment   1
## 22421                                                   employee   1
## 22422                                                      empty   1
## 22423                                                      enemy   1
## 22424                                                    english   1
## 22425                                                     enough   1
## 22426                                                   everyone   1
## 22427                                              expecteddidnt   1
## 22428                                                     famous   1
## 22429                                                       feel   1
## 22430                                                       find   1
## 22431                                                      first   1
## 22432                                                       four   1
## 22433                                                     freeze   1
## 22434                                                     french   1
## 22435                                                        fyi   1
## 22436                                                      guess   1
## 22437                                                       high   1
## 22438                                                      hoard   1
## 22439                                                    however   1
## 22440                                                         id   1
## 22441                                                immediately   1
## 22442                                                 impression   1
## 22443                                                 improperly   1
## 22444                                                 ingredient   1
## 22445                                                  interrupt   1
## 22446                                                       isnt   1
## 22447                                                       itss   1
## 22448                                                      judge   1
## 22449                                                       lady   1
## 22450                                                   landmark   1
## 22451                                                       last   1
## 22452                                                        let   1
## 22453                                                       life   1
## 22454                                                lightingits   1
## 22455                                                       line   1
## 22456                                                     little   1
## 22457                                                       long   1
## 22458                                                       look   1
## 22459                                                       lose   1
## 22460                                                   lukewarm   1
## 22461                                                 management   1
## 22462                                                     manner   1
## 22463                                                       many   1
## 22464                                                    mention   1
## 22465                                                   misguide   1
## 22466                                                       miss   1
## 22467                                                      money   1
## 22468                                                      mouth   1
## 22469                                                     mustve   1
## 22470                                                      nacho   1
## 22471                                                       name   1
## 22472                                                      never   1
## 22473                                                        new   1
## 22474                                                       next   1
## 22475                                                      night   1
## 22476                                                  nightmare   1
## 22477                                                     notice   1
## 22478                                                    nowhere   1
## 22479                                                      offer   1
## 22480                                                        omg   1
## 22481                                                        ooo   1
## 22482                                                 outrageous   1
## 22483                                                    overall   1
## 22484                                                  overhyped   1
## 22485                                               particularly   1
## 22486                                              philadelphian   1
## 22487                                                      pizza   1
## 22488                                                       plus   1
## 22489                                                    politic   1
## 22490                                                politicsand   1
## 22491                                                   possible   1
## 22492                                                      press   1
## 22493                                                      price   1
## 22494                                                    product   1
## 22495                                                  publicity   1
## 22496                                                        put   1
## 22497                                                        rap   1
## 22498                                                        rep   1
## 22499                                                 reputation   1
## 22500                                                     ribeye   1
## 22501                                                       roll   1
## 22502                                                       rude   1
## 22503                                                     rumour   1
## 22504                                                       save   1
## 22505                                                      scrap   1
## 22506                                                  selection   1
## 22507                                                      serve   1
## 22508                                                      shape   1
## 22509                                                       side   1
## 22510                                                       sign   1
## 22511                                                  skeptical   1
## 22512                                                      smell   1
## 22513                                                  something   1
## 22514                                                       soso   1
## 22515                                                      south   1
## 22516                                                spectacular   1
## 22517                                                      spell   1
## 22518                                                       spin   1
## 22519                                                       spot   1
## 22520                                                      staff   1
## 22521                                                      start   1
## 22522                                                      stock   1
## 22523                                                    stomach   1
## 22524                                                        sub   1
## 22525                                                     subway   1
## 22526                                                    suppose   1
## 22527                                                      sushi   1
## 22528                                                       talk   1
## 22529                                                    texture   1
## 22530                                                     theres   1
## 22531                                                      thick   1
## 22532                                                     though   1
## 22533                                                       time   1
## 22534                                                  treatment   1
## 22535                                                      trust   1
## 22536                                                        two   1
## 22537                                              uncomfortable   1
## 22538                                                 unfriendly   1
## 22539                                                     upshot   1
## 22540                                                        use   1
## 22541                                                      usual   1
## 22542                                                      value   1
## 22543                                                      visit   1
## 22544                                                       weve   1
## 22545                                                       wont   1
## 22546                                                      worth   1
## 22547                                                    putting   1
## 22548                                                       just   1
## 22549                                                       bing   1
## 22550                                                       boom   1
## 22551                                                    anymore   1
## 22552                                                   sandwich   1
## 22553                                                     across   1
## 22554                                                     button   1
## 22555                                                firefighter   1
## 22556                                                   hometown   1
## 22557                                                      honor   1
## 22558                                                    kitchen   1
## 22559                                                       many   1
## 22560                                                  obviously   1
## 22561                                                   ornament   1
## 22562                                                   ossining   1
## 22563                                                     police   1
## 22564                                                      pride   1
## 22565                                                       side   1
## 22566                                                         us   1
## 22567                                                       wall   1
## 22568                                                     french   1
## 22569                                                         go   1
## 22570                                                   honestly   1
## 22571                                                    however   1
## 22572                                                    prepare   1
## 22573                                                       just   1
## 22574                                                      place   1
## 22575                                                        pox   1
## 22576                                                    airport   1
## 22577                                                        can   1
## 22578                                                        car   1
## 22579                                                      carry   1
## 22580                                                       chip   1
## 22581                                                      didnt   1
## 22582                                                      donut   1
## 22583                                                       fill   1
## 22584                                                      fresh   1
## 22585                                                     friend   1
## 22586                                                       half   1
## 22587                                                       make   1
## 22588                                                       move   1
## 22589                                                     napkin   1
## 22590                                                        pat   1
## 22591                                                    provide   1
## 22592                                                      ready   1
## 22593                                                   sandwich   1
## 22594                                                   separate   1
## 22595                                                    serious   1
## 22596                                                        sir   1
## 22597                                                      steak   1
## 22598                                                       take   1
## 22599                                                       walk   1
## 22600                                                        you   1
## 22601                                                   doordash   1
## 22602                                                       hell   1
## 22603                                                       word   1
## 22604                                                      maybe   1
## 22605                                                       meat   1
## 22606                                                       pack   1
## 22607                                                       soft   1
## 22608                                                      style   1
## 22609                                                expectation   1
## 22610                                                      bread   1
## 22611                                                       even   1
## 22612                                                       good   1
## 22613                                                       oven   1
## 22614                                                    product   1
## 22615                                                       shit   1
## 22616                                                      biker   1
## 22617                                                       meat   1
## 22618                                                       area   1
## 22619                                               cheesesteaks   1
## 22620                                                      hence   1
## 22621                                                       make   1
## 22622                                                      super   1
## 22623                                                  delicious   1
## 22624                                                  flavorful   1
## 22625                                                      juicy   1
## 22626                                                       much   1
## 22627                                                  overpower   1
## 22628                                                     philly   1
## 22629                                                  seriously   1
## 22630                                                      steak   1
## 22631                                                       tony   1
## 22632                                                       whiz   1
## 22633                                                        say   1
## 22634                                                      eagle   1
## 22635                                                       bust   1
## 22636                                                 definitely   1
## 22637                                                      field   1
## 22638                                                       game   1
## 22639                                                      price   1
## 22640                                                       wait   1
## 22641                                                      price   1
## 22642                                                       tour   1
## 22643                                                   complete   1
## 22644                                                         im   1
## 22645                                                      johns   1
## 22646                                                       make   1
## 22647                                                    morning   1
## 22648                                                       pike   1
## 22649                                               specifically   1
## 22650                                                     street   1
## 22651                                                      think   1
## 22652                                                     though   1
## 22653                                                        bam   1
## 22654                                                       boom   1
## 22655                                                      light   1
## 22656                                                   sheraton   1
## 22657                                                     steves   1
## 22658                                                     nearby   1
## 22659                                                        hey   1
## 22660                                                    burrito   1
## 22661                                                      thank   1
## 22662                                                   mushroom   1
## 22663                                                  otherwise   1
## 22664                                                       stay   1
## 22665                                                       bout   1
## 22666                                                         im   1
## 22667                                                       park   1
## 22668                                                      visit   1
## 22669                                                       feel   1
## 22670                                              prorepublican   1
## 22671                                                    support   1
## 22672                                                     around   1
## 22673                                                       buzz   1
## 22674                                                      claim   1
## 22675                                                cleanliness   1
## 22676                                                      close   1
## 22677                                                         do   1
## 22678                                                      first   1
## 22679                                                     fluffy   1
## 22680                                                         go   1
## 22681                                                      grill   1
## 22682                                                      hella   1
## 22683                                                        hop   1
## 22684                                                        ice   1
## 22685                                                    ketchup   1
## 22686                                                      large   1
## 22687                                                        let   1
## 22688                                                       like   1
## 22689                                                       luck   1
## 22690                                                       meat   1
## 22691                                                       need   1
## 22692                                                       pick   1
## 22693                                                       rude   1
## 22694                                                        say   1
## 22695                                                  seriously   1
## 22696                                                        set   1
## 22697                                                     though   1
## 22698                                                        two   1
## 22699                                                        use   1
## 22700                                                      genos   1
## 22701                                                          p   1
## 22702                                                    chicken   1
## 22703                                                       play   1
## 22704                                                      prime   1
## 22705                                                       cook   1
## 22706                                                       hand   1
## 22707                                                     market   1
## 22708                                                   approach   1
## 22709                                                    average   1
## 22710                                                      bring   1
## 22711                                                 cheesenice   1
## 22712                                                      crack   1
## 22713                                               decipherable   1
## 22714                                                   describe   1
## 22715                                            distinguishable   1
## 22716                                                       fill   1
## 22717                                                       find   1
## 22718                                                   friendly   1
## 22719                                                       help   1
## 22720                                                       hint   1
## 22721                                                        hot   1
## 22722                                                       make   1
## 22723                                                       meet   1
## 22724                                                       must   1
## 22725                                                       need   1
## 22726                                                  noticable   1
## 22727                                                     people   1
## 22728                                                perceptible   1
## 22729                                               recognizable   1
## 22730                                                   remember   1
## 22731                                                   sandwich   1
## 22732                                                     season   1
## 22733                                                       seat   1
## 22734                                                        see   1
## 22735                                                       semi   1
## 22736                                                     smidge   1
## 22737                                                      smile   1
## 22738                                                   sprinkle   1
## 22739                                                      steak   1
## 22740                                                       tell   1
## 22741                                                 understand   1
## 22742                                                       wait   1
## 22743                                                       warm   1
## 22744                                                        wiz   1
## 22745                                                       skip   1
## 22746                                                        use   1
## 22747                                                   wellknew   1
## 22748                                                       fill   1
## 22749                                                        try   1
## 22750                                                       want   1
## 22751                                                 foundation   1
## 22752                                                      right   1
## 22753                                                        hit   1
## 22754                                                        bad   1
## 22755                                                         th   1
## 22756                                                        man   1
## 22757                                                    cleaver   1
## 22758                                                roxbourough   1
## 22759                                                    tourist   1
## 22760                                                    gremlin   1
## 22761                                                    comment   1
## 22762                                                       give   1
## 22763                                                       late   1
## 22764                                                       like   1
## 22765                                                        say   1
## 22766                                                     actual   1
## 22767                                                    asshole   1
## 22768                                                   attitude   1
## 22769                                                       bite   1
## 22770                                                     cheese   1
## 22771                                                     couple   1
## 22772                                                  criterion   1
## 22773                                                   decision   1
## 22774                                              establishment   1
## 22775                                                 everything   1
## 22776                                                 experience   1
## 22777                                                       fact   1
## 22778                                                        far   1
## 22779                                                        fat   1
## 22780                                                       feel   1
## 22781                                           foodtastequality   1
## 22782                                                     friend   1
## 22783                                                    general   1
## 22784                                                         go   1
## 22785                                                      gwady   1
## 22786                                                    history   1
## 22787                                               intoxication   1
## 22788                                                       just   1
## 22789                                                   location   1
## 22790                                                   majority   1
## 22791                                                   memorial   1
## 22792                                                  notoriety   1
## 22793                                                       numb   1
## 22794                                                     online   1
## 22795                                                  overwhelm   1
## 22796                                                       past   1
## 22797                                                     purely   1
## 22798                                                    quality   1
## 22799                                                       race   1
## 22800                                                       rate   1
## 22801                                                     recent   1
## 22802                                                  recommend   1
## 22803                                                 reputation   1
## 22804                                                   sandwich   1
## 22805                                                     select   1
## 22806                                                      silly   1
## 22807                                                     single   1
## 22808                                                     solely   1
## 22809                                                       star   1
## 22810                                                    texture   1
## 22811                                                    tourist   1
## 22812                                                   variable   1
## 22813                                                        way   1
## 22814                                                      field   1
## 22815                                                       park   1
## 22816                                                       road   1
## 22817                                                        mom   1
## 22818                                                      genos   1
## 22819                                                    latinos   1
## 22820                                                      other   1
## 22821                                                        pat   1
## 22822                                                         af   1
## 22823                                                        ass   1
## 22824                                                      bread   1
## 22825                                                   business   1
## 22826                                                        can   1
## 22827                                                     expect   1
## 22828                                                 ingredient   1
## 22829                                                       just   1
## 22830                                                       next   1
## 22831                                                       rule   1
## 22832                                                   sandwich   1
## 22833                                                     simple   1
## 22834                                                      steak   1
## 22835                                                        sub   1
## 22836                                                       thin   1
## 22837                                                    tourist   1
## 22838                                                 understand   1
## 22839                                                   anything   1
## 22840                                                        ask   1
## 22841                                                      bunch   1
## 22842                                                    consist   1
## 22843                                                     decide   1
## 22844                                                  epitomize   1
## 22845                                                 flavorless   1
## 22846                                                       food   1
## 22847                                                      genos   1
## 22848                                                     golden   1
## 22849                                                identically   1
## 22850                                                       just   1
## 22851                                                       mere   1
## 22852                                                     minute   1
## 22853                                                      nacho   1
## 22854                                                   overrate   1
## 22855                                                        pay   1
## 22856                                                 restaurant   1
## 22857                                                        say   1
## 22858                                                      shout   1
## 22859                                                       slab   1
## 22860                                                       slap   1
## 22861                                                      stand   1
## 22862                                                      state   1
## 22863                                                       tell   1
## 22864                                                      think   1
## 22865                                                       time   1
## 22866                                                        try   1
## 22867                                                     unless   1
## 22868                                                       walk   1
## 22869                                                      write   1
## 22870                                                     philly   1
## 22871                                                     anyway   1
## 22872                                                     league   1
## 22873                                                       shoe   1
## 22874                                                   overrate   1
## 22875                                                    freedom   1
## 22876                                                         bc   1
## 22877                                                   favorite   1
## 22878                                                      genos   1
## 22879                                                        mvp   1
## 22880                                                       flat   1
## 22881                                                      leave   1
## 22882                                                      steak   1
## 22883                                                       room   1
## 22884                                                       work   1
## 22885                                                 afterwards   1
## 22886                                                       also   1
## 22887                                                   ambiance   1
## 22888                                                   anywhere   1
## 22889                                                      await   1
## 22890                                                  bartender   1
## 22891                                                      bread   1
## 22892                                                         do   1
## 22893                                                     either   1
## 22894                                                       feel   1
## 22895                                                         fu   1
## 22896                                                         go   1
## 22897                                                      hotel   1
## 22898                                                     nearby   1
## 22899                                                    outside   1
## 22900                                                    overall   1
## 22901                                                     result   1
## 22902                                                       rude   1
## 22903                                                      stick   1
## 22904                                                       stop   1
## 22905                                                       take   1
## 22906                                                       time   1
## 22907                                                        tmi   1
## 22908                                                        wet   1
## 22909                                                      soooo   1
## 22910                                                      begin   1
## 22911                                                       best   1
## 22912                                                     cheese   1
## 22913                                                      enjoy   1
## 22914                                                      glory   1
## 22915                                                       good   1
## 22916                                                      gotta   1
## 22917                                                   horrible   1
## 22918                                                        ill   1
## 22919                                                       make   1
## 22920                                                       many   1
## 22921                                                   neighbor   1
## 22922                                                       nose   1
## 22923                                                       rage   1
## 22924                                                   sandwich   1
## 22925                                                       stop   1
## 22926                                                      thing   1
## 22927                                                        two   1
## 22928                                                  vicksburg   1
## 22929                                                        win   1
## 22930                                                       year   1
## 22931                                                        joe   1
## 22932                                                      since   1
## 22933                                                    outdoor   1
## 22934                                                       isnt   1
## 22935                                                 particular   1
## 22936                                                       tell   1
## 22937                                                    outside   1
## 22938                                                     follow   1
## 22939                                                         go   1
## 22940                                                      sauce   1
## 22941                                                        six   1
## 22942                                                        war   1
## 22943                                                      carry   1
## 22944                                                       cold   1
## 22945                                                      covid   1
## 22946                                                    current   1
## 22947                                                        far   1
## 22948                                                     friend   1
## 22949                                                        get   1
## 22950                                                        guy   1
## 22951                                                       hype   1
## 22952                                                       mess   1
## 22953                                                       miss   1
## 22954                                                     people   1
## 22955                                                     provvy   1
## 22956                                                          u   1
## 22957                                                       want   1
## 22958                                                      waste   1
## 22959                                                    history   1
## 22960                                                  embarrass   1
## 22961                                                     flight   1
## 22962                                                      light   1
## 22963                                                     philly   1
## 22964                                                cheesesteak   1
## 22965                                                     grease   1
## 22966                                                       hard   1
## 22967                                                    america   1
## 22968                                                    discuss   1
## 22969                                                        guy   1
## 22970                                                       hand   1
## 22971                                                       long   1
## 22972                                                  notoriety   1
## 22973                                                  offensive   1
## 22974                                                 preference   1
## 22975                                                        son   1
## 22976                                                      state   1
## 22977                                                      think   1
## 22978                                                      whole   1
## 22979                                                        yet   1
## 22980                                                       make   1
## 22981                                                        sit   1
## 22982                                                 completely   1
## 22983                                                      enjoy   1
## 22984                                                    portion   1
## 22985                                                       tear   1
## 22986                                                      wield   1
## 22987                                                   anything   1
## 22988                                                crossstreet   1
## 22989                                                       fast   1
## 22990                                                     ginoss   1
## 22991                                                    however   1
## 22992                                               ishkabibbles   1
## 22993                                                      juicy   1
## 22994                                                        key   1
## 22995                                                  landslide   1
## 22996                                                       long   1
## 22997                                                milesbetter   1
## 22998                                                       nerf   1
## 22999                                                  nostalgia   1
## 23000                                                    nothing   1
## 23001                                                         oh   1
## 23002                                                        one   1
## 23003                                                    penguin   1
## 23004                                                     philly   1
## 23005                                                    quality   1
## 23006                                                       roll   1
## 23007                                                    service   1
## 23008                                                      shell   1
## 23009                                                      visit   1
## 23010                                                       wawa   1
## 23011                                                    weather   1
## 23012                                                      drive   1
## 23013                                                    whereas   1
## 23014                                                       feel   1
## 23015                                                       mini   1
## 23016                                                    service   1
## 23017                                                     cherry   1
## 23018                                                    country   1
## 23019                                                       work   1
## 23020                                                cheesesteak   1
## 23021                                                    country   1
## 23022                                                        pat   1
## 23023                                                     theyre   1
## 23024                                                       geno   1
## 23025                                                   apparent   1
## 23026                                                    arbiter   1
## 23027                                                      bland   1
## 23028                                                    brusque   1
## 23029                                                     cheese   1
## 23030                                              commercialize   1
## 23031                                                 complacent   1
## 23032                                                    congeal   1
## 23033                                                  determine   1
## 23034                                                     famous   1
## 23035                                                   fastfood   1
## 23036                                                     friend   1
## 23037                                                       glue   1
## 23038                                                       icon   1
## 23039                                              indispensable   1
## 23040                                          indistinguishable   1
## 23041                                                       just   1
## 23042                                                       next   1
## 23043                                                    overrun   1
## 23044                                                  overwhelm   1
## 23045                                                       park   1
## 23046                                                    popular   1
## 23047                                                 reasonably   1
## 23048                                                       self   1
## 23049                                                      soggy   1
## 23050                                                   touristy   1
## 23051                                                  tradition   1
## 23052                                                      vegan   1
## 23053                                                     victim   1
## 23054                                                       whiz   1
## 23055                                                      world   1
## 23056                                                  gibbstown   1
## 23057                                                        one   1
## 23058                                                        add   1
## 23059                                                   addition   1
## 23060                                                   american   1
## 23061                                                    average   1
## 23062                                                       beef   1
## 23063                                                        big   1
## 23064                                                       bite   1
## 23065                                                   bunwhats   1
## 23066                                                        can   1
## 23067                                                      cheap   1
## 23068                                                cheesesteak   1
## 23069                                               cheesesteaks   1
## 23070                                                      chewy   1
## 23071                                                    chicago   1
## 23072                                                       cold   1
## 23073                                                    combine   1
## 23074                                                      cover   1
## 23075                                                        cow   1
## 23076                                                        cut   1
## 23077                                                       dice   1
## 23078                                                      didnt   1
## 23079                                                        eat   1
## 23080                                                      eater   1
## 23081                                                       fall   1
## 23082                                                       fill   1
## 23083                                                    freezer   1
## 23084                                                        fry   1
## 23085                                                       full   1
## 23086                                                        get   1
## 23087                                                         go   1
## 23088                                                     hoagie   1
## 23089                                                       huge   1
## 23090                                                       isnt   1
## 23091                                                         ju   1
## 23092                                                      juice   1
## 23093                                                      juicy   1
## 23094                                                       just   1
## 23095                                                       kind   1
## 23096                                                      kinda   1
## 23097                                                      large   1
## 23098                                                       lean   1
## 23099                                                  literally   1
## 23100                                                     little   1
## 23101                                                      lover   1
## 23102                                                       much   1
## 23103                                                      nasty   1
## 23104                                                       okay   1
## 23105                                                    overall   1
## 23106                                                   overtake   1
## 23107                                                       pick   1
## 23108                                                     pilled   1
## 23109                                                      poboy   1
## 23110                                                  presliced   1
## 23111                                                  provolone   1
## 23112                                                     rather   1
## 23113                                                       real   1
## 23114                                                     ribeye   1
## 23115                                                       roll   1
## 23116                                                    rubbery   1
## 23117                                                     season   1
## 23118                                                       seem   1
## 23119                                                       soft   1
## 23120                                                      soooo   1
## 23121                                                      stick   1
## 23122                                              stroganoffnot   1
## 23123                                                   terrible   1
## 23124                                                      thats   1
## 23125                                                       thin   1
## 23126                                                     thinly   1
## 23127                                                       tony   1
## 23128                                                    totally   1
## 23129                                                      tough   1
## 23130                                                        two   1
## 23131                                                    typical   1
## 23132                                                    unnerve   1
## 23133                                                     upside   1
## 23134                                                       vice   1
## 23135                                                         vs   1
## 23136                                                       whiz   1
## 23137                                                        wow   1
## 23138                                                       meat   1
## 23139                                                   sandwich   1
## 23140                                                      bread   1
## 23141                                                        pat   1
## 23142                                                   sandwich   1
## 23143                                                      steak   1
## 23144                                                      taste   1
## 23145                                                      treat   1
## 23146                                                      stale   1
## 23147                                                   donethat   1
## 23148                                                      avoid   1
## 23149                                                     decide   1
## 23150                                                       deff   1
## 23151                                                      first   1
## 23152                                                        fry   1
## 23153                                                     garage   1
## 23154                                                 girlfriend   1
## 23155                                                      great   1
## 23156                                                      happy   1
## 23157                                                        one   1
## 23158                                                      piece   1
## 23159                                                      price   1
## 23160                                                       root   1
## 23161                                                      small   1
## 23162                                                      steak   1
## 23163                                                    stomach   1
## 23164                                                      taste   1
## 23165                                                     though   1
## 23166                                                       wash   1
## 23167                                                     wonder   1
## 23168                                                     forget   1
## 23169                                                       root   1
## 23170                                                      light   1
## 23171                                                       many   1
## 23172                                                    mystery   1
## 23173                                                    prepare   1
## 23174                                                      think   1
## 23175                                                        lot   1
## 23176                                                expectation   1
## 23177                                                     smelly   1
## 23178                                                     friend   1
## 23179                                                     differ   1
## 23180                                                     forego   1
## 23181                                                     friend   1
## 23182                                                     please   1
## 23183                                                       chow   1
## 23184                                                       cold   1
## 23185                                                 comparison   1
## 23186                                                     devour   1
## 23187                                                    explain   1
## 23188                                                     figure   1
## 23189                                                      genos   1
## 23190                                                       good   1
## 23191                                                        ill   1
## 23192                                                       just   1
## 23193                                                   location   1
## 23194                                                       next   1
## 23195                                                  obviously   1
## 23196                                                       rain   1
## 23197                                                residential   1
## 23198                                                     review   1
## 23199                                                       rude   1
## 23200                                                   sandwich   1
## 23201                                                      sorry   1
## 23202                                                      spend   1
## 23203                                                      steak   1
## 23204                                                    stomach   1
## 23205                                                      think   1
## 23206                                                       time   1
## 23207                                                       tour   1
## 23208                                                    tourist   1
## 23209                                                      truly   1
## 23210                                                     window   1
## 23211                                                        ill   1
## 23212                                                       come   1
## 23213                                                 illiterate   1
## 23214                                                     rudely   1
## 23215                                                      clear   1
## 23216                                                      quite   1
## 23217                                                    receive   1
## 23218                                                      steak   1
## 23219                                                   business   1
## 23220                                               cheesesteaks   1
## 23221                                                        man   1
## 23222                                                      woman   1
## 23223                                                    towards   1
## 23224                                                     anyway   1
## 23225                                                      arent   1
## 23226                                                        bun   1
## 23227                                                       cart   1
## 23228                                                       cash   1
## 23229                                                       dome   1
## 23230                                                   dumbfuck   1
## 23231                                                        etc   1
## 23232                                                     flashy   1
## 23233                                                    foreign   1
## 23234                                                      genos   1
## 23235                                                      grill   1
## 23236                                                      guest   1
## 23237                                                     happen   1
## 23238                                                       jims   1
## 23239                                                     likely   1
## 23240                                                       line   1
## 23241                                                        one   1
## 23242                                                      place   1
## 23243                                                 plexiglass   1
## 23244                                                       read   1
## 23245                                                        say   1
## 23246                                                       send   1
## 23247                                                      stand   1
## 23248                                                      state   1
## 23249                                                      steak   1
## 23250                                                       tony   1
## 23251                                                      white   1
## 23252                                                     window   1
## 23253                                                       full   1
## 23254                                                        pat   1
## 23255                                                       less   1
## 23256                                                        air   1
## 23257                                                       idea   1
## 23258                                                    italian   1
## 23259                                                    nothing   1
## 23260                                                      order   1
## 23261                                                        wit   1
## 23262                                                       able   1
## 23263                                                   actually   1
## 23264                                               antiamerican   1
## 23265                                                     anyone   1
## 23266                                                   anything   1
## 23267                                                       area   1
## 23268                                                     around   1
## 23269                                                  authentic   1
## 23270                                                     barely   1
## 23271                                                  certainly   1
## 23272                                               cheesesteaks   1
## 23273                                                        cop   1
## 23274                                                     donate   1
## 23275                                                      drive   1
## 23276                                                     either   1
## 23277                                                        eye   1
## 23278                                                    feature   1
## 23279                                                      first   1
## 23280                                                         go   1
## 23281                                                      goofy   1
## 23282                                                       hear   1
## 23283                                                       heed   1
## 23284                                                       high   1
## 23285                                                        hot   1
## 23286                                                    improve   1
## 23287                                                   internet   1
## 23288                                                        ive   1
## 23289                                                       just   1
## 23290                                                       lack   1
## 23291                                                       like   1
## 23292                                                       must   1
## 23293                                                         oh   1
## 23294                                                      order   1
## 23295                                                      other   1
## 23296                                                  overhyped   1
## 23297                                                        pay   1
## 23298                                               philadelphia   1
## 23299                                                     philly   1
## 23300                                                     please   1
## 23301                                                     prefer   1
## 23302                                                     pretty   1
## 23303                                                  publicize   1
## 23304                                                       real   1
## 23305                                                     reason   1
## 23306                                                  recommend   1
## 23307                                                 restaurant   1
## 23308                                                     ribeye   1
## 23309                                                    rivalry   1
## 23310                                                   sandwich   1
## 23311                                                     scheme   1
## 23312                                                    someone   1
## 23313                                                       sort   1
## 23314                                                      taste   1
## 23315                                                    tourist   1
## 23316                                                     travel   1
## 23317                                                        try   1
## 23318                                                         tv   1
## 23319                                                      vocal   1
## 23320                                                      waste   1
## 23321                                                     winner   1
## 23322                                                       work   1
## 23323                                                      final   1
## 23324                                                       also   1
## 23325                                                    anybody   1
## 23326                                                        bad   1
## 23327                                                       blah   1
## 23328                                                     center   1
## 23329                                                       city   1
## 23330                                                      close   1
## 23331                                                 commercial   1
## 23332                                                    compare   1
## 23333                                                   congress   1
## 23334                                                     desire   1
## 23335                                                     figure   1
## 23336                                                      first   1
## 23337                                                         go   1
## 23338                                                       hope   1
## 23339                                               independance   1
## 23340                                               independence   1
## 23341                                                       just   1
## 23342                                                    liberty   1
## 23343                                                       make   1
## 23344                                                     pepper   1
## 23345                                                        say   1
## 23346                                                      think   1
## 23347                                                        wat   1
## 23348                                                   sandwich   1
## 23349                                                    century   1
## 23350                                                   customer   1
## 23351                                                    attempt   1
## 23352                                                       town   1
## 23353                                                       bomb   1
## 23354                                                      genos   1
## 23355                                                        ave   1
## 23356                                                       fact   1
## 23357                                                        las   1
## 23358                                                   remember   1
## 23359                                                      south   1
## 23360                                                       time   1
## 23361                                                       vega   1
## 23362                                                    chicago   1
## 23363                                                    founder   1
## 23364                                                       wing   1
## 23365                                                 girlfriend   1
## 23366                                                       loop   1
## 23367                                                       deep   1
## 23368                                                        top   1
## 23369                                                       bite   1
## 23370                                                      bring   1
## 23371                                                        can   1
## 23372                                                       cold   1
## 23373                                                      enjoy   1
## 23374                                                     island   1
## 23375                                                      large   1
## 23376                                                     middle   1
## 23377                                                       seat   1
## 23378                                                      steak   1
## 23379                                                   surprise   1
## 23380                                                      thats   1
## 23381                                                        yes   1
## 23382                                                      genos   1
## 23383                                                 additional   1
## 23384                                                      doubt   1
## 23385                                                       long   1
## 23386                                                      chili   1
## 23387                                                     chilli   1
## 23388                                                  apologize   1
## 23389                                                         ca   1
## 23390                                                     kindly   1
## 23391                                                   triangle   1
## 23392                                                      point   1
## 23393                                                      rocky   1
## 23394                                                   attitude   1
## 23395                                                        can   1
## 23396                                                   careless   1
## 23397                                                     cheese   1
## 23398                                                    dinging   1
## 23399                                                       food   1
## 23400                                                       lack   1
## 23401                                                       okay   1
## 23402                                                     openly   1
## 23403                                                    perhaps   1
## 23404                                                      point   1
## 23405                                                        run   1
## 23406                                                   sandwich   1
## 23407                                                     street   1
## 23408                                                      stuff   1
## 23409                                                      downi   1
## 23410                                               cheesesteaks   1
## 23411                                                      genos   1
## 23412                                                       make   1
## 23413                                                       good   1
## 23414                                                       good   1
## 23415                                                     fiance   1
## 23416                                                      bring   1
## 23417                                                        can   1
## 23418                                                       crap   1
## 23419                                                         do   1
## 23420                                                    equally   1
## 23421                                                      genos   1
## 23422                                                       good   1
## 23423                                                        ill   1
## 23424                                                   majority   1
## 23425                                                nobodyknows   1
## 23426                                                     notice   1
## 23427                                                  someplace   1
## 23428                                                      stone   1
## 23429                                                      taste   1
## 23430                                                  wonderful   1
## 23431                                                    wouldnt   1
## 23432                                                        pat   1
## 23433                                                      genos   1
## 23434                                                        non   1
## 23435                                                      annoy   1
## 23436                                                     expect   1
## 23437                                                      heres   1
## 23438                                                       suck   1
## 23439                                                   actually   1
## 23440                                                        two   1
## 23441                                                    another   1
## 23442                                                        cup   1
## 23443                                                      genos   1
## 23444                                                        get   1
## 23445                                                       must   1
## 23446                                                        ask   1
## 23447                                                     beware   1
## 23448                                                         do   1
## 23449                                                   hotsauce   1
## 23450                                                       hour   1
## 23451                                                       king   1
## 23452                                                       line   1
## 23453                                                      order   1
## 23454                                                     philly   1
## 23455                                                       sign   1
## 23456                                                       take   1
## 23457                                                    tourist   1
## 23458                                                        try   1
## 23459                                                   cheezwiz   1
## 23460                                                      chewy   1
## 23461                                                       even   1
## 23462                                                     excite   1
## 23463                                               friedsauteed   1
## 23464                                                       glow   1
## 23465                                                         go   1
## 23466                                                   horrible   1
## 23467                                               hypocritical   1
## 23468                                                     jersey   1
## 23469                                                    nothing   1
## 23470                                                 patriotism   1
## 23471                                          processedpossibly   1
## 23472                                                       real   1
## 23473                                               ridiculously   1
## 23474                                                       rude   1
## 23475                                                      think   1
## 23476                                                        try   1
## 23477                                                 unpleasant   1
## 23478                                                       whiz   1
## 23479                                                    attract   1
## 23480                                                  boyfriend   1
## 23481                                                      bring   1
## 23482                                                      buddy   1
## 23483                                               cheesesteaks   1
## 23484                                                        day   1
## 23485                                                        eat   1
## 23486                                                      enjoy   1
## 23487                                                        get   1
## 23488                                                       gnar   1
## 23489                                                         go   1
## 23490                                                       kind   1
## 23491                                                    layover   1
## 23492                                                       look   1
## 23493                                                      lucky   1
## 23494                                                      never   1
## 23495                                                      order   1
## 23496                                                    rivalry   1
## 23497                                                        say   1
## 23498                                                        try   1
## 23499                                                       walk   1
## 23500                                                   whenever   1
## 23501                                                     decide   1
## 23502                                                  intention   1
## 23503                                                        due   1
## 23504                                                        one   1
## 23505                                                  pickythis   1
## 23506                                                     poster   1
## 23507                                                      genos   1
## 23508                                                    tannens   1
## 23509                                                         du   1
## 23510                                                       bite   1
## 23511                                                      black   1
## 23512                                                        boy   1
## 23513                                                       buck   1
## 23514                                                     cheese   1
## 23515                                                     choose   1
## 23516                                                     chunky   1
## 23517                                              comparatively   1
## 23518                                                    compare   1
## 23519                                                  complaint   1
## 23520                                                        cut   1
## 23521                                                 definitely   1
## 23522                                                        die   1
## 23523                                                    display   1
## 23524                                             dissapointment   1
## 23525                                                     double   1
## 23526                                                   emphasis   1
## 23527                                                     family   1
## 23528                                                      fancy   1
## 23529                                                        fat   1
## 23530                                                      favor   1
## 23531                                                       fill   1
## 23532                                                     flashy   1
## 23533                                                        fry   1
## 23534                                                        get   1
## 23535                                                       glob   1
## 23536                                                       good   1
## 23537                                                      gripe   1
## 23538                                                        guy   1
## 23539                                                       hair   1
## 23540                                                     handle   1
## 23541                                                       head   1
## 23542                                                        hit   1
## 23543                                                       hoot   1
## 23544                                                       joke   1
## 23545                                                        let   1
## 23546                                                     little   1
## 23547                                                       loaf   1
## 23548                                                       long   1
## 23549                                                        lot   1
## 23550                                                       make   1
## 23551                                                     medium   1
## 23552                                                        meh   1
## 23553                                                       mess   1
## 23554                                                mistakepros   1
## 23555                                                      mouth   1
## 23556                                                 narcissist   1
## 23557                                                  nonporous   1
## 23558                                                       open   1
## 23559                                                     pepper   1
## 23560                                               philadelphia   1
## 23561                                                       pile   1
## 23562                                                      plain   1
## 23563                                                     plenty   1
## 23564                                                       plus   1
## 23565                                                      point   1
## 23566                                                    problem   1
## 23567                                                       prop   1
## 23568                                                  proponent   1
## 23569                                                   question   1
## 23570                                                        raw   1
## 23571                                                     reason   1
## 23572                                                        red   1
## 23573                                                        rip   1
## 23574                                                      rival   1
## 23575                                                    rivalry   1
## 23576                                                       roll   1
## 23577                                               satisfaction   1
## 23578                                                      scene   1
## 23579                                                       seem   1
## 23580                                                  selection   1
## 23581                                                       side   1
## 23582                                                        sin   1
## 23583                                                    slicest   1
## 23584                                                      smile   1
## 23585                                                      steak   1
## 23586                                                      strip   1
## 23587                                                       take   1
## 23588                                                      thing   1
## 23589                                                      think   1
## 23590                                                    turnoff   1
## 23591                                                     uneven   1
## 23592                                                        vat   1
## 23593                                                      waste   1
## 23594                                                        way   1
## 23595                                                        wet   1
## 23596                                                      white   1
## 23597                                                      whole   1
## 23598                                                     window   1
## 23599                                                     winwin   1
## 23600                                                      world   1
## 23601                                                     excite   1
## 23602                                                   arguably   1
## 23603                                                       cant   1
## 23604                                                       dude   1
## 23605                                                        eat   1
## 23606                                              establishment   1
## 23607                                                         go   1
## 23608                                                  hypocrite   1
## 23609                                                      owner   1
## 23610                                                        pat   1
## 23611                                                        say   1
## 23612                                                       sign   1
## 23613                                                    suggest   1
## 23614                                                   business   1
## 23615                                              establishment   1
## 23616                                                  extremely   1
## 23617                                                      owner   1
## 23618                                                    towards   1
## 23619                                                   amuerika   1
## 23620                                                     behind   1
## 23621                                                         do   1
## 23622                                                    english   1
## 23623                                                    equally   1
## 23624                                                 everything   1
## 23625                                                    include   1
## 23626                                                     window   1
## 23627                                                     witout   1
## 23628                                                     clinic   1
## 23629                                                       make   1
## 23630                                                     minute   1
## 23631                                                       next   1
## 23632                                                       ride   1
## 23633                                                     simple   1
## 23634                                                      smack   1
## 23635                                                         th   1
## 23636                                                       dude   1
## 23637                                                     monkey   1
## 23638                                                     tattoo   1
## 23639                                                        gal   1
## 23640                                                       also   1
## 23641                                                        can   1
## 23642                                                     cheese   1
## 23643                                                     decide   1
## 23644                                                         do   1
## 23645                                                      joint   1
## 23646                                                       keep   1
## 23647                                                       kind   1
## 23648                                                       must   1
## 23649                                                        one   1
## 23650                                                     oriley   1
## 23651                                                        say   1
## 23652                                                      still   1
## 23653                                                   whatever   1
## 23654                                                      write   1
## 23655                                                     bright   1
## 23656                                                       cant   1
## 23657                                                       bryn   1
## 23658                                                        get   1
## 23659                                                     hungry   1
## 23660                                                       life   1
## 23661                                                        mom   1
## 23662                                                     online   1
## 23663                                                      total   1
## 23664                                                    totally   1
## 23665                                                    weekend   1
## 23666                                                      fresh   1
## 23667                                                       tiao   1
## 23668                                                       find   1
## 23669                                                         go   1
## 23670                                                        see   1
## 23671                                                      badda   1
## 23672                                                   nickname   1
## 23673                                                       root   1
## 23674                                                       crap   1
## 23675                                                       give   1
## 23676                                                       good   1
## 23677                                                        one   1
## 23678                                                      stone   1
## 23679                                                      house   1
## 23680                                                      place   1
## 23681                                                        bar   1
## 23682                                                     decide   1
## 23683                                                        end   1
## 23684                                                       good   1
## 23685                                                      never   1
## 23686                                                    fifteen   1
## 23687                                                       chop   1
## 23688                                                    costcos   1
## 23689                                                       geno   1
## 23690                                                    instead   1
## 23691                                                     little   1
## 23692                                                       much   1
## 23693                                                    signage   1
## 23694                                                      steak   1
## 23695                                                       warm   1
## 23696                                                        ass   1
## 23697                                                      break   1
## 23698                                                      bring   1
## 23699                                                        end   1
## 23700                                                         ny   1
## 23701                                                      whole   1
## 23702                                                       need   1
## 23703                                                     actual   1
## 23704                                                   actually   1
## 23705                                                      admit   1
## 23706                                                     almost   1
## 23707                                                    anyways   1
## 23708                                                     appeal   1
## 23709                                               apprehensive   1
## 23710                                                     around   1
## 23711                                                        ass   1
## 23712                                                        bad   1
## 23713                                                       beat   1
## 23714                                                       beef   1
## 23715                                                      bring   1
## 23716                                                    brusque   1
## 23717                                                       buck   1
## 23718                                                     bullet   1
## 23719                                                   business   1
## 23720                                                     chunky   1
## 23721                                                       cold   1
## 23722                                                    compare   1
## 23723                                                  complaint   1
## 23724                                                    confuse   1
## 23725                                               constructive   1
## 23726                                                   continue   1
## 23727                                                      cross   1
## 23728                                                      crowd   1
## 23729                                                 definitely   1
## 23730                                                 delectable   1
## 23731                                                    dignity   1
## 23732                                                   discover   1
## 23733                                                         do   1
## 23734                                                        dry   1
## 23735                                                        eat   1
## 23736                                                      every   1
## 23737                                                     expose   1
## 23738                                                       fact   1
## 23739                                                       fake   1
## 23740                                                     famous   1
## 23741                                                        fat   1
## 23742                                                      fatty   1
## 23743                                                     finish   1
## 23744                                                       firm   1
## 23745                                                   flexible   1
## 23746                                                     forget   1
## 23747                                          friendlyotherwise   1
## 23748                                                        fry   1
## 23749                                                 girlfriend   1
## 23750                                                       give   1
## 23751                                                      gooey   1
## 23752                                                      great   1
## 23753                                                    grissly   1
## 23754                                                    gristly   1
## 23755                                                    grizzly   1
## 23756                                                      gummy   1
## 23757                                                       half   1
## 23758                                                       hand   1
## 23759                                                    healthy   1
## 23760                                                       hook   1
## 23761                                                    hopeful   1
## 23762                                                        hot   1
## 23763 httpwwwcitylightsandtastybitescomgenossteaksblycheesesteak   1
## 23764                                                       hurt   1
## 23765                                                    husband   1
## 23766                                                      idiot   1
## 23767                                                        ill   1
## 23768                                                immediately   1
## 23769                                                   intimate   1
## 23770                                                     invite   1
## 23771                                                      issue   1
## 23772                                                    italian   1
## 23773                                                      jerky   1
## 23774                                                      juicy   1
## 23775                                                    ketchup   1
## 23776                                                       know   1
## 23777                                                       lady   1
## 23778                                                       last   1
## 23779                                                       late   1
## 23780                                                        let   1
## 23781                                                      light   1
## 23782                                                       like   1
## 23783                                                       line   1
## 23784                                                  literally   1
## 23785                                                       look   1
## 23786                                                       loss   1
## 23787                                                       love   1
## 23788                                                       luck   1
## 23789                                                       luke   1
## 23790                                                       make   1
## 23791                                                     marble   1
## 23792                                                       melt   1
## 23793                                                   moisture   1
## 23794                                                   morelean   1
## 23795                                                      nasty   1
## 23796                                                    neither   1
## 23797                                                      never   1
## 23798                                                       next   1
## 23799                                                     nobody   1
## 23800                                                       noon   1
## 23801                                                    nothing   1
## 23802                                                    obvious   1
## 23803                                                        oil   1
## 23804                                                       oily   1
## 23805                                                 oilydrippy   1
## 23806                                                        old   1
## 23807                                                     option   1
## 23808                                                      order   1
## 23809                                                  overpower   1
## 23810                                                   overrate   1
## 23811                                                       park   1
## 23812                                                    phillys   1
## 23813                                                  plllllppp   1
## 23814                                                     polite   1
## 23815                                                       poor   1
## 23816                                                      power   1
## 23817                                                    prepare   1
## 23818                                                        put   1
## 23819                                                     racist   1
## 23820                                                       rate   1
## 23821                                                    realize   1
## 23822                                                     really   1
## 23823                                                      relax   1
## 23824                                                       rich   1
## 23825                                                       roll   1
## 23826                                                    rubbery   1
## 23827                                                      runny   1
## 23828                                                        sad   1
## 23829                                                  saltiness   1
## 23830                                                      saucy   1
## 23831                                                    service   1
## 23832                                                      short   1
## 23833                                                        shy   1
## 23834                                                    sketchy   1
## 23835                                                      slice   1
## 23836                                                     sloppy   1
## 23837                                                     slowly   1
## 23838                                                      smell   1
## 23839                                                       soft   1
## 23840                                                       sour   1
## 23841                                                      spend   1
## 23842                                                      spice   1
## 23843                                                     spongy   1
## 23844                                                   staleits   1
## 23845                                                      stiff   1
## 23846                                                       stop   1
## 23847                                                   straight   1
## 23848                                                        sub   1
## 23849                                                      super   1
## 23850                                                       take   1
## 23851                                                      taste   1
## 23852                                                    texture   1
## 23853                                                      thats   1
## 23854                                                       time   1
## 23855                                                       tire   1
## 23856                                                      tooth   1
## 23857                                                    tourist   1
## 23858                                                      trash   1
## 23859                                                undercooked   1
## 23860                                                     unique   1
## 23861                                                    variety   1
## 23862                                                       want   1
## 23863                                                        way   1
## 23864                                                       whiz   1
## 23865                                                     whizzy   1
## 23866                                                       wipe   1
## 23867                                                       wish   1
## 23868                                                      worth   1
## 23869                                                    wouldve   1
## 23870                                                      piece   1
## 23871                                                    hateful   1
## 23872                                                      never   1
## 23873                                               relationship   1
## 23874                                                       hear   1
## 23875                                                       trip   1
## 23876                                                     change   1
## 23877                                                      kinda   1
## 23878                                                       onto   1
## 23879                                                       blue   1
## 23880                                                  caribbean   1
## 23881                                                      drink   1
## 23882                                                    history   1
## 23883                                                    panther   1
## 23884                                                     pepper   1
## 23885                                                      white   1
## 23886                                                       yall   1
## 23887                                                      drink   1
## 23888                                                       home   1
## 23889                                                      empty   1
## 23890                                                       even   1
## 23891                                                       also   1
## 23892                                                        bad   1
## 23893                                                    blahand   1
## 23894                                                blahcounter   1
## 23895                                                      didnt   1
## 23896                                                 experience   1
## 23897                                                       look   1
## 23898                                                    mention   1
## 23899                                                   normally   1
## 23900                                                    nothing   1
## 23901                                                     notice   1
## 23902                                                         oz   1
## 23903                                                      place   1
## 23904                                                      price   1
## 23905                                                  sandwhich   1
## 23906                                                   sandwich   1
## 23907                                                       tell   1
## 23908                                                        can   1
## 23909                                                  tastedryi   1
## 23910                                                    service   1
## 23911                                                foodnetwork   1
## 23912                                                    overall   1
## 23913                                                preparation   1
## 23914                                                       turn   1
## 23915                                                     actual   1
## 23916                                                 atmosphere   1
## 23917                                                   attitude   1
## 23918                                                        bad   1
## 23919                                                  basically   1
## 23920                                                     beyond   1
## 23921                                                       bore   1
## 23922                                                      cheap   1
## 23923                                                       chop   1
## 23924                                                       cold   1
## 23925                                                    comfort   1
## 23926                                                    couldnt   1
## 23927                                                    despite   1
## 23928                                                      didnt   1
## 23929                                                     doesnt   1
## 23930                                                        dry   1
## 23931                                                      enjoy   1
## 23932                                                     excite   1
## 23933                                                     expect   1
## 23934                                                        fat   1
## 23935                                                       find   1
## 23936                                                     finish   1
## 23937                                                     french   1
## 23938                                                        fry   1
## 23939                                                     hardly   1
## 23940                                                       hell   1
## 23941                                                     highly   1
## 23942                                                       hmmm   1
## 23943                                                     hoagie   1
## 23944                                                       hope   1
## 23945                                                       hype   1
## 23946                                                    instead   1
## 23947                                                       lack   1
## 23948                                                     little   1
## 23949                                                        max   1
## 23950                                                   mediocre   1
## 23951                                                      micro   1
## 23952                                                       need   1
## 23953                                                       none   1
## 23954                                                         oh   1
## 23955                                                      onion   1
## 23956                                                      order   1
## 23957                                                   overcook   1
## 23958                                                 overpriced   1
## 23959                                                  overwhelm   1
## 23960                                                     philly   1
## 23961                                                      place   1
## 23962                                                   possibly   1
## 23963                                                      price   1
## 23964                                                    product   1
## 23965                                                  provolone   1
## 23966                                                     rather   1
## 23967                                                    regular   1
## 23968                                                 saltpepper   1
## 23969                                                   sandwich   1
## 23970                                               sandwichmore   1
## 23971                                                     season   1
## 23972                                                     severe   1
## 23973                                                      shock   1
## 23974                                                     simple   1
## 23975                                                      slice   1
## 23976                                                      small   1
## 23977                                                    smother   1
## 23978                                                        sub   1
## 23979                                                temperature   1
## 23980                                                   terrible   1
## 23981                                                      texas   1
## 23982                                                        two   1
## 23983                                               unimpressive   1
## 23984                                                      waste   1
## 23985                                                      white   1
## 23986                                                        yes   1
## 23987                                                        yet   1
## 23988                                                       wish   1
## 23989                                                       hear   1
## 23990                                                     cheese   1
## 23991                                                      onion   1
## 23992                                                     really   1
## 23993                                                          2   1
## 23994                                                       type   1
## 23995                                                      gooey   1
## 23996                                                        can   1
## 23997                                                       kill   1
## 23998                                                       neon   1
## 23999                                                        meh   1
## 24000                                                       true   1
## 24001                                                       just   1
## 24002                                                        way   1
## 24003                                                       haha   1
## 24004                                                 definitely   1
## 24005                                                    hateful   1
## 24006                                                  hostility   1
## 24007                                                    politic   1
## 24008                                                  prejudice   1
## 24009                                                     racist   1
## 24010                                                 xenophobia   1
## 24011                                                        act   1
## 24012                                                        bad   1
## 24013                                                     openly   1
## 24014                                                      state   1
## 24015                                                 xenophobic   1
## 24016                                                        hot   1
## 24017                                                      white   1
## 24018                                                       neon   1
## 24019                                                      green   1
## 24020                                                     rather   1
## 24021                                                      point   1
## 24022                                                      bread   1
## 24023                                                      wasnt   1
## 24024                                                  amazingly   1
## 24025                                                     cheese   1
## 24026                                                    culture   1
## 24027                                                       mean   1
## 24028                                                       meat   1
## 24029                                                       mild   1
## 24030                                                       pork   1
## 24031                                                     really   1
## 24032                                                   sandwich   1
## 24033                                                      shtty   1
## 24034                                                      steak   1
## 24035                                                      urban   1
## 24036                                                    america   1
## 24037                                                      curse   1
## 24038                                                         em   1
## 24039                                                       just   1
## 24040                                                     street   1
## 24041                                                       bite   1
## 24042                                                   consider   1
## 24043                                                       neon   1
## 24044                                                 patriotism   1
## 24045                                                      pride   1
## 24046                                                    endorse   1
## 24047                                                      bling   1
## 24048                                                        pat   1
## 24049                                                     toursy   1
## 24050                                                       want   1
## 24051                                                    welcome   1
## 24052                                                       hour   1
## 24053                                                      light   1
## 24054                                                   sandwich   1
## 24055                                                       word   1
## 24056                                                    traffic   1
## 24057                                                    instead   1
## 24058                                               cryptofacism   1
## 24059                                                          2   1
## 24060                                                       back   1
## 24061                                                         bc   1
## 24062                                                     behind   1
## 24063                                                     couple   1
## 24064                                                       east   1
## 24065                                                        eat   1
## 24066                                                         eh   1
## 24067                                                     except   1
## 24068                                                       feel   1
## 24069                                                       find   1
## 24070                                                      first   1
## 24071                                                       food   1
## 24072                                                    general   1
## 24073                                                    genosby   1
## 24074                                                        get   1
## 24075                                                       good   1
## 24076                                                      gross   1
## 24077                                                        hit   1
## 24078                                                    however   1
## 24079                                                        job   1
## 24080                                                   landmark   1
## 24081                                                    liberty   1
## 24082                                                       line   1
## 24083                                                       long   1
## 24084                                                       look   1
## 24085                                                        lot   1
## 24086                                                       numb   1
## 24087                                                   original   1
## 24088                                                       park   1
## 24089                                                       path   1
## 24090                                                     people   1
## 24091                                                    prepare   1
## 24092                                                     radius   1
## 24093                                                  recommend   1
## 24094                                                        say   1
## 24095                                                      south   1
## 24096                                                   spacious   1
## 24097                                                       tell   1
## 24098                                                       till   1
## 24099                                                       time   1
## 24100                                                        try   1
## 24101                                                    wouldnt   1
## 24102                                                      youll   1
## 24103                                                      youre   1
## 24104                                                       city   1
## 24105                                               philadelphia   1
## 24106                                                     report   1
## 24107                                                       site   1
## 24108                                                     werent   1
## 24109                                                       yelp   1
## 24110                                                       hair   1
## 24111                                                 definitely   1
## 24112                                                   pressure   1
## 24113                                                     pumpin   1
## 24114                                                       roll   1
## 24115                                                       turn   1
## 24116                                                      bigot   1
## 24117                                                         go   1
## 24118                                                    awaythe   1
## 24119                                                       carb   1
## 24120                                               cheesesteaks   1
## 24121                                                     demand   1
## 24122                                                         do   1
## 24123                                                      genos   1
## 24124                                                       good   1
## 24125                                                        ive   1
## 24126                                                    kitschy   1
## 24127                                                     napkin   1
## 24128                                                    stretch   1
## 24129                                                 supposedly   1
## 24130                                                      thing   1
## 24131                                                      think   1
## 24132                                                        two   1
## 24133                                                      whats   1
## 24134                                                      youre   1
## 24135                                                 photograph   1
## 24136                                                        aka   1
## 24137                                                       bell   1
## 24138                                                      light   1
## 24139                                                       moon   1
## 24140                                                       navi   1
## 24141                                                       pill   1
## 24142                                                      steak   1
## 24143                                                       hour   1
## 24144                                                      heart   1
## 24145                                               neighborhood   1
## 24146                                                     stripe   1
## 24147                                                   attitude   1
## 24148                                                     little   1
## 24149                                                    respect   1
## 24150                                                      order   1
## 24151                                                   sandwich   1
## 24152                                                  baltimore   1
## 24153                                                       head   1
## 24154                                                       good   1
## 24155                                                      judge   1
## 24156                                                       lade   1
## 24157                                                        nfl   1
## 24158                                                     oclock   1
## 24159                                                      right   1
## 24160                                                      taste   1
## 24161                                                       back   1
## 24162                                                     middle   1
## 24163                                                       nice   1
## 24164                                                         nj   1
## 24165                                                      slice   1
## 24166                                                   complete   1
## 24167                                                       good   1
## 24168                                                       sign   1
## 24169                                                     cheese   1
## 24170                                                         us   1
## 24171                                                       jane   1
## 24172                                                      leave   1
## 24173                                                      bronx   1
## 24174                                                      crime   1
## 24175                                                         do   1
## 24176                                                      grill   1
## 24177                                                       half   1
## 24178                                                     jersey   1
## 24179                                                       mean   1
## 24180                                                      stare   1
## 24181                                                         th   1
## 24182                                                      bench   1
## 24183                                                       burn   1
## 24184                                               cheesesteaks   1
## 24185                                                     flavor   1
## 24186                                                        get   1
## 24187                                                     moment   1
## 24188                                                       odor   1
## 24189                                                      place   1
## 24190                                                  smalltown   1
## 24191                                                       roll   1
## 24192                                                       beef   1
## 24193                                                        can   1
## 24194                                                       cook   1
## 24195                                                   customer   1
## 24196                                                     dinner   1
## 24197                                                     freeze   1
## 24198                                                       grey   1
## 24199                                                        hot   1
## 24200                                                   mushroom   1
## 24201                                                      plain   1
## 24202                                                      steak   1
## 24203                                                      taste   1
## 24204                                                      water   1
## 24205                                                      worth   1
## 24206                                                      light   1
## 24207                                                  obnoxious   1
## 24208                                                    adamant   1
## 24209                                                 courageous   1
## 24210                                                     invite   1
## 24211                                                        try   1
## 24212                                                    display   1
## 24213                                                       know   1
## 24214                                                      think   1
## 24215                                                    diggity   1
## 24216                                                 everything   1
## 24217                                                       good   1
## 24218                                                       make   1
## 24219                                                      serve   1
## 24220                                                        tho   1
## 24221                                                      white   1
## 24222                                                      whole   1
## 24223                                                       wish   1
## 24224                                                      vague   1
## 24225                                                    appetit   1
## 24226                                                       meat   1
## 24227                                                       dent   1
## 24228                                                       come   1
## 24229                                                       even   1
## 24230                                                     proper   1
## 24231                                                checkthebox   1
## 24232                                                    content   1
## 24233                                                 germaphobe   1
## 24234                                                      spicy   1
## 24235                                                       yuck   1
## 24236                                                      bread   1
## 24237                                                       come   1
## 24238                                                      juicy   1
## 24239                                                      santa   1
## 24240                                                    satisfy   1
## 24241                                                        try   1
## 24242                                                      place   1
## 24243                                                       cook   1
## 24244                                                    display   1
## 24245                                                        get   1
## 24246                                                         go   1
## 24247                                                        jaw   1
## 24248                                                       know   1
## 24249                                                 marginally   1
## 24250                                                     offend   1
## 24251                                                       part   1
## 24252                                                     safety   1
## 24253                                                      throw   1
## 24254                                                       time   1
## 24255                                                       turn   1
## 24256                                                       wife   1
## 24257                                                       work   1
## 24258                                                        yum   1
## 24259                                                      order   1
## 24260                                                      think   1
## 24261                                                        yes   1
## 24262                                                      youre   1
## 24263                                                      thing   1
## 24264                                                      didnt   1
## 24265                                                     really   1
## 24266                                                       sale   1
## 24267                                                       also   1
## 24268                                                       love   1
## 24269                                                      thank   1
## 24270                                                        yes   1
## 24271                                                      among   1
## 24272                                                      light   1
## 24273                                                        fry   1
## 24274                                                     cheese   1
## 24275                                                       flow   1
## 24276                                                       late   1
## 24277                                                  otherwise   1
## 24278                                                        see   1
## 24279                                                    control   1
## 24280                                                      south   1
## 24281                                                 unfriendly   1
## 24282                                                     insane   1
## 24283                                                       rude   1
## 24284                                                      lucky   1
## 24285                                                        add   1
## 24286                                                      bland   1
## 24287                                                      bread   1
## 24288                                                         bv   1
## 24289                                                        can   1
## 24290                                                     cheery   1
## 24291                                                   honestly   1
## 24292                                                       lose   1
## 24293                                                   sandwich   1
## 24294                                                       sure   1
## 24295                                                      thats   1
## 24296                                                uninspiring   1
## 24297                                                      white   1
## 24298                                                 commercial   1
## 24299                                                       take   1
## 24300                                                instruction   1
## 24301                                                       area   1
## 24302                                                  baltimore   1
## 24303                                                     boston   1
## 24304                                                     decide   1
## 24305                                                 disappoint   1
## 24306                                                     double   1
## 24307                                                      great   1
## 24308                                                       kind   1
## 24309                                                       line   1
## 24310                                                         ma   1
## 24311                                                       real   1
## 24312                                                      steak   1
## 24313                                                       take   1
## 24314                                                      treat   1
## 24315                                                        try   1
## 24316                                                 washington   1
## 24317                                                        wit   1
## 24318                                                          2   1
## 24319                                                    another   1
## 24320                                                   approach   1
## 24321                                                        ask   1
## 24322                                                      bring   1
## 24323                                                      chewy   1
## 24324                                                       chop   1
## 24325                                                      clean   1
## 24326                                                       come   1
## 24327                                                        cuz   1
## 24328                                                      didnt   1
## 24329                                                    disgust   1
## 24330                                                drastically   1
## 24331                                                 especially   1
## 24332                                                    freedom   1
## 24333                                                     french   1
## 24334                                                        fry   1
## 24335                                                        get   1
## 24336                                                       good   1
## 24337                                                         im   1
## 24338                                                    imagine   1
## 24339                                                       line   1
## 24340                                                       must   1
## 24341                                                       next   1
## 24342                                                     philly   1
## 24343                                                     review   1
## 24344                                                      sauté   1
## 24345                                                     simple   1
## 24346                                                     simply   1
## 24347                                                      stand   1
## 24348                                                      start   1
## 24349                                                       stay   1
## 24350                                                     theyre   1
## 24351                                                        ton   1
## 24352                                                        try   1
## 24353                                                       wait   1
## 24354                                                      wanna   1
## 24355                                                      worth   1
## 24356                                                       case   1
## 24357                                                      steak   1
## 24358                                                       beer   1
## 24359                                                      genos   1
## 24360                                                        guy   1
## 24361                                                    service   1
## 24362                                                      south   1
## 24363                                                     spring   1
## 24364                                                   mountain   1
## 24365                                                      among   1
## 24366                                                       beef   1
## 24367                                                     beware   1
## 24368                                                     bottom   1
## 24369                                                        bun   1
## 24370                                                cheesesteak   1
## 24371                                                 difference   1
## 24372                                                        eat   1
## 24373                                                      every   1
## 24374                                                  hierarchy   1
## 24375                                                        hot   1
## 24376                                                 linecoming   1
## 24377                                                       mine   1
## 24378                                                       much   1
## 24379                                                       rank   1
## 24380                                                       roll   1
## 24381                                                   sandwich   1
## 24382                                                      steak   1
## 24383                                                       take   1
## 24384                                                       thin   1
## 24385                                                        top   1
## 24386                                                      totem   1
## 24387                                                  unchopped   1
## 24388                                                       wife   1
## 24389                                                     window   1
## 24390                                                       fine   1
## 24391                                                        dry   1
## 24392                                                   baguette   1
## 24393                                                         go   1
## 24394                                                       come   1
## 24395                                                    another   1
## 24396                                                     cheese   1
## 24397                                                cheesesteak   1
## 24398                                                  heartburn   1
## 24399                                                        one   1
## 24400                                                       sign   1
## 24401                                                 eventually   1
## 24402                                                      gravy   1
## 24403                                                     couple   1
## 24404                                                       last   1
## 24405                                                       call   1
## 24406                                                       city   1
## 24407                                                   exercise   1
## 24408                                                       open   1
## 24409                                                        say   1
## 24410                                                      think   1
## 24411                                                        two   1
## 24412                                                     across   1
## 24413                                                   attitude   1
## 24414                                                       back   1
## 24415                                                       blue   1
## 24416                                                        can   1
## 24417                                                        day   1
## 24418                                                 difference   1
## 24419                                                       feel   1
## 24420                                                        fun   1
## 24421                                                       glad   1
## 24422                                                       like   1
## 24423                                                       make   1
## 24424                                                      order   1
## 24425                                                      place   1
## 24426                                                        try   1
## 24427                                             understatement   1
## 24428                                                       wish   1
## 24429                                                         im   1
## 24430                                                     please   1
## 24431                                                      total   1
## 24432                                                   birthday   1
## 24433                                                cheesesteak   1
## 24434                                                  determine   1
## 24435                                                       feel   1
## 24436                                                         go   1
## 24437                                                       grab   1
## 24438                                                       hail   1
## 24439                                                       love   1
## 24440                                                    mexican   1
## 24441                                                  nonphilly   1
## 24442                                                     notice   1
## 24443                                                        one   1
## 24444                                                    outside   1
## 24445                                                     philly   1
## 24446                                                   presence   1
## 24447                                                   sandwich   1
## 24448                                                      share   1
## 24449                                                     sister   1
## 24450                                                      south   1
## 24451                                                      split   1
## 24452                                                       stop   1
## 24453                                                       take   1
## 24454                                                      think   1
## 24455                                                    venture   1
## 24456                                                         vi   1
## 24457                                                       wait   1
## 24458                                                       wave   1
## 24459                                                       wish   1
## 24460                                                       care   1
## 24461                                                        man   1
## 24462                                                       hand   1
## 24463                                                       hour   1
## 24464                                                     pallet   1
## 24465                                                       even   1
## 24466                                                   everyone   1
## 24467                                                       food   1
## 24468                                                      place   1
## 24469                                                    putting   1
## 24470                                                   sandwich   1
## 24471                                                    tourist   1
## 24472                                                   capacity   1
## 24473                                                         th   1
## 24474                                                     anyone   1
## 24475                                                       skip   1
## 24476                                                       roll   1
## 24477                                                 experience   1
## 24478                                                      genos   1
## 24479                                                       hate   1
## 24480                                                   location   1
## 24481                                                     market   1
## 24482                                                        new   1
## 24483                                                   probably   1
## 24484                                                    promote   1
## 24485                                                      store   1
## 24486                                                    tourist   1
## 24487                                                      pizza   1
## 24488                                                       cold   1
## 24489                                                     enough   1
## 24490                                                 precarious   1
## 24491                                                       take   1
## 24492                                                        try   1
## 24493                                                       mean   1
## 24494                                                          2   1
## 24495                                                       able   1
## 24496                                                   absolute   1
## 24497                                                 absolutely   1
## 24498                                                 additional   1
## 24499                                                      aisle   1
## 24500                                                    alittle   1
## 24501                                                     almost   1
## 24502                                                       alot   1
## 24503                                                  amazingly   1
## 24504                                                    average   1
## 24505                                                       bake   1
## 24506                                                     become   1
## 24507                                                         bf   1
## 24508                                                       bore   1
## 24509                                                     bready   1
## 24510                                                   butterly   1
## 24511                                                    buttery   1
## 24512                                                 caramelize   1
## 24513                                                caramelized   1
## 24514                                                       case   1
## 24515                                                     charge   1
## 24516                                                      cheer   1
## 24517                                               cheesesteaks   1
## 24518                                                 cheesewhiz   1
## 24519                                                     chewie   1
## 24520                                                  chewyhard   1
## 24521                                                       chop   1
## 24522                                                      close   1
## 24523                                                    combine   1
## 24524                                                    company   1
## 24525                                                 comparison   1
## 24526                                                 completely   1
## 24527                                                consistency   1
## 24528                                                    correct   1
## 24529                                                     couple   1
## 24530                                                       crap   1
## 24531                                                     crispy   1
## 24532                                                     crunch   1
## 24533                                                     dayold   1
## 24534                                                     decide   1
## 24535                                                        def   1
## 24536                                                 definitely   1
## 24537                                                 delicately   1
## 24538                                                    despite   1
## 24539                                                  different   1
## 24540                                                      drink   1
## 24541                                                       dull   1
## 24542                                                       easy   1
## 24543                                                        eat   1
## 24544                                                     either   1
## 24545                                                        end   1
## 24546                                                     entire   1
## 24547                                                 especially   1
## 24548                                              establishment   1
## 24549                                                     ethnic   1
## 24550                                                       even   1
## 24551                                                       ever   1
## 24552                                                      every   1
## 24553                                                 everything   1
## 24554                                                    exactly   1
## 24555                                                     expect   1
## 24556                                                      extra   1
## 24557                                                  extremely   1
## 24558                                                        fan   1
## 24559                                                      flaky   1
## 24560                                                       flat   1
## 24561                                                 flavorless   1
## 24562                                                       food   1
## 24563                                                     french   1
## 24564                                                     friend   1
## 24565                                                    friggin   1
## 24566                                                        fun   1
## 24567                                                     garlic   1
## 24568                                                      ginos   1
## 24569                                                         go   1
## 24570                                                      gooey   1
## 24571                                                      grade   1
## 24572                                                     greasy   1
## 24573                                                      gummy   1
## 24574                                                        guy   1
## 24575                                                     handle   1
## 24576                                                    hardtoo   1
## 24577                                                       hate   1
## 24578                                                       hero   1
## 24579                                                       hook   1
## 24580                                                        hot   1
## 24581                                                    however   1
## 24582                                                       huge   1
## 24583                                                    husband   1
## 24584                                                         ie   1
## 24585                                                         im   1
## 24586                                                       jims   1
## 24587                                                    ketchup   1
## 24588                                                       know   1
## 24589                                                      kraft   1
## 24590                                                       lack   1
## 24591                                                      layer   1
## 24592                                                      light   1
## 24593                                                    lightly   1
## 24594                                                        lil   1
## 24595                                                  literally   1
## 24596                                                      local   1
## 24597                                               localesimply   1
## 24598                                                        lol   1
## 24599                                                        lot   1
## 24600                                                       love   1
## 24601                                                     meatmy   1
## 24602                                        meattoppingsoverall   1
## 24603                                                       melt   1
## 24604                                                      moist   1
## 24605                                                      mucha   1
## 24606                                                   mushroom   1
## 24607                                                       must   1
## 24608                                                     nearly   1
## 24609                                                    neither   1
## 24610                                                     nicely   1
## 24611                                                      night   1
## 24612                                                        non   1
## 24613                                                        now   1
## 24614                                                       numb   1
## 24615                                                occassional   1
## 24616                                                         oh   1
## 24617                                                       oily   1
## 24618                                                       oven   1
## 24619                                                    overall   1
## 24620                                                   overally   1
## 24621                                                  overwhelm   1
## 24622                                                      owner   1
## 24623                                                       part   1
## 24624                                               particularly   1
## 24625                                                 perfection   1
## 24626                                                     philly   1
## 24627                                                    phillys   1
## 24628                                                     plenty   1
## 24629                                                     prefab   1
## 24630                                                    process   1
## 24631                                                    produce   1
## 24632                                                     proper   1
## 24633                                                  provolone   1
## 24634                                                pwweeeaaase   1
## 24635                                                    quality   1
## 24636                                                      quite   1
## 24637                                                     racism   1
## 24638                                                     racist   1
## 24639                                                     rather   1
## 24640                                                       real   1
## 24641                                                     refuse   1
## 24642                                                    regular   1
## 24643                                                 remarkable   1
## 24644                                                    require   1
## 24645                                                       rest   1
## 24646                                                      right   1
## 24647                                                       rock   1
## 24648                                                 rubberized   1
## 24649                                                       rude   1
## 24650                                                        sad   1
## 24651                                                    sammich   1
## 24652                                                       seal   1
## 24653                                                       seam   1
## 24654                                                     season   1
## 24655                                                       sell   1
## 24656                                                   semiwarm   1
## 24657                                                   separate   1
## 24658                                                       side   1
## 24659                                                    similar   1
## 24660                                                      since   1
## 24661                                                       size   1
## 24662                                                       slap   1
## 24663                                                     slimey   1
## 24664                                                     sliver   1
## 24665                                                        smh   1
## 24666                                                  something   1
## 24667                                                   somewhat   1
## 24668                                                       sooo   1
## 24669                                                      soooo   1
## 24670                                                       sort   1
## 24671                                                       soso   1
## 24672                                                  sourdough   1
## 24673                                                      spend   1
## 24674                                                       spot   1
## 24675                                                     spread   1
## 24676                                                     sticky   1
## 24677                                                      still   1
## 24678                                                      stink   1
## 24679                                                  strangely   1
## 24680                                                     subpar   1
## 24681                                                    summary   1
## 24682                                                  tasteless   1
## 24683                                                     tendon   1
## 24684                                                   terrible   1
## 24685                                                      thank   1
## 24686                                                     theres   1
## 24687                                                      thing   1
## 24688                                                     though   1
## 24689                                                       tony   1
## 24690                                                        top   1
## 24691                                                   trashthe   1
## 24692                                                      truck   1
## 24693                                                        try   1
## 24694                                               unacceptable   1
## 24695                                               unbelievable   1
## 24696                                              unfortunately   1
## 24697                                                     unique   1
## 24698                                                     unless   1
## 24699                                                  untoasted   1
## 24700                                                       wack   1
## 24701                                                     watery   1
## 24702                                                     weapon   1
## 24703                                                        wee   1
## 24704                                                        wet   1
## 24705                                                      whats   1
## 24706                                                   whizpats   1
## 24707                                                    whoowee   1
## 24708                                                       will   1
## 24709                                                        win   1
## 24710                                                     winner   1
## 24711                                                    without   1
## 24712                                                      worth   1
## 24713                                                 worthwhile   1
## 24714                                                   sandwich   1
## 24715                                                       much   1
## 24716                                                       like   1
## 24717                                                      thing   1
## 24718                                                      wasnt   1
## 24719                                                      stale   1
## 24720                                                 pleasantly   1
## 24721                                                    usually   1
## 24722                                                       good   1
## 24723                                                       good   1
## 24724                                                       meat   1
## 24725                                                     absorb   1
## 24726                                                       also   1
## 24727                                                      clean   1
## 24728                                                       also   1
## 24729                                                       cold   1
## 24730                                                 convention   1
## 24731                                                       diet   1
## 24732                                                         do   1
## 24733                                                      first   1
## 24734                                                       grad   1
## 24735                                                        guy   1
## 24736                                                      heart   1
## 24737                                                       hope   1
## 24738                                                         im   1
## 24739                                                        ive   1
## 24740                                                       line   1
## 24741                                                     little   1
## 24742                                                      loose   1
## 24743                                                    outside   1
## 24744                                                     people   1
## 24745                                                   shreaded   1
## 24746                                                        smh   1
## 24747                                                          t   1
## 24748                                                       team   1
## 24749                                                      three   1
## 24750                                                 vegetarian   1
## 24751                                                       bite   1
## 24752                                                        pat   1
## 24753                                                     cheese   1
## 24754                                                         bf   1
## 24755                                                        bus   1
## 24756                                                      eagle   1
## 24757                                                      genos   1
## 24758                                                       hour   1
## 24759                                                       item   1
## 24760                                                        ive   1
## 24761                                                      lunch   1
## 24762                                                        pat   1
## 24763                                                     people   1
## 24764                                                    subject   1
## 24765                                                      today   1
## 24766                                                       town   1
## 24767                                                      wasnt   1
## 24768                                                     cancer   1
## 24769                                                       meat   1
## 24770                                                     enough   1
## 24771                                                      taste   1
## 24772                                                       fire   1
## 24773                                                       just   1
## 24774                                                       know   1
## 24775                                                       good   1
## 24776                                                       next   1
## 24777                                                  apartment   1
## 24778                                                      house   1
## 24779                                                        lay   1
## 24780                                                       salt   1
## 24781                                                   tilework   1
## 24782                                                      south   1
## 24783                                                     tunnel   1
## 24784                                                      thing   1
## 24785                                                 historical   1
## 24786                                                      short   1
## 24787                                                       time   1
## 24788                                                      visit   1
## 24789                                                     decide   1
## 24790                                                     offend   1
## 24791                                                       stop   1
## 24792                                                       wait   1
## 24793                                                 atmosphere   1
## 24794                                                       cant   1
## 24795                                                      catch   1
## 24796                                                   cheerful   1
## 24797                                                      clean   1
## 24798                                                      decor   1
## 24799                                                      empty   1
## 24800                                                   everyone   1
## 24801                                                      flash   1
## 24802                                                       folk   1
## 24803                                                     getout   1
## 24804                                                       heck   1
## 24805                                                         id   1
## 24806                                                        las   1
## 24807                                                       look   1
## 24808                                                        new   1
## 24809                                                  obnoxious   1
## 24810                                                offensively   1
## 24811                                                        pat   1
## 24812                                               philadelphia   1
## 24813                                                    service   1
## 24814                                                        set   1
## 24815                                                      shack   1
## 24816                                                      shiny   1
## 24817                                                       sign   1
## 24818                                                     theres   1
## 24819                                                     yellow   1
## 24820                                                      light   1
## 24821                                                        sit   1
## 24822                                                     answer   1
## 24823                                                       bear   1
## 24824                                                        big   1
## 24825                                                        buy   1
## 24826                                                    cashand   1
## 24827                                                     cheese   1
## 24828                                                     clorox   1
## 24829                                                  different   1
## 24830                                                      drink   1
## 24831                                                         em   1
## 24832                                                      empty   1
## 24833                                                     entire   1
## 24834                                                       even   1
## 24835                                                   everyone   1
## 24836                                                     family   1
## 24837                                                       food   1
## 24838                                                  greenback   1
## 24839                                                       half   1
## 24840                                                       hand   1
## 24841                                                    husband   1
## 24842                                                        kid   1
## 24843                                                       life   1
## 24844                                                       meat   1
## 24845                                                      mouth   1
## 24846                                                      nasty   1
## 24847                                                     number   1
## 24848                                                        one   1
## 24849                                                  outoftown   1
## 24850                                                       park   1
## 24851                                                   passport   1
## 24852                                                      patch   1
## 24853                                                     phrase   1
## 24854                                                      piece   1
## 24855                                                      place   1
## 24856                                                     pretty   1
## 24857                                                      ready   1
## 24858                                                resemblance   1
## 24859                                                       rest   1
## 24860                                                  saltiness   1
## 24861                                                   sandwich   1
## 24862                                                   secondly   1
## 24863                                                      shore   1
## 24864                                                     sister   1
## 24865                                                  something   1
## 24866                                                       spin   1
## 24867                                                       star   1
## 24868                                                        sub   1
## 24869                                                  sweetness   1
## 24870                                                      table   1
## 24871                                                       tell   1
## 24872                                                      total   1
## 24873                                                        two   1
## 24874                                                      visit   1
## 24875                                                        way   1
## 24876                                                        wet   1
## 24877                                                     ginger   1
## 24878                                                       wind   1
## 24879                                                        cut   1
## 24880                                                       mike   1
## 24881                                                      broad   1
## 24882                                                       erie   1
## 24883                                                   original   1
## 24884                                                   whatever   1
## 24885                                                      still   1
## 24886                                                   mushroom   1
## 24887                                                       bros   1
## 24888                                                   brooklyn   1
## 24889                                                       give   1
## 24890                                                        new   1
## 24891                                                      white   1
## 24892                                               cheesesteaks   1
## 24893                                                   downtown   1
## 24894                                                   familiar   1
## 24895                                                      genos   1
## 24896                                                        get   1
## 24897                                                        guy   1
## 24898                                                    italian   1
## 24899                                                       know   1
## 24900                                                         ny   1
## 24901                                                     people   1
## 24902                                                  represent   1
## 24903                                                       shit   1
## 24904                                                       take   1
## 24905                                                    totally   1
## 24906                                                      visit   1
## 24907                                                        wit   1
## 24908                                                     worthy   1
## 24909                                                       cant   1
## 24910                                                         go   1
## 24911                                                cheesesteak   1
## 24912                                                     collge   1
## 24913                                                        dad   1
## 24914                                                     father   1
## 24915                                                 girlfriend   1
## 24916                                                     happen   1
## 24917                                                        ive   1
## 24918                                                       just   1
## 24919                                                       late   1
## 24920                                                        law   1
## 24921                                                       life   1
## 24922                                                       live   1
## 24923                                                  lovesssss   1
## 24924                                                       mess   1
## 24925                                                       near   1
## 24926                                                   needless   1
## 24927                                                        now   1
## 24928                                                    perhaps   1
## 24929                                                        say   1
## 24930                                                      since   1
## 24931                                                     sister   1
## 24932                                                       tell   1
## 24933                                                      visit   1
## 24934                                                       want   1
## 24935                                                       wife   1
## 24936                                                       will   1
## 24937                                               lovewhatever   1
## 24938                                                        bag   1
## 24939                                                      bowel   1
## 24940                                                    drizzle   1
## 24941                                                       hair   1
## 24942                                                mustardthat   1
## 24943                                                      steak   1
## 24944                                                      stuff   1
## 24945                                                    seattle   1
## 24946                                                    vintage   1
## 24947                                                      genos   1
## 24948                                                      aside   1
## 24949                                                      genos   1
## 24950                                                      order   1
## 24951                                                       ruin   1
## 24952                                             teethughhhdont   1
## 24953                                                     border   1
## 24954                                                       good   1
## 24955                                                  perfectly   1
## 24956                                                        say   1
## 24957                                                      shout   1
## 24958                                                       line   1
## 24959                                                       tony   1
## 24960                                                       also   1
## 24961                                                         bf   1
## 24962                                                      clean   1
## 24963                                                       cost   1
## 24964                                                   everyone   1
## 24965                                                     expect   1
## 24966                                                         im   1
## 24967                                                        ive   1
## 24968                                                        now   1
## 24969                                                      order   1
## 24970                                                     philly   1
## 24971                                                      place   1
## 24972                                                         st   1
## 24973                                                       take   1
## 24974                                                       walk   1
## 24975                                                     worker   1
## 24976                                                        atm   1
## 24977                                                        bad   1
## 24978                                                     barnum   1
## 24979                                                       cash   1
## 24980                                                      cheap   1
## 24981                                               cheesesteaks   1
## 24982                                                        day   1
## 24983                                                     direct   1
## 24984                                                      ditto   1
## 24985                                                   donation   1
## 24986                                                       foot   1
## 24987                                                     freeze   1
## 24988                                                        fry   1
## 24989                                                    garbage   1
## 24990                                                      genos   1
## 24991                                                        get   1
## 24992                                                         go   1
## 24993                                                      guess   1
## 24994                                                       hype   1
## 24995                                                      idiot   1
## 24996                                                    include   1
## 24997                                                       lady   1
## 24998                                                      leave   1
## 24999                                                     little   1
## 25000                                                       meat   1
## 25001                                                   mediocre   1
## 25002                                                        now   1
## 25003                                                         oh   1
## 25004                                                       park   1
## 25005                                                        pat   1
## 25006                                                        per   1
## 25007                                                      piece   1
## 25008                                                      price   1
## 25009                                                     public   1
## 25010                                                   sandwich   1
## 25011                                                     school   1
## 25012                                                   slightly   1
## 25013                                                       soda   1
## 25014                                                      spend   1
## 25015                                                      steak   1
## 25016                                                   thankful   1
## 25017                                                      think   1
## 25018                                                      three   1
## 25019                                                      vomit   1
## 25020                                                      whole   1
## 25021                                                       meat   1
## 25022                                                       also   1
## 25023                                                         bf   1
## 25024                                                    examine   1
## 25025                                                       food   1
## 25026                                                     forget   1
## 25027                                                      happy   1
## 25028                                                       hate   1
## 25029                                                        kid   1
## 25030                                                       like   1
## 25031                                                       love   1
## 25032                                                       need   1
## 25033                                                  something   1
## 25034                                                        try   1
## 25035                                                       vary   1
## 25036                                                       will   1
## 25037                                                      agree   1
## 25038                                                      block   1
## 25039                                               cheesesteaks   1
## 25040                                                        eat   1
## 25041                                                     excite   1
## 25042                                                      fight   1
## 25043                                                       find   1
## 25044                                                         go   1
## 25045                                                       grab   1
## 25046                                                       hate   1
## 25047                                                       isnt   1
## 25048                                                       just   1
## 25049                                                      kevin   1
## 25050                                                       life   1
## 25051                                                       okay   1
## 25052                                                     pickup   1
## 25053                                                   probably   1
## 25054                                                       ride   1
## 25055                                                        say   1
## 25056                                                      scott   1
## 25057                                                       want   1
## 25058                                                        yes   1
## 25059                                                     shrink   1
## 25060                                                      tight   1
## 25061                                                       good   1
## 25062                                                         ny   1
## 25063                                                        say   1
## 25064                                                     philly   1
## 25065                                                       roll   1
## 25066                                                     cheese   1
## 25067                                                        ass   1
## 25068                                                    attract   1
## 25069                                                   continue   1
## 25070                                                       hate   1
## 25071                                                     killer   1
## 25072                                                      light   1
## 25073                                                      since   1
## 25074                                                      youll   1
## 25075                                                     zapper   1
## 25076                                                     almost   1
## 25077                                                       pass   1
## 25078                                                     across   1
## 25079                                                    already   1
## 25080                                                       also   1
## 25081                                                  anitgenos   1
## 25082                                                     attact   1
## 25083                                                 attractive   1
## 25084                                                  boardwalk   1
## 25085                                                    broiest   1
## 25086                                                       cash   1
## 25087                                                   decorate   1
## 25088                                                        eat   1
## 25089                                                      enjoy   1
## 25090                                                      first   1
## 25091                                                     freeze   1
## 25092                                                        fry   1
## 25093                                                      gaudy   1
## 25094                                                     hungry   1
## 25095                                              isinteresting   1
## 25096                                                       isnt   1
## 25097                                                       joke   1
## 25098                                                       less   1
## 25099                                                      local   1
## 25100                                                       love   1
## 25101                                                        mad   1
## 25102                                                       meat   1
## 25103                                                     minute   1
## 25104                                                       move   1
## 25105                                                     movied   1
## 25106                                                       much   1
## 25107                                                       nice   1
## 25108                                                         oh   1
## 25109                                                      paint   1
## 25110                                                   probably   1
## 25111                                                    quality   1
## 25112                                                    rapport   1
## 25113                                                     really   1
## 25114                                                 reputation   1
## 25115                                                      rival   1
## 25116                                                       roll   1
## 25117                                                      screw   1
## 25118                                                        see   1
## 25119                                                        set   1
## 25120                                                      shape   1
## 25121                                                       sign   1
## 25122                                                        sit   1
## 25123                                                      sorry   1
## 25124                                                  structure   1
## 25125                                                        tax   1
## 25126                                                       time   1
## 25127                                                    tourist   1
## 25128                                                    vintage   1
## 25129                                                       will   1
## 25130                                                       wish   1
## 25131                                                 appearance   1
## 25132                                                      mural   1
## 25133                                                       look   1
## 25134                                                       food   1
## 25135                                                       just   1
## 25136                                                       make   1
## 25137                                                       neck   1
## 25138                                                       late   1
## 25139                                                       come   1
## 25140                                                       easy   1
## 25141                                                       even   1
## 25142                                                   everyone   1
## 25143                                                       meat   1
## 25144                                                     racist   1
## 25145                                                       shit   1
## 25146                                                      speak   1
## 25147                                                        eat   1
## 25148                                                      check   1
## 25149                                                        end   1
## 25150                                                       need   1
## 25151                                                    signage   1
## 25152                                                       take   1
## 25153                                                     demand   1
## 25154                                                  cigarette   1
## 25155                                                      money   1
## 25156                                                       take   1
## 25157                                                     though   1
## 25158                                                   optimism   1
## 25159                                                       star   1
## 25160                                                        car   1
## 25161                                                        air   1
## 25162                                                       also   1
## 25163                                                      amaze   1
## 25164                                                      aside   1
## 25165                                                   audacity   1
## 25166                                                       beat   1
## 25167                                                     become   1
## 25168                                                        bun   1
## 25169                                                        can   1
## 25170                                                     cheese   1
## 25171                                                      citys   1
## 25172                                                      cover   1
## 25173                                                   culinary   1
## 25174                                                     expect   1
## 25175                                                   extremly   1
## 25176                                                       fill   1
## 25177                                                       food   1
## 25178                                                      grill   1
## 25179                                                    instead   1
## 25180                                                        key   1
## 25181                                                      kinda   1
## 25182                                                       like   1
## 25183                                                       many   1
## 25184                                                       nice   1
## 25185                                                         oh   1
## 25186                                                      onion   1
## 25187                                                    outside   1
## 25188                                                        pat   1
## 25189                                                       pork   1
## 25190                                                practically   1
## 25191                                                    rubbery   1
## 25192                                                     rudely   1
## 25193                                                       ruin   1
## 25194                                                       salt   1
## 25195                                                      sauce   1
## 25196                                                       seem   1
## 25197                                                       soak   1
## 25198                                                      still   1
## 25199                                                      think   1
## 25200                                                        top   1
## 25201                                                       warm   1
## 25202                                                      bigot   1
## 25203                                                     bright   1
## 25204                                                      celeb   1
## 25205                                                   clueless   1
## 25206                                                        cop   1
## 25207                                                    episode   1
## 25208                                                     friend   1
## 25209                                                         go   1
## 25210                                                     grumpy   1
## 25211                                                  immigrant   1
## 25212                                                     napkin   1
## 25213                                                   nonsense   1
## 25214                                                    outdoor   1
## 25215                                                     philly   1
## 25216                                                      place   1
## 25217                                                 propaganda   1
## 25218                                                   question   1
## 25219                                                     racist   1
## 25220                                                     retard   1
## 25221                                                       rude   1
## 25222                                                   sandwich   1
## 25223                                                    sticker   1
## 25224                                                 suggestion   1
## 25225                                                       sign   1
## 25226                                                 completely   1
## 25227                                                      ratio   1
## 25228                                                     appeal   1
## 25229                                                         do   1
## 25230                                                         go   1
## 25231                                                       love   1
## 25232                                                       kind   1
## 25233                                               cheesesteaks   1
## 25234                                                    someone   1
## 25235                                                 apparently   1
## 25236                                                        ban   1
## 25237                                                     bright   1
## 25238                                                      cheez   1
## 25239                                                       fuck   1
## 25240                                                      grind   1
## 25241                                                         hr   1
## 25242                                                       kind   1
## 25243                                                       like   1
## 25244                                                       neon   1
## 25245                                                       quad   1
## 25246                                                  seriously   1
## 25247                                                      shirt   1
## 25248                                                      today   1
## 25249                                                 california   1
## 25250                                                  guacamole   1
## 25251                                                    snicker   1
## 25252                                                      mouth   1
## 25253                                                     bottom   1
## 25254                                                     theyll   1
## 25255                                                      drive   1
## 25256                                                      guess   1
## 25257                                                        let   1
## 25258                                                   passyunk   1
## 25259                                                  routinely   1
## 25260                                                       stop   1
## 25261                                                      think   1
## 25262                                                    typical   1
## 25263                                                        way   1
## 25264                                                     friend   1
## 25265                                                       walk   1
## 25266                                                 absolutely   1
## 25267                                              advertisement   1
## 25268                                                    anyways   1
## 25269                                                       away   1
## 25270                                                        bay   1
## 25271                                                       boom   1
## 25272                                                      bring   1
## 25273                                                      build   1
## 25274                                                        can   1
## 25275                                                     cheese   1
## 25276                                                cheesesteak   1
## 25277                                                    concept   1
## 25278                                                     create   1
## 25279                                                        day   1
## 25280                                                    despite   1
## 25281                                                   directly   1
## 25282                                                         do   1
## 25283                                                        due   1
## 25284                                                       easy   1
## 25285                                                        eat   1
## 25286                                                     either   1
## 25287                                                  elsewhere   1
## 25288                                                   encroach   1
## 25289                                                     engage   1
## 25290                                                 especially   1
## 25291                                                      ethic   1
## 25292                                                   exposure   1
## 25293                                                        far   1
## 25294                                                     father   1
## 25295                                                     fierce   1
## 25296                                                     figure   1
## 25297                                                      first   1
## 25298                                                    frankly   1
## 25299                                                   friendly   1
## 25300                                                       give   1
## 25301                                                        guy   1
## 25302                                                      habit   1
## 25303                                                   honestly   1
## 25304                                                         im   1
## 25305                                                     insult   1
## 25306                                                      issue   1
## 25307                                                        ive   1
## 25308                                                       like   1
## 25309                                                       line   1
## 25310                                                       live   1
## 25311                                                   location   1
## 25312                                                       love   1
## 25313                                                    loyalty   1
## 25314                                                       make   1
## 25315                                                       many   1
## 25316                                                     matter   1
## 25317                                                      maybe   1
## 25318                                                       mine   1
## 25319                                                   minority   1
## 25320                                                   misguide   1
## 25321                                                      never   1
## 25322                                                        nyc   1
## 25323                                                        one   1
## 25324                                                    onetime   1
## 25325                                                    opinion   1
## 25326                                                      order   1
## 25327                                                   overflow   1
## 25328                                                       pain   1
## 25329                                                        pat   1
## 25330                                                        pay   1
## 25331                                                     philly   1
## 25332                                                    phillys   1
## 25333                                                      point   1
## 25334                                                     prefer   1
## 25335                                                        pro   1
## 25336                                                   probably   1
## 25337                                                    provide   1
## 25338                                                    putting   1
## 25339                                                    quickly   1
## 25340                                                    require   1
## 25341                                                        sad   1
## 25342                                                   sandwich   1
## 25343                                                        say   1
## 25344                                                     secret   1
## 25345                                                      sense   1
## 25346                                                        set   1
## 25347                                                      shiny   1
## 25348                                                        sit   1
## 25349                                                     social   1
## 25350                                                       sort   1
## 25351                                                     spread   1
## 25352                                                     sucker   1
## 25353                                                       take   1
## 25354                                                   template   1
## 25355                                                      three   1
## 25356                                                    tourism   1
## 25357                                                       uber   1
## 25358                                                      vento   1
## 25359                                                      wasnt   1
## 25360                                                      waste   1
## 25361                                                       wife   1
## 25362                                                    without   1
## 25363                                                       wont   1
## 25364                                                      youll   1
## 25365                                                      place   1
## 25366                                                        big   1
## 25367                                                       chop   1
## 25368                                                         gp   1
## 25369                                                       home   1
## 25370                                                      thick   1
## 25371                                                        eat   1
## 25372                                                       area   1
## 25373                                                       much   1
## 25374                                                     people   1
## 25375                                                     across   1
## 25376                                                        bad   1
## 25377                                                        bug   1
## 25378                                                       cash   1
## 25379                                                       cold   1
## 25380                                                      crowd   1
## 25381                                                        day   1
## 25382                                                      didnt   1
## 25383                                                         do   1
## 25384                                                   employee   1
## 25385                                                      enjoy   1
## 25386                                                     ensure   1
## 25387                                                 especially   1
## 25388                                                     expect   1
## 25389                                                      genos   1
## 25390                                                         go   1
## 25391                        heresyourchangeandyoursandwichseeya   1
## 25392                                                       hour   1
## 25393                                                         im   1
## 25394                                                       just   1
## 25395                                                       kind   1
## 25396                                                   location   1
## 25397                                                      night   1
## 25398                                                     notice   1
## 25399                                                      order   1
## 25400                                                        pat   1
## 25401                                                     people   1
## 25402                                                  pointless   1
## 25403                                                       seat   1
## 25404                                                     street   1
## 25405                                                 streetsget   1
## 25406                                              uncomfortable   1
## 25407                                                       whiz   1
## 25408                                                       will   1
## 25409                                                       work   1
## 25410                                                      world   1
## 25411                                                       mean   1
## 25412                                                     prefer   1
## 25413                                                       good   1
## 25414                                                       line   1
## 25415                                                      thank   1
## 25416                                                 vegetarian   1
## 25417                                                   frannkly   1
## 25418                                                        ask   1
## 25419                                                cheesesteak   1
## 25420                                                      drive   1
## 25421                                                       fire   1
## 25422                                                       hurt   1
## 25423                                                        ive   1
## 25424                                                       meat   1
## 25425                                                     philly   1
## 25426                                                      bread   1
## 25427                                                    drizzle   1
## 25428                                                     garlic   1
## 25429                                                      staff   1
## 25430                                                      moist   1
## 25431                                                      chewy   1
## 25432                                                  delicious   1
## 25433                                                    lightly   1
## 25434                                                        pat   1
## 25435                                                    service   1
## 25436                                                       soft   1
## 25437                                                        cry   1
## 25438                                                      rival   1
## 25439                                                       wont   1
## 25440                                                        now   1
## 25441                                                          3   1
## 25442                                                     across   1
## 25443                                                   amorosos   1
## 25444                                                    another   1
## 25445                                                   anything   1
## 25446                                                   anywhere   1
## 25447                                                      begin   1
## 25448                                                     burger   1
## 25449                                                  cafeteria   1
## 25450                                                    cannoli   1
## 25451                                                    classic   1
## 25452                                                       damn   1
## 25453                                                         do   1
## 25454                                                        dog   1
## 25455                                                      drink   1
## 25456                                                        end   1
## 25457                                                     enough   1
## 25458                                                     freeze   1
## 25459                                                    gimmick   1
## 25460                                                    grenade   1
## 25461                                                    groupon   1
## 25462                                                 jingoistic   1
## 25463                                                       just   1
## 25464                                                       last   1
## 25465                                                       less   1
## 25466                                                        lie   1
## 25467                                                  literally   1
## 25468                                                       look   1
## 25469                                                        lot   1
## 25470                                                      lunch   1
## 25471                                                       much   1
## 25472                                                   multiple   1
## 25473                                                       neon   1
## 25474                                                 overpriced   1
## 25475                                                     philly   1
## 25476                                                    phillys   1
## 25477                                                    popular   1
## 25478                                                 restaurant   1
## 25479                                                       sale   1
## 25480                                                   steakumm   1
## 25481                                                   steakums   1
## 25482                                                      still   1
## 25483                                                      stuff   1
## 25484                                                       take   1
## 25485                                                      taste   1
## 25486                                                    tourist   1
## 25487                                                    voucher   1
## 25488                                                    whiskey   1
## 25489                                                        wit   1
## 25490                                                      wrong   1
## 25491                                                     beware   1
## 25492                                                     anyone   1
## 25493                                                     around   1
## 25494                                                        die   1
## 25495                                                         go   1
## 25496                                                        one   1
## 25497                                                      wasis   1
## 25498                                                        ask   1
## 25499                                                     blazin   1
## 25500                                                       take   1
## 25501                                                        pat   1
## 25502                                                    generic   1
## 25503                                                       high   1
## 25504                                                       good   1
## 25505                                                        ill   1
## 25506                                                        css   1
## 25507                                                 definitely   1
## 25508                                                     follow   1
## 25509                                                     little   1
## 25510                                                        meh   1
## 25511                                                   official   1
## 25512                                                      place   1
## 25513                                                       wish   1
## 25514                                                     anyone   1
## 25515                                                        bam   1
## 25516                                                     boston   1
## 25517                                                    finally   1
## 25518                                                       good   1
## 25519                                                       high   1
## 25520                                                     jersey   1
## 25521                                                     little   1
## 25522                                                       much   1
## 25523                                                     really   1
## 25524                                                 university   1
## 25525                                                      waste   1
## 25526                                                 convention   1
## 25527                                                        eat   1
## 25528                                                        end   1
## 25529                                                       fare   1
## 25530                                                         id   1
## 25531                                                       late   1
## 25532                                                      leave   1
## 25533                                                       like   1
## 25534                                               neighborhood   1
## 25535                                                      order   1
## 25536                                                       save   1
## 25537                                                       make   1
## 25538                                                    tourist   1
## 25539                                                    regrill   1
## 25540                                                         vs   1
## 25541                                                     corner   1
## 25542                                                        try   1
## 25543                                                      block   1
## 25544                                                         du   1
## 25545                                                        guy   1
## 25546                                                   national   1
## 25547                                                      serve   1
## 25548                                                    similar   1
## 25549                                                         er   1
## 25550                                                       fair   1
## 25551                                                       much   1
## 25552                                                       plus   1
## 25553                                                    rubbery   1
## 25554                                                       shit   1
## 25555                                                        say   1
## 25556                                                   everyone   1
## 25557                                                  flavorful   1
## 25558                                                       line   1
## 25559                                                       sure   1
## 25560                                                        yes   1
## 25561                                                        boy   1
## 25562                                                  currently   1
## 25563                                                      dwell   1
## 25564                                                      first   1
## 25565                                                       like   1
## 25566                                                       love   1
## 25567                                                      never   1
## 25568                                                       nice   1
## 25569                                                        now   1
## 25570                                                        see   1
## 25571                                                        try   1
## 25572                                                     cheese   1
## 25573                                               dalessandros   1
## 25574                                                     always   1
## 25575                                                       bear   1
## 25576                                                      buddy   1
## 25577                                                       cant   1
## 25578                                                     cheese   1
## 25579                                                       come   1
## 25580                                                         do   1
## 25581                                                     excite   1
## 25582                                                       food   1
## 25583                                                   friendly   1
## 25584                                                      genos   1
## 25585                                                       good   1
## 25586                                                      grill   1
## 25587                                                       hate   1
## 25588                                                      johns   1
## 25589                                                        kid   1
## 25590                                                       know   1
## 25591                                                      local   1
## 25592                                                       love   1
## 25593                                                        new   1
## 25594                                                         ny   1
## 25595                                                     philly   1
## 25596                                                      place   1
## 25597                                                      quite   1
## 25598                                                       rate   1
## 25599                                                     search   1
## 25600                                                       take   1
## 25601                                                     though   1
## 25602                                                        try   1
## 25603                                               unbelievable   1
## 25604                                                      wasnt   1
## 25605                                                       week   1
## 25606                                                       will   1
## 25607                                                      youll   1
## 25608                                                        can   1
## 25609                                                        ask   1
## 25610                                                  attention   1
## 25611                                                         au   1
## 25612                                                  authentic   1
## 25613                                                        big   1
## 25614                                                   brooklyn   1
## 25615                                                      buddy   1
## 25616                                                        bun   1
## 25617                                                  cheezwhiz   1
## 25618                                                       clog   1
## 25619                                               conservative   1
## 25620                                                        cop   1
## 25621                                                      crazy   1
## 25622                                                      drink   1
## 25623                                                         eh   1
## 25624                                                      every   1
## 25625                                                  excellent   1
## 25626                                                     famous   1
## 25627                                                       food   1
## 25628                                                      fussy   1
## 25629                                                        get   1
## 25630                                                      great   1
## 25631                                                       hand   1
## 25632                                                        hey   1
## 25633                                                       itss   1
## 25634                                                       lack   1
## 25635                                                      liken   1
## 25636                                                  mcdonalds   1
## 25637                                                      meers   1
## 25638                                                    morning   1
## 25639                                                         nj   1
## 25640                                                        one   1
## 25641                                                  paganoswe   1
## 25642                                                     people   1
## 25643                                               philadelphia   1
## 25644                                                    phillys   1
## 25645                                                      ready   1
## 25646                                                       rude   1
## 25647                                               souvenirsshe   1
## 25648                                                      split   1
## 25649                                                        sub   1
## 25650                                                       tell   1
## 25651                                                    tourist   1
## 25652                                                       want   1
## 25653                                                      watch   1
## 25654                                                   whatever   1
## 25655                                                      whole   1
## 25656                                                        wit   1
## 25657                                                        wiz   1
## 25658                                                       work   1
## 25659                                                       zero   1
## 25660                                                      point   1
## 25661                                                      spicy   1
## 25662                                                      whats   1
## 25663                                                      write   1
## 25664                                                        eat   1
## 25665                                                  defiantly   1
## 25666                                                    include   1
## 25667                                                     though   1
## 25668                                                      throw   1
## 25669                                                    tourist   1
## 25670                                                      yanno   1
## 25671                                                   sandwich   1
## 25672                                                      taste   1
## 25673                                                       just   1
## 25674                                                     devoid   1
## 25675                                                       line   1
## 25676                                                  literally   1
## 25677                                                      genos   1
## 25678                                                        may   1
## 25679                                                   complete   1
## 25680                                                   saturday   1
## 25681                                               dalessandros   1
## 25682                                               ishkabibbles   1
## 25683                                                      johns   1
## 25684                                                        one   1
## 25685                                                        pat   1
## 25686                                                   slightly   1
## 25687                                                       come   1
## 25688                                                     across   1
## 25689                                                     advice   1
## 25690                                                     afford   1
## 25691                                                    already   1
## 25692                                                       also   1
## 25693                                          americanprovolone   1
## 25694                                                     answer   1
## 25695                                                     around   1
## 25696                                                        ask   1
## 25697                                                   assholes   1
## 25698                                                     attest   1
## 25699                                                   attitude   1
## 25700                                                      avoid   1
## 25701                                                        bad   1
## 25702                                                       beau   1
## 25703                                                     become   1
## 25704                                                    believe   1
## 25705                                                      blame   1
## 25706                                                       brag   1
## 25707                                                   business   1
## 25708                                                        can   1
## 25709                                                       care   1
## 25710                                                  certainly   1
## 25711                                                  challenge   1
## 25712                                                      check   1
## 25713                                                      chewy   1
## 25714                                                    clearly   1
## 25715                                                    compete   1
## 25716                                                confidently   1
## 25717                                                    control   1
## 25718                                                     corner   1
## 25719                                                      count   1
## 25720                                                     course   1
## 25721                                                  dangerous   1
## 25722                                                       deal   1
## 25723                                                     decide   1
## 25724                                               definitively   1
## 25725                                                    deliver   1
## 25726                                                 diplomatic   1
## 25727                                                 disappoint   1
## 25728                                                     double   1
## 25729                                                       drop   1
## 25730                                                       edgy   1
## 25731                                                 experience   1
## 25732                                                       flat   1
## 25733                                                 flavorless   1
## 25734                                                    forgive   1
## 25735                                                    frankly   1
## 25736                                                     freeze   1
## 25737                                                 fungristle   1
## 25738                                                    garnish   1
## 25739                                                      genos   1
## 25740                                                      grill   1
## 25741                                                      gross   1
## 25742                                                       haha   1
## 25743                                                       half   1
## 25744                                                     happen   1
## 25745                                                       hard   1
## 25746                                                     hassle   1
## 25747                                                   headache   1
## 25748                                                       hear   1
## 25749                                                     hectic   1
## 25750                                                       help   1
## 25751                                                        hit   1
## 25752                                                  honnestly   1
## 25753                                                       hour   1
## 25754                                                    however   1
## 25755                                                       hunk   1
## 25756                                                    include   1
## 25757                                               inconsistent   1
## 25758                                                     insane   1
## 25759                                                      issue   1
## 25760                                                       keep   1
## 25761                                                      kinda   1
## 25762                                                     kindly   1
## 25763                                                   language   1
## 25764                                                       last   1
## 25765                                                       like   1
## 25766                                                       line   1
## 25767                                                  literally   1
## 25768                                                      local   1
## 25769                                                      loose   1
## 25770                                                  mesmerize   1
## 25771                                                       mess   1
## 25772                                              mushroomsglad   1
## 25773                                                       name   1
## 25774                                                       next   1
## 25775                                               occasionally   1
## 25776                                                      offer   1
## 25777                                                      onion   1
## 25778                                                   overlook   1
## 25779                                                   overrate   1
## 25780                                                     people   1
## 25781                                                    picture   1
## 25782                                                      point   1
## 25783                                                   politely   1
## 25784                                                       post   1
## 25785                                                     pretty   1
## 25786                                                      price   1
## 25787                                                   probably   1
## 25788                                                       pump   1
## 25789                                                   purchase   1
## 25790                                                     racist   1
## 25791                                                       real   1
## 25792                                                     reason   1
## 25793                                                 reasonably   1
## 25794                                                     redeem   1
## 25795                                                  replicate   1
## 25796                                                  represent   1
## 25797                                                     return   1
## 25798                                                     ribeye   1
## 25799                                                      rival   1
## 25800                                                      rough   1
## 25801                                                       rude   1
## 25802                                                   rudeness   1
## 25803                                                       ruin   1
## 25804                                                        run   1
## 25805                                                  sacrilege   1
## 25806                                                     safely   1
## 25807                                                     sample   1
## 25808                                                   saygenos   1
## 25809                                                   saygreat   1
## 25810                                                    saythey   1
## 25811                                                        set   1
## 25812                                                      share   1
## 25813                                                 shareother   1
## 25814                                                    shelter   1
## 25815                                                       sign   1
## 25816                                                     simply   1
## 25817                                                       slow   1
## 25818                                                      smell   1
## 25819                                                       soda   1
## 25820                                                     soften   1
## 25821                                                  something   1
## 25822                                                  sometimes   1
## 25823                                                      speak   1
## 25824                                                      stale   1
## 25825                                                      steak   1
## 25826                                                       stop   1
## 25827                                                    stretch   1
## 25828                                                    suggest   1
## 25829                                                     surely   1
## 25830                                                    survive   1
## 25831                                                    suspect   1
## 25832                                                    suspend   1
## 25833                                                       sway   1
## 25834                                                     switch   1
## 25835                                                   terrible   1
## 25836                                                      thank   1
## 25837                                                  toothsome   1
## 25838                                                      tough   1
## 25839                                                      treat   1
## 25840                                                      trust   1
## 25841                                                   unmelted   1
## 25842                                                    usually   1
## 25843                                                      visit   1
## 25844                                                      vouch   1
## 25845                                                       wait   1
## 25846                                                       walk   1
## 25847                                                      watch   1
## 25848                                                       whiz   1
## 25849                                                      whole   1
## 25850                                                    without   1
## 25851                                                      youll   1
## 25852                                                       zero   1
## 25853                                                      speak   1
## 25854                                                      order   1
## 25855                                                        due   1
## 25856                                                      patio   1
## 25857                                                       even   1
## 25858                                                        pat   1
## 25859                                                 basketball   1
## 25860                                                      didnt   1
## 25861                                                       good   1
## 25862                                                     cheese   1
## 25863                                                       king   1
## 25864                                                       next   1
## 25865                                                  pistachio   1
## 25866                                                     gelato   1
## 25867                                                      style   1
## 25868                                                      place   1
## 25869                                                        eat   1
## 25870                                                   sidewalk   1
## 25871                                                     afford   1
## 25872                                                 artificial   1
## 25873                                                        ask   1
## 25874                                                       bake   1
## 25875                                                      begin   1
## 25876                                                      carry   1
## 25877                                                    cheapen   1
## 25878                                                     cheese   1
## 25879                                                cheesesteak   1
## 25880                                                       chop   1
## 25881                                                       come   1
## 25882                                                    comment   1
## 25883                                                 compensate   1
## 25884                                                   complain   1
## 25885                                                      count   1
## 25886                                                      cover   1
## 25887                                                  customize   1
## 25888                                                    deliver   1
## 25889                                                       deny   1
## 25890                                                      drive   1
## 25891                                                        eat   1
## 25892                                                      every   1
## 25893                                                     expect   1
## 25894                                                    explain   1
## 25895                                                      fault   1
## 25896                                                       find   1
## 25897                                                      first   1
## 25898                                                     forget   1
## 25899                                                       good   1
## 25900                                                      grasp   1
## 25901                                                      harsh   1
## 25902                                                       hear   1
## 25903                                                   honestly   1
## 25904                                                    imagine   1
## 25905                                                      knock   1
## 25906                                                       live   1
## 25907                                                       mask   1
## 25908                                                       name   1
## 25909                                                      onion   1
## 25910                                                       park   1
## 25911                                                       part   1
## 25912                                                       pass   1
## 25913                                                     philly   1
## 25914                                                   possibly   1
## 25915                                                    process   1
## 25916                                                       rate   1
## 25917                                                     recall   1
## 25918                                                  recommend   1
## 25919                                                     refuse   1
## 25920                                                     rescue   1
## 25921                                                     resist   1
## 25922                                                       save   1
## 25923                                                        see   1
## 25924                                                      smile   1
## 25925                                                    stomach   1
## 25926                                                    support   1
## 25927                                                       sure   1
## 25928                                                       take   1
## 25929                                                       tell   1
## 25930                                                        try   1
## 25931                                                      visit   1
## 25932                                                    without   1
## 25933                                                      write   1
## 25934                                                      wrong   1
## 25935                                                 incredibly   1
## 25936                                                  president   1
## 25937                                                       tire   1
## 25938                                                       just   1
## 25939                                                       also   1
## 25940                                                    deserve   1
## 25941                                                       ever   1
## 25942                                               cheesesteaks   1
## 25943                                                      world   1
## 25944                                                    freedom   1
## 25945                                                  attention   1
## 25946                                                    essence   1
## 25947                                                     around   1
## 25948                                                      bench   1
## 25949                                                       cold   1
## 25950                                                    couldnt   1
## 25951                                                 crampacked   1
## 25952                                                      didnt   1
## 25953                                                      drive   1
## 25954                                                       good   1
## 25955                                                       half   1
## 25956                                                       head   1
## 25957                                                       honk   1
## 25958                                                    husband   1
## 25959                                                        jet   1
## 25960                                                    journey   1
## 25961                                                       line   1
## 25962                                                       look   1
## 25963                                                 motorcycle   1
## 25964                                                     nearby   1
## 25965                                                     please   1
## 25966                                                    quickly   1
## 25967                                                     random   1
## 25968                                                     reason   1
## 25969                                                   remember   1
## 25970                                                     repair   1
## 25971                                                     return   1
## 25972                                                       seat   1
## 25973                                                      since   1
## 25974                                                     street   1
## 25975                                                       sure   1
## 25976                                                      table   1
## 25977                                                       take   1
## 25978                                                        two   1
## 25979                                                       want   1
## 25980                                                     window   1
## 25981                                                 windshield   1
## 25982                                                     action   1
## 25983                                                     infuse   1
## 25984                                                      onion   1
## 25985                                                        add   1
## 25986                                                     cheese   1
## 25987                                                      color   1
## 25988                                                     flavor   1
## 25989                                                   mushroom   1
## 25990                                                      onion   1
## 25991                                                       just   1
## 25992                                                  allotment   1
## 25993                                                       love   1
## 25994                                                      water   1
## 25995                                                       just   1
## 25996                                                       gunk   1
## 25997                                                       meat   1
## 25998                                                      didnt   1
## 25999                                                      arent   1
## 26000                                                   bathroom   1
## 26001                                                      board   1
## 26002                                                        buy   1
## 26003                                                       cash   1
## 26004                                                       come   1
## 26005                                                    confuse   1
## 26006                                                      debit   1
## 26007                                                 definitely   1
## 26008                                                         do   1
## 26009                                                     doesnt   1
## 26010                                                        etc   1
## 26011                                                    finally   1
## 26012                                                        get   1
## 26013                                                       good   1
## 26014                                                        guy   1
## 26015                                                       hand   1
## 26016                                                       home   1
## 26017                                                       line   1
## 26018                                                       long   1
## 26019                                                    machine   1
## 26020                                                       make   1
## 26021                                                       next   1
## 26022                                                     normal   1
## 26023                                                      order   1
## 26024                                                        pat   1
## 26025                                                    payment   1
## 26026                                                   purchase   1
## 26027                                                     reader   1
## 26028                                                  seriously   1
## 26029                                                   touristy   1
## 26030                                                       trip   1
## 26031                                                        way   1
## 26032                                    welcometothelastcentury   1
## 26033                                                        box   1
## 26034                                                      bread   1
## 26035                                                        bun   1
## 26036                                                     cheese   1
## 26037                                                       cold   1
## 26038                                                     corner   1
## 26039                                                     cutout   1
## 26040                                                      didnt   1
## 26041                                                 disappoint   1
## 26042                                                       good   1
## 26043                                                      gross   1
## 26044                                                    ketchup   1
## 26045                                                      layer   1
## 26046                                                        may   1
## 26047                                                       meat   1
## 26048                                                       roll   1
## 26049                                                   sandwich   1
## 26050                                                       spin   1
## 26051                                                      taste   1
## 26052                                                     theyre   1
## 26053                                                      think   1
## 26054                                                       rule   1
## 26055                                                        sin   1
## 26056                                                        kid   1
## 26057                                                    anymore   1
## 26058                                                     anyone   1
## 26059                                                      bread   1
## 26060                                                   business   1
## 26061                                                       busy   1
## 26062                                                        buy   1
## 26063                                                        can   1
## 26064                                                     cheese   1
## 26065                                                  costumers   1
## 26066                                                      decor   1
## 26067                                                      donta   1
## 26068                                                   employee   1
## 26069                                                    exhibit   1
## 26070                                                       food   1
## 26071                                                        fry   1
## 26072                                                      genos   1
## 26073                                                        get   1
## 26074                                                      great   1
## 26075                                                       high   1
## 26076                                                         id   1
## 26077                                                         im   1
## 26078                                                 impressive   1
## 26079                                                       know   1
## 26080                                                      large   1
## 26081                                                       late   1
## 26082                                                       like   1
## 26083                                                       line   1
## 26084                                                       long   1
## 26085                                                        may   1
## 26086                                                      money   1
## 26087                                                       neon   1
## 26088                                                    nothing   1
## 26089                                                        one   1
## 26090                                                      order   1
## 26091                                                       park   1
## 26092                                                     people   1
## 26093                                                      place   1
## 26094                                                       post   1
## 26095                                                    promote   1
## 26096                                                       real   1
## 26097                                                   sandwich   1
## 26098                                                    schtick   1
## 26099                                                      serve   1
## 26100                                                      short   1
## 26101                                                      since   1
## 26102                                                  something   1
## 26103                                                      speed   1
## 26104                                                     stance   1
## 26105                                                      steak   1
## 26106                                                       suck   1
## 26107                                                    support   1
## 26108                                                       take   1
## 26109                                                     theres   1
## 26110                                                       time   1
## 26111                                                   touristy   1
## 26112                                                         us   1
## 26113                                                        way   1
## 26114                                                    whether   1
## 26115                                                        wiz   1
## 26116                                                      youre   1
## 26117                                                     assume   1
## 26118                                                     choose   1
## 26119                                                     decide   1
## 26120                                                      enjoy   1
## 26121                                                    freedom   1
## 26122                                                      quite   1
## 26123                                                     really   1
## 26124                                                   register   1
## 26125                                                     tricky   1
## 26126                                                     unwrap   1
## 26127                                                    usually   1
## 26128                                                        one   1
## 26129                                                       walk   1
## 26130                                                       cash   1
## 26131                                                      short   1
## 26132                                                      still   1
## 26133                                                       love   1
## 26134                                                       line   1
## 26135                                                    cuisine   1
## 26136                                                       food   1
## 26137                                                      woman   1
## 26138                                                   paladino   1
## 26139                                                         jr   1
## 26140                                                      steak   1
## 26141                                                        sub   1
## 26142                                                      onion   1
## 26143                                                     choice   1
## 26144                                                      didnt   1
## 26145                                                       zero   1
## 26146                                                     famous   1
## 26147                                                     george   1
## 26148                                                       read   1
## 26149                                                   terminal   1
## 26150                                                       good   1
## 26151                                                          y   1
## 26152                                                       cast   1
## 26153                                                       vibe   1
## 26154                                                 attraction   1
## 26155                                                       food   1
## 26156                                                       hand   1
## 26157                                                       neon   1
## 26158                                                        pay   1
## 26159                                                     family   1
## 26160                                                    foodies   1
## 26161                                                       good   1
## 26162                                                     region   1
## 26163                                                        add   1
## 26164                                                       buis   1
## 26165                                                      first   1
## 26166                                                     around   1
## 26167                                                        buy   1
## 26168                                                       lame   1
## 26169                                                        pat   1
## 26170                                                   sightsee   1
## 26171                                                        way   1
## 26172                                                     weight   1
## 26173                                                      first   1
## 26174                                                   suprised   1
## 26175                                                       time   1
## 26176                                                        add   1
## 26177                                                     around   1
## 26178                                                      front   1
## 26179                                                       good   1
## 26180                                                       look   1
## 26181                                                       make   1
## 26182                                               philadelphia   1
## 26183                                                      short   1
## 26184                                              significantly   1
## 26185                                                         th   1
## 26186                                                 throughout   1
## 26187                                                       warn   1
## 26188                                                       good   1
## 26189                                                        joe   1
## 26190                                                      bread   1
## 26191                                                      close   1
## 26192                                               conversation   1
## 26193                                                         do   1
## 26194                                                      favor   1
## 26195                                                       four   1
## 26196                                                  gentleman   1
## 26197                                                        get   1
## 26198                                                      group   1
## 26199                                                    include   1
## 26200                                                       just   1
## 26201                                                       kind   1
## 26202                                                       lose   1
## 26203                                                      meaty   1
## 26204                                                    mention   1
## 26205                                                       need   1
## 26206                                                       park   1
## 26207                                                      place   1
## 26208                                                      point   1
## 26209                                                    proceed   1
## 26210                                                      ready   1
## 26211                                                        run   1
## 26212                                                      steak   1
## 26213                                                     surely   1
## 26214                                                      think   1
## 26215                                                       wall   1
## 26216                                                       wont   1
## 26217                                                          2   1
## 26218                                                       able   1
## 26219                                                    advance   1
## 26220                                                       also   1
## 26221                                                     always   1
## 26222                                                    another   1
## 26223                                                  authentic   1
## 26224                                                      aware   1
## 26225                                                   bathroom   1
## 26226                                                       bear   1
## 26227                                                     beyond   1
## 26228                                                         bf   1
## 26229                                                        big   1
## 26230                                                     bother   1
## 26231                                                       buck   1
## 26232                                                   business   1
## 26233                                                        buy   1
## 26234                                                    cashier   1
## 26235                                                      cause   1
## 26236                                                         cc   1
## 26237                                                     cheese   1
## 26238                                                    classic   1
## 26239                                                    compare   1
## 26240                                                        cow   1
## 26241                                                        cuz   1
## 26242                                                      didnt   1
## 26243                                                     doesnt   1
## 26244                                                      drink   1
## 26245                                                drinksfries   1
## 26246                                                      dying   1
## 26247                                                        eat   1
## 26248                                                  emergency   1
## 26249                                                        end   1
## 26250                                                 enterprise   1
## 26251                                              establishment   1
## 26252                                                        etc   1
## 26253                                                   everyone   1
## 26254                                                 everything   1
## 26255                                                     expect   1
## 26256                                                        fee   1
## 26257                                                       feel   1
## 26258                                                      final   1
## 26259                                                       fine   1
## 26260                                                      first   1
## 26261                                                       folk   1
## 26262                                                     follow   1
## 26263                                                       free   1
## 26264                                                      front   1
## 26265                                                   hahahaha   1
## 26266                                                      happy   1
## 26267                                                       hate   1
## 26268                                                    however   1
## 26269                                                       huge   1
## 26270                                                       hype   1
## 26271                                                         im   1
## 26272                                                       isnt   1
## 26273                                                    itsfine   1
## 26274                                                      joint   1
## 26275                                                       just   1
## 26276                                                       kind   1
## 26277                                                      large   1
## 26278                                                       like   1
## 26279                                                     locate   1
## 26280                                                        mac   1
## 26281                                                     matter   1
## 26282                                                      money   1
## 26283                                                       move   1
## 26284                                                         nd   1
## 26285                                                   negative   1
## 26286                                                       next   1
## 26287                                                     normal   1
## 26288                                                  obviously   1
## 26289                                                        old   1
## 26290                                                        omg   1
## 26291                                                   onlydont   1
## 26292                                                       open   1
## 26293                                                     option   1
## 26294                                                    outdoor   1
## 26295                                                    outside   1
## 26296                                                   painalso   1
## 26297                                                        pat   1
## 26298                                                     person   1
## 26299                                                      phily   1
## 26300                                                        pia   1
## 26301                                                       plan   1
## 26302                                                     prefer   1
## 26303                                                      price   1
## 26304                                                   probably   1
## 26305                                                      quick   1
## 26306                                                     really   1
## 26307                                                    receipt   1
## 26308                                                    receive   1
## 26309                                                   remember   1
## 26310                                                    require   1
## 26311                                                requirement   1
## 26312                                                 restaurant   1
## 26313                                                       ride   1
## 26314                                                   rudeness   1
## 26315                                                       sale   1
## 26316                                                  sandwhich   1
## 26317                                                        say   1
## 26318                                                    serious   1
## 26319                                                    service   1
## 26320                                                    several   1
## 26321                                                      shady   1
## 26322                                                       show   1
## 26323                                                 silverware   1
## 26324                                                      since   1
## 26325                                                   slightly   1
## 26326                                                      smart   1
## 26327                                                       soda   1
## 26328                                                  something   1
## 26329                                                       sooo   1
## 26330                                                      sorry   1
## 26331                                                      speak   1
## 26332                                                      spoil   1
## 26333                                                      stand   1
## 26334                                                      still   1
## 26335                                                       stop   1
## 26336                                                   surgical   1
## 26337                                                       tell   1
## 26338                                                      think   1
## 26339                                                       time   1
## 26340                                                      treat   1
## 26341                                                        try   1
## 26342                                                        two   1
## 26343                                                       type   1
## 26344                                                     unless   1
## 26345                                                    usually   1
## 26346                                                     walkup   1
## 26347                                                        way   1
## 26348                                                       will   1
## 26349                                                    without   1
## 26350                                                 xenophobia   1
## 26351                                                          y   1
## 26352                                                       year   1
## 26353                                                        yes   1
## 26354                                                     enough   1
## 26355                                                      annoy   1
## 26356                                                    another   1
## 26357                                                   behavior   1
## 26358                                                      chick   1
## 26359                                                       cool   1
## 26360                                                  courteous   1
## 26361                                                  extremely   1
## 26362                                                 flavorless   1
## 26363                                                      genos   1
## 26364                                                       hell   1
## 26365                                                    italian   1
## 26366                                                        let   1
## 26367                                                     little   1
## 26368                                                       long   1
## 26369                                                     manner   1
## 26370                                                       mean   1
## 26371                                                        meh   1
## 26372                                                       nice   1
## 26373                                                     notice   1
## 26374                                                  obviously   1
## 26375                                                       okay   1
## 26376                                                        old   1
## 26377                                                        pat   1
## 26378                                                     racist   1
## 26379                                                        say   1
## 26380                                                     server   1
## 26381                                                      shout   1
## 26382                                                      sight   1
## 26383                                                     theres   1
## 26384                                                      three   1
## 26385                                                       time   1
## 26386                                                unnecessary   1
## 26387                                                    visibly   1
## 26388                                                      wasnt   1
## 26389                                                      weird   1
## 26390                                                        bad   1
## 26391                                                       kiss   1
## 26392                                                   business   1
## 26393                                                    concept   1
## 26394                                                      place   1
## 26395                                                       sign   1
## 26396                                                      venue   1
## 26397                                                    attract   1
## 26398                                                     friday   1
## 26399                                                      heres   1
## 26400                                                         oh   1
## 26401                                                      throw   1
## 26402                                                        way   1
## 26403                                                      aside   1
## 26404                                                    country   1
## 26405                                                       doin   1
## 26406                                                  judgement   1
## 26407                                                       vote   1
## 26408                                                    magical   1
## 26409                                                       come   1
## 26410                                                       love   1
## 26411                                                      patty   1
## 26412                                                      think   1
## 26413                                                        ave   1
## 26414                                                      force   1
## 26415                                                 atmosphere   1
## 26416                                                 experience   1
## 26417                                                     indoor   1
## 26418                                                  nostalgic   1
## 26419                                                    outdoor   1
## 26420                                                     racism   1
## 26421                                                      table   1
## 26422                                                       want   1
## 26423                                                       food   1
## 26424                                                         oh   1
## 26425                                                      vomit   1
## 26426                                                    another   1
## 26427                                                  attention   1
## 26428                                                       back   1
## 26429                                                      brand   1
## 26430                                                     bright   1
## 26431                                                        bus   1
## 26432                                                    disease   1
## 26433                                                     dodger   1
## 26434                                                   favorite   1
## 26435                                                      first   1
## 26436                                                        guy   1
## 26437                                                      month   1
## 26438                                                   offnight   1
## 26439                                                   somebody   1
## 26440                                                         st   1
## 26441                                                       take   1
## 26442                                                      thing   1
## 26443                                                      train   1
## 26444                                                      whiff   1
## 26445                                              deliciousness   1
## 26446                                                       meat   1
## 26447                                                     philly   1
## 26448                                                        see   1
## 26449                                                        try   1
## 26450                                                       good   1
## 26451                                                    tourist   1
## 26452                                                    towards   1
## 26453                                                     school   1
## 26454                                                       also   1
## 26455                                                       walk   1
## 26456                                                     corner   1
## 26457                                                        guy   1
## 26458                                                     person   1
## 26459                                                     theyll   1
## 26460                                                       able   1
## 26461                                                 apparently   1
## 26462                                                        bad   1
## 26463                                                  basically   1
## 26464                                                    believe   1
## 26465                                                        big   1
## 26466                                                       bite   1
## 26467                                                      cheap   1
## 26468                                                     cheese   1
## 26469                                             cheesesteaksat   1
## 26470                                                   constant   1
## 26471                                                      cramp   1
## 26472                                                 deplorable   1
## 26473                                                         do   1
## 26474                                                      genos   1
## 26475                                                        get   1
## 26476                                                        gip   1
## 26477                                                        huh   1
## 26478                                                       hype   1
## 26479                                                        ill   1
## 26480                                                         im   1
## 26481                                                       like   1
## 26482                                                    neither   1
## 26483                                                    obvious   1
## 26484                                                      order   1
## 26485                                                     people   1
## 26486                                                        put   1
## 26487                                                      quite   1
## 26488                                                     really   1
## 26489                                                 reputation   1
## 26490                                                      scene   1
## 26491                                                       shes   1
## 26492                                                       sign   1
## 26493                                                       slay   1
## 26494                                                     starve   1
## 26495                                                       stir   1
## 26496                                                    stomach   1
## 26497                                                      thats   1
## 26498                                                     ticket   1
## 26499                                                  traumatic   1
## 26500                                                    trouble   1
## 26501                                                       whiz   1
## 26502                                                      yalls   1
## 26503                                                       zero   1
## 26504                                              establishment   1
## 26505                                                        lot   1
## 26506                                                    sticker   1
## 26507                                                       also   1
## 26508                                                      still   1
## 26509                                                      exist   1
## 26510                                                       back   1
## 26511                                                    feature   1
## 26512                                                       line   1
## 26513                                                       wait   1
## 26514                                                       love   1
## 26515                                                       hype   1
## 26516                                                      photo   1
## 26517                                                    picture   1
## 26518                                                       even   1
## 26519                                               philadelphia   1
## 26520                                                       wall   1
## 26521                                                      badge   1
## 26522                                                        bet   1
## 26523                                                     common   1
## 26524                                                      cover   1
## 26525                                                       dine   1
## 26526                                                  encounter   1
## 26527                                                endorsement   1
## 26528                                                       geno   1
## 26529                                                       good   1
## 26530                                                       help   1
## 26531                                                      leave   1
## 26532                                                       look   1
## 26533                                         memorabiliapatches   1
## 26534                                                  patronize   1
## 26535                                                 photograph   1
## 26536                                                       post   1
## 26537                                                  seemingly   1
## 26538                                                     unless   1
## 26539                                                       wall   1
## 26540                                                       year   1
## 26541                                                      photo   1
## 26542                                                     around   1
## 26543                                                       dine   1
## 26544                                                         go   1
## 26545                                                       good   1
## 26546                                                   memorial   1
## 26547                                                       must   1
## 26548                                                 politician   1
## 26549                                                       wall   1
## 26550                                                      steve   1
## 26551                                                       fill   1
## 26552                                                   decision   1
## 26553                                                        fry   1
## 26554                                                       wall   1
## 26555                                                    instead   1
## 26556                                                     battle   1
## 26557                                                     bottle   1
## 26558                                                      cheap   1
## 26559                                                      genos   1
## 26560                                                       good   1
## 26561                                                         im   1
## 26562                                                     little   1
## 26563                                                  obviously   1
## 26564                                                      outta   1
## 26565                                                      place   1
## 26566                                                        pot   1
## 26567                                                        say   1
## 26568                                                    suggest   1
## 26569                                                       alma   1
## 26570                                                    another   1
## 26571                                                    ashamed   1
## 26572                                                        can   1
## 26573                                                         do   1
## 26574                                                      eagle   1
## 26575                                                      genos   1
## 26576                                                       good   1
## 26577                                                     jeresy   1
## 26578                                                       know   1
## 26579                                                   personal   1
## 26580                                               philadelphia   1
## 26581                                                     philly   1
## 26582                                                    respect   1
## 26583                                                 restaurant   1
## 26584                                                   sandwich   1
## 26585                                                      think   1
## 26586                                                      cause   1
## 26587                                                      didnt   1
## 26588                                                         do   1
## 26589                                                       fall   1
## 26590                                                        may   1
## 26591                                                      south   1
## 26592                                                       take   1
## 26593                                                       word   1
## 26594                                                  arrogance   1
## 26595                                                cheesesteak   1
## 26596                                                        fun   1
## 26597                                                      happy   1
## 26598                                                  political   1
## 26599                                                       time   1
## 26600                                                        add   1
## 26601                                                        bad   1
## 26602                                                      bring   1
## 26603                                                    capture   1
## 26604                                                cheesesteak   1
## 26605                                                  delicious   1
## 26606                                                     depend   1
## 26607                                                    deserve   1
## 26608                                                      didnt   1
## 26609                                                       doto   1
## 26610                                                      dozen   1
## 26611                                                        eat   1
## 26612                                                      enjoy   1
## 26613                                                     famous   1
## 26614                                                       feel   1
## 26615                                                   generous   1
## 26616                                                      genos   1
## 26617                                                       hype   1
## 26618                                                 indicative   1
## 26619                                                       isnt   1
## 26620                                                       kind   1
## 26621                                                       king   1
## 26622                                                       make   1
## 26623                                                    nothing   1
## 26624                                                     philly   1
## 26625                                                    product   1
## 26626                                                    qualify   1
## 26627                                             representative   1
## 26628                                                      tasty   1
## 26629                                                      theos   1
## 26630                                                       tony   1
## 26631                                                    tourist   1
## 26632                                                    waaaaay   1
## 26633                                                    wouldnt   1
## 26634                                                       just   1
## 26635                                                  vomithole   1
## 26636                                                       draw   1
## 26637                                                        fry   1
## 26638                                                        stk   1
## 26639                                                      drive   1
## 26640                                                       area   1
## 26641                                                      cross   1
## 26642                                         disappointingdrove   1
## 26643                                                       good   1
## 26644                                                     letter   1
## 26645                                                  ocharleys   1
## 26646                                                        one   1
## 26647                                                  otherwise   1
## 26648                                                  portillos   1
## 26649                                                        see   1
## 26650                                                      smoke   1
## 26651                                                       yelp   1
## 26652                                                       save   1
## 26653                                                      table   1
## 26654                                                    another   1
## 26655                                                        ask   1
## 26656                                                    believe   1
## 26657                                                       bite   1
## 26658                                                      bring   1
## 26659                                                     choose   1
## 26660                                                    classic   1
## 26661                                                       come   1
## 26662                                                     decide   1
## 26663                                                  different   1
## 26664                                                        eat   1
## 26665                                                      enjoy   1
## 26666                                                      first   1
## 26667                                                       food   1
## 26668                                                        get   1
## 26669                                                         go   1
## 26670                                                       good   1
## 26671                                                     honest   1
## 26672                                                        ive   1
## 26673                                                       know   1
## 26674                                                       less   1
## 26675                                                        let   1
## 26676                                                       look   1
## 26677                                                       love   1
## 26678                                                    luckily   1
## 26679                                                        may   1
## 26680                                                      maybe   1
## 26681                                                    melissa   1
## 26682                                                        mom   1
## 26683                                                     monday   1
## 26684                                                    opinion   1
## 26685                                                   personal   1
## 26686                                                 popularity   1
## 26687                                                    private   1
## 26688                                                     recent   1
## 26689                                                        say   1
## 26690                                                      since   1
## 26691                                                      thats   1
## 26692                                                       walk   1
## 26693                                                      wasnt   1
## 26694                                                        yes   1
## 26695                                                     people   1
## 26696                                                      start   1
## 26697                                                cheesesteak   1
## 26698                                               philadelphia   1
## 26699                                                    lincoln   1
## 26700                                                  authentic   1
## 26701                                                      blink   1
## 26702                                                      check   1
## 26703                                                       come   1
## 26704                                                    compare   1
## 26705                                                   complain   1
## 26706                                                   consider   1
## 26707                                                 definitely   1
## 26708                                                 disappoint   1
## 26709                                                        end   1
## 26710                                                 especially   1
## 26711                                                    finally   1
## 26712                                                      genos   1
## 26713                                                        get   1
## 26714                                                 girlfriend   1
## 26715                                                         go   1
## 26716                                                         im   1
## 26717                                                       long   1
## 26718                                                       mind   1
## 26719                                                      nasty   1
## 26720                                                       next   1
## 26721                                                     people   1
## 26722                                                     really   1
## 26723                                                     redeem   1
## 26724                                                        see   1
## 26725                                                      still   1
## 26726                                                       stop   1
## 26727                                                       will   1
## 26728                                                       yelp   1
## 26729                                                       find   1
## 26730                                                          2   1
## 26731                                                 allegiance   1
## 26732                                                    america   1
## 26733                                                     amount   1
## 26734                                                    another   1
## 26735                                                       area   1
## 26736                                                       base   1
## 26737                                                     cheese   1
## 26738                                                cheesesteak   1
## 26739                                                      color   1
## 26740                                               delassandros   1
## 26741                                                     expect   1
## 26742                                                 experience   1
## 26743                                                       fact   1
## 26744                                                      hurry   1
## 26745                                                       last   1
## 26746                                                       line   1
## 26747                                                       meat   1
## 26748                                                       mess   1
## 26749                                                       mind   1
## 26750                                                       much   1
## 26751                                                      onion   1
## 26752                                                      order   1
## 26753                                                   remember   1
## 26754                                                     remind   1
## 26755                                                       seat   1
## 26756                                                       soda   1
## 26757                                                     spiral   1
## 26758                                                   standard   1
## 26759                                                  tastebuds   1
## 26760                                                      thing   1
## 26761                                                      think   1
## 26762                                                       time   1
## 26763                                                      today   1
## 26764                                                     travel   1
## 26765                                                        use   1
## 26766                                                       wait   1
## 26767                                                       base   1
## 26768                                                     decide   1
## 26769                                                         do   1
## 26770                                                       ever   1
## 26771                                                   everyone   1
## 26772                                                  forcefeed   1
## 26773                                                      genos   1
## 26774                                                       idea   1
## 26775                                                   interest   1
## 26776                                                       just   1
## 26777                                                       keep   1
## 26778                                                       many   1
## 26779                                                    network   1
## 26780                                                 overpriced   1
## 26781                                                       show   1
## 26782                                                      since   1
## 26783                                                    special   1
## 26784                                                      steak   1
## 26785                                                    suggest   1
## 26786                                                      super   1
## 26787                                                      tasty   1
## 26788                                                    totally   1
## 26789                                                         tv   1
## 26790                                                      worth   1
## 26791                                                      start   1
## 26792                                                        def   1
## 26793                                                       even   1
## 26794                                                         go   1
## 26795                                                       less   1
## 26796                                                     arrive   1
## 26797                                                       just   1
## 26798                                                        can   1
## 26799                                               cheesesteaks   1
## 26800                                                    inspire   1
## 26801                                                       isnt   1
## 26802                                                        one   1
## 26803                                                        pat   1
## 26804                                                      place   1
## 26805                                                      slice   1
## 26806                                                       take   1
## 26807                                                      wasnt   1
## 26808                                                     unique   1
## 26809                                                       atms   1
## 26810                                                       base   1
## 26811                                                   business   1
## 26812                                                       card   1
## 26813                                                       cash   1
## 26814                                                     cheese   1
## 26815                                                cholesterol   1
## 26816                                                 disappoint   1
## 26817                                                    disgust   1
## 26818                                                     dollar   1
## 26819                                                     donate   1
## 26820                                                      drink   1
## 26821                                                      eight   1
## 26822                                                  expensive   1
## 26823                                                 experience   1
## 26824                                                       full   1
## 26825                                                        get   1
## 26826                                                       good   1
## 26827                                                       hate   1
## 26828                                                    instead   1
## 26829                                                       just   1
## 26830                                                     little   1
## 26831                                                       much   1
## 26832                                                        now   1
## 26833                                                 originally   1
## 26834                                                      place   1
## 26835                                                      plain   1
## 26836                                               sandwichesno   1
## 26837                                                    sticker   1
## 26838                                                      think   1
## 26839                                                        top   1
## 26840                                                       town   1
## 26841                                                        act   1
## 26842                                                       mall   1
## 26843                                                   military   1
## 26844                                                   columbus   1
## 26845                                                         va   1
## 26846                                                      chain   1
## 26847                                                    decline   1
## 26848                                                      place   1
## 26849                                                      speak   1
## 26850                                                    suppose   1
## 26851                                                     theyre   1
## 26852                                               unaccustomed   1
## 26853                                                       food   1
## 26854                                                        far   1
## 26855                                                   customer   1
## 26856                                                      field   1
## 26857                                                     philly   1
## 26858                                                       make   1
## 26859                                                        mix   1
## 26860                                                   sheeples   1
## 26861                                                  socialist   1
## 26862                                                       line   1
## 26863                                                  sammiches   1
## 26864                                                     across   1
## 26865                                                       beef   1
## 26866                                                      cheat   1
## 26867                                               cheesesteaks   1
## 26868                                                        cut   1
## 26869                                                 experience   1
## 26870                                                       fill   1
## 26871                                                     freeze   1
## 26872                                                      fresh   1
## 26873                                                          g   1
## 26874                                                    gristly   1
## 26875                                                    healthy   1
## 26876                                                       huge   1
## 26877                                                 ingredient   1
## 26878                                                    italian   1
## 26879                                                        ive   1
## 26880                                                       july   1
## 26881                                                       look   1
## 26882                                                       love   1
## 26883                                                        low   1
## 26884                                                      lumpy   1
## 26885                                                      lunch   1
## 26886                                                       must   1
## 26887                                                       next   1
## 26888                                                       open   1
## 26889                                                      paper   1
## 26890                                                    partake   1
## 26891                                                    patsbut   1
## 26892                                                     people   1
## 26893                                                      piece   1
## 26894                                                      place   1
## 26895                                                       poor   1
## 26896                                                    provide   1
## 26897                                                   quantity   1
## 26898                                                       roll   1
## 26899                                                    rubbery   1
## 26900                                                    service   1
## 26901                                                     steamy   1
## 26902                                                      super   1
## 26903                                                     theres   1
## 26904                                                     theyre   1
## 26905                                                    tourist   1
## 26906                                                       vega   1
## 26907                                                        way   1
## 26908                                                        wiz   1
## 26909                                                      worth   1
## 26910                                                        yes   1
## 26911                                                 experience   1
## 26912                                                        ive   1
## 26913                                                      place   1
## 26914                                                      gross   1
## 26915                                                       bite   1
## 26916                                                      katia   1
## 26917                                                      sheet   1
## 26918                                                      steak   1
## 26919                                                        use   1
## 26920                                                          3   1
## 26921                                                   actually   1
## 26922                                                    america   1
## 26923                                                     anyway   1
## 26924                                                       bill   1
## 26925                                                       blog   1
## 26926                                                        box   1
## 26927                                                     bucket   1
## 26928                                                 bucketlist   1
## 26929                                                        cat   1
## 26930                                                     celina   1
## 26931                                                competition   1
## 26932                                                 competitor   1
## 26933                                               dalessandros   1
## 26934                                                         do   1
## 26935                                                        eat   1
## 26936                                                       fare   1
## 26937                                                       food   1
## 26938                                                  formulate   1
## 26939                                                     friend   1
## 26940                                                         go   1
## 26941                                                     greasy   1
## 26942                                                       head   1
## 26943                                                   historic   1
## 26944                                                    history   1
## 26945                                                         im   1
## 26946                                                immediately   1
## 26947                                                    italian   1
## 26948                                                      johns   1
## 26949                                                       late   1
## 26950                                                    liberty   1
## 26951                                                       make   1
## 26952                                                        max   1
## 26953                                                       menu   1
## 26954                                                     modern   1
## 26955                                                     nearby   1
## 26956                                                      never   1
## 26957                                                       numb   1
## 26958                                                        one   1
## 26959                                                    orderly   1
## 26960                                                   passyunk   1
## 26961                                                        pic   1
## 26962                                                   probably   1
## 26963                                                       quit   1
## 26964                                                     really   1
## 26965                                                  recommend   1
## 26966                                                       rest   1
## 26967                                                    rivalry   1
## 26968                                                          s   1
## 26969                                                      shore   1
## 26970                                                    shortys   1
## 26971                                                    signage   1
## 26972                                                      since   1
## 26973                                                      staff   1
## 26974                                                      steak   1
## 26975                                                      still   1
## 26976                                                       tony   1
## 26977                                                        try   1
## 26978                                                   upstairs   1
## 26979                                                      visit   1
## 26980                                                       wall   1
## 26981                                                    website   1
## 26982                                                      whole   1
## 26983                                                      worth   1
## 26984                                                    youtube   1
## 26985                                                       just   1
## 26986                                                       road   1
## 26987                                                       tile   1
## 26988                                                     cheese   1
## 26989                                                        etc   1
## 26990                                                       like   1
## 26991                                                      think   1
## 26992                                                        get   1
## 26993                                                      onion   1
## 26994                                                   mushroom   1
## 26995                                                      taste   1
## 26996                                                      youll   1
## 26997                                                        put   1
## 26998                                                     herbal   1
## 26999                                                          n   1
## 27000                                                      place   1
## 27001                                                    playful   1
## 27002                                                        wiz   1
## 27003                                                     burger   1
## 27004                                                        add   1
## 27005                                                 altogether   1
## 27006                                                     always   1
## 27007                                                      andor   1
## 27008                                                     anyone   1
## 27009                                                   anything   1
## 27010                                                     anyway   1
## 27011                                                 apparently   1
## 27012                                                 appetizing   1
## 27013                                                application   1
## 27014                                              appropriately   1
## 27015                                                  automatic   1
## 27016                                                       back   1
## 27017                                                     barely   1
## 27018                                                      basic   1
## 27019                                                         bc   1
## 27020                                                   befuddle   1
## 27021                                                      bland   1
## 27022                                                   blandthe   1
## 27023                                                    boththe   1
## 27024                                                      bring   1
## 27025                                                     bummer   1
## 27026                                                       bury   1
## 27027                                                        buy   1
## 27028                                                       call   1
## 27029                                                       cant   1
## 27030                                                       case   1
## 27031                                                      cheap   1
## 27032                                                      check   1
## 27033                                                      chewy   1
## 27034                                                     choose   1
## 27035                                                      clean   1
## 27036                                                      cloud   1
## 27037                                                       cmon   1
## 27038                                                       coke   1
## 27039                                                    comment   1
## 27040                                                 completely   1
## 27041                                                 compliment   1
## 27042                                                   constant   1
## 27043                                                   contrary   1
## 27044                                                    couldnt   1
## 27045                                                     couple   1
## 27046                                                    cracker   1
## 27047                                                       crap   1
## 27048                                                     crappy   1
## 27049                                                     crease   1
## 27050                                                       crps   1
## 27051                                                        cut   1
## 27052                                                       cute   1
## 27053                                                         dc   1
## 27054                                                    default   1
## 27055                                                   delegate   1
## 27056                                                  delicious   1
## 27057                                                    delight   1
## 27058                                             disappointment   1
## 27059                                                    disgust   1
## 27060                                                    dislike   1
## 27061                                                     doesnt   1
## 27062                                                       down   1
## 27063                                                       drip   1
## 27064                                                       dude   1
## 27065                                                        duh   1
## 27066                                                 effeciency   1
## 27067                                                   employee   1
## 27068                                                        end   1
## 27069                                                      enjoy   1
## 27070                                                 especially   1
## 27071                                                        etc   1
## 27072                                                     evenly   1
## 27073                                                  everybody   1
## 27074                                                   everyone   1
## 27075                                                 everything   1
## 27076                                                    example   1
## 27077                                                  excellent   1
## 27078                                                 excitement   1
## 27079                                                       fact   1
## 27080                                                       fail   1
## 27081                                                       fake   1
## 27082                                                     family   1
## 27083                                                        fan   1
## 27084                                                      fatty   1
## 27085                                                   favorite   1
## 27086                                                       feel   1
## 27087                                                       fill   1
## 27088                                                      final   1
## 27089                                                    finally   1
## 27090                                                       fine   1
## 27091                                                     fixins   1
## 27092                                                 flavorless   1
## 27093                                                    freedom   1
## 27094                                                      fresh   1
## 27095                                                     friend   1
## 27096                                                   friendly   1
## 27097                                                 friesfries   1
## 27098                                                   friesomg   1
## 27099                                                      fruit   1
## 27100                                                        fyi   1
## 27101                                                        god   1
## 27102                                                        goo   1
## 27103                                                      gooey   1
## 27104                                                      gotta   1
## 27105                                                 government   1
## 27106                                                     greese   1
## 27107                                                    grinder   1
## 27108                                                       hard   1
## 27109                                                    healthy   1
## 27110                                                       heap   1
## 27111                                                   honestly   1
## 27112                                                        hot   1
## 27113                                                       huge   1
## 27114                                                    husband   1
## 27115                                                         id   1
## 27116                                                importantly   1
## 27117                                                    impress   1
## 27118                                                     inside   1
## 27119                                                       jeez   1
## 27120                                                       know   1
## 27121                                                    lactose   1
## 27122                                                       lady   1
## 27123                                                       leak   1
## 27124                                                       less   1
## 27125                                                        let   1
## 27126                                                    liquidy   1
## 27127                                                        lol   1
## 27128                                                        low   1
## 27129                                                       lube   1
## 27130                                                      major   1
## 27131                                                       many   1
## 27132                                                       mean   1
## 27133                                                   meatball   1
## 27134                                                meltedbread   1
## 27135                                                      melty   1
## 27136                                                       mild   1
## 27137                                                       mind   1
## 27138                                                    mixture   1
## 27139                                                         mo   1
## 27140                                                       move   1
## 27141                                                     napkin   1
## 27142                                                         nb   1
## 27143                                                    neither   1
## 27144                                                      never   1
## 27145                                                        new   1
## 27146                                                       next   1
## 27147                                                     nicely   1
## 27148                                                        now   1
## 27149                                                      offer   1
## 27150                                                         oh   1
## 27151                                                        omg   1
## 27152                                                       ooey   1
## 27153                                                       oops   1
## 27154                                                        opt   1
## 27155                                                   optional   1
## 27156                                                  otherwise   1
## 27157                                                    outside   1
## 27158                                                  ovenfresh   1
## 27159                                                  overpower   1
## 27160                                                   overrate   1
## 27161                                                  overwhelm   1
## 27162                                                       pain   1
## 27163                                                     palate   1
## 27164                                                       part   1
## 27165                                                  perfectly   1
## 27166                                                     person   1
## 27167                                                 personally   1
## 27168                                               philadelphia   1
## 27169                                                    picture   1
## 27170                                                      plain   1
## 27171                                                    pleasim   1
## 27172                                                  plentiful   1
## 27173                                                     plenty   1
## 27174                                                      point   1
## 27175                                                       poor   1
## 27176                                                practically   1
## 27177                                                     prefer   1
## 27178                                                    prepare   1
## 27179                                                    present   1
## 27180                                               presentation   1
## 27181                                                      press   1
## 27182                                                    problem   1
## 27183                                                    process   1
## 27184                                                    product   1
## 27185                                                  prominent   1
## 27186                                                   properly   1
## 27187                                                       prov   1
## 27188                                                    provide   1
## 27189                                                   quantity   1
## 27190                                                        raw   1
## 27191                                                       real   1
## 27192                                                     really   1
## 27193                                                     reason   1
## 27194                                                        red   1
## 27195                                                     refuse   1
## 27196                                                     region   1
## 27197                                                    replace   1
## 27198                                                      right   1
## 27199                                                      roast   1
## 27200                                                    rubbery   1
## 27201                                                       rude   1
## 27202                                                       ruin   1
## 27203                                                        run   1
## 27204                                                      saide   1
## 27205                                                    satisfy   1
## 27206                                                  saucegood   1
## 27207                                                      saute   1
## 27208                                                     scarce   1
## 27209                                                     search   1
## 27210                                                       seem   1
## 27211                                                  semifresh   1
## 27212                                                    service   1
## 27213                                                     shabby   1
## 27214                                                       shop   1
## 27215                                                      short   1
## 27216                                                       sink   1
## 27217                                                    skimpin   1
## 27218                                                       skip   1
## 27219                                                       slab   1
## 27220                                                       snob   1
## 27221                                                       soft   1
## 27222                                                      soggy   1
## 27223                                                      solid   1
## 27224                                                   solidify   1
## 27225                                                  something   1
## 27226                                                  sometimes   1
## 27227                                                        soo   1
## 27228                                                      sorry   1
## 27229                                                      sorta   1
## 27230                                                       soup   1
## 27231                                                      soupy   1
## 27232                                                       spot   1
## 27233                                                      stain   1
## 27234                                                      stale   1
## 27235                                                     staten   1
## 27236                                                 steakhouse   1
## 27237                                                     steaki   1
## 27238                                                  steakopen   1
## 27239                                                   steaksit   1
## 27240                                                 steakswhen   1
## 27241                                                   steakthe   1
## 27242                                                  steakwhat   1
## 27243                                                      steam   1
## 27244                                                  stonecold   1
## 27245                                                   straight   1
## 27246                                            stworldproblems   1
## 27247                                                       suck   1
## 27248                                                    sumthin   1
## 27249                                                    suppose   1
## 27250                                                       sure   1
## 27251                                                   surprise   1
## 27252                                                       take   1
## 27253                                                       talk   1
## 27254                                                  tarnation   1
## 27255                                                        ten   1
## 27256                                                   terrific   1
## 27257                                                  therefore   1
## 27258                                                      thing   1
## 27259                                                      think   1
## 27260                                                     thinly   1
## 27261                                                     though   1
## 27262                                                      throw   1
## 27263                                                        ton   1
## 27264                                                      touch   1
## 27265                                                       turn   1
## 27266                                                   unmelted   1
## 27267                                                    veggies   1
## 27268                                                     versus   1
## 27269                                                       walk   1
## 27270                                                       warm   1
## 27271                                                     watery   1
## 27272                                                     werent   1
## 27273                                                   whatever   1
## 27274                                             whateverflavor   1
## 27275                                                      whats   1
## 27276                                               whizamerican   1
## 27277                                                    whizone   1
## 27278                                                      whizz   1
## 27279                                                       wipe   1
## 27280                                                     witout   1
## 27281                                                      wizim   1
## 27282                                                      wizit   1
## 27283                                                       wizz   1
## 27284                                                        wok   1
## 27285                                                      worth   1
## 27286                                                        wow   1
## 27287                                                       wrap   1
## 27288                                                      wrong   1
## 27289                                                        yes   1
## 27290                                                        yet   1
## 27291                                                       youd   1
## 27292                                                      youre   1
## 27293                                                      yummy   1
## 27294                                                       zero   1
## 27295                                                     cheese   1
## 27296                                                       high   1
## 27297                                                  something   1
## 27298                                                     cheese   1
## 27299                                                     hoagie   1
## 27300                                                   mushroom   1
## 27301                                                     pepper   1
## 27302                                                     philly   1
## 27303                                                    suppose   1
## 27304                                                      taste   1
## 27305                                                     philly   1
## 27306                                                        one   1
## 27307                                                    awesome   1
## 27308                                                cheesesteak   1
## 27309                                                       cold   1
## 27310                                                    despite   1
## 27311                                                         do   1
## 27312                                                        eat   1
## 27313                                                     mostly   1
## 27314                                                     really   1
## 27315                                                        say   1
## 27316                                                     though   1
## 27317                                                       soak   1
## 27318                                                     really   1
## 27319                                                       take   1
## 27320                                                        now   1
## 27321                                                 overpriced   1
## 27322                                                   district   1
## 27323                                                    product   1
## 27324                                                      sauce   1
## 27325                                                        job   1
## 27326                                                       even   1
## 27327                                                       meet   1
## 27328                                                    product   1
## 27329                                                      steak   1
## 27330                                                      place   1
## 27331                                                       will   1
## 27332                                                        wiz   1
## 27333                                                       take   1
## 27334                                                          2   1
## 27335                                                          3   1
## 27336                                                   absurdly   1
## 27337                                                     action   1
## 27338                                                     actual   1
## 27339                                                     addons   1
## 27340                                                     advise   1
## 27341                                                  affection   1
## 27342                                                 aficionado   1
## 27343                                                       alas   1
## 27344                                                    alcohol   1
## 27345                                                    alsothe   1
## 27346                                                   although   1
## 27347                                                      among   1
## 27348                                                     amount   1
## 27349                                                      andor   1
## 27350                                                     anyday   1
## 27351                                                     anyway   1
## 27352                                                        aok   1
## 27353                                                 apparently   1
## 27354                                                      apple   1
## 27355                                                     arcane   1
## 27356                                                     arrive   1
## 27357                                                        atm   1
## 27358                                                 atmosphere   1
## 27359                                                  available   1
## 27360                                                       away   1
## 27361                                                      basic   1
## 27362                                               battleground   1
## 27363                                                       beat   1
## 27364                                                    believe   1
## 27365                                                     beyond   1
## 27366                                                       bite   1
## 27367                                                   blacktop   1
## 27368                                                       blah   1
## 27369                                                       bleh   1
## 27370                                                      block   1
## 27371                                                       blow   1
## 27372                                                     bodega   1
## 27373                                                     bottom   1
## 27374                                                  breakfast   1
## 27375                                                      bring   1
## 27376                                                    brother   1
## 27377                                                       bull   1
## 27378                                                        bun   1
## 27379                                                      burst   1
## 27380                                                   business   1
## 27381                                                    buttery   1
## 27382                                                        buy   1
## 27383                                                       call   1
## 27384                                                    capital   1
## 27385                                                  carefully   1
## 27386                                                      carls   1
## 27387                                                    carmens   1
## 27388                                                       cart   1
## 27389                                                   category   1
## 27390                                                      cause   1
## 27391                                                    central   1
## 27392                                                   charleys   1
## 27393                                                   charlies   1
## 27394                                                    chattin   1
## 27395                                                     cherry   1
## 27396                                                    chinese   1
## 27397                                                       chop   1
## 27398                                                      chuck   1
## 27399                                                      chunk   1
## 27400                                                     circle   1
## 27401                                                      civil   1
## 27402                                                      clean   1
## 27403                                                      close   1
## 27404                                                       cmon   1
## 27405                                                         co   1
## 27406                                                       coin   1
## 27407                                                    combine   1
## 27408                                                 comparison   1
## 27409                                                 competitor   1
## 27410                                                   complete   1
## 27411                                                connoisseur   1
## 27412                                             connoisseurbut   1
## 27413                                                    consume   1
## 27414                                                    contain   1
## 27415                                                   continue   1
## 27416                                                       cook   1
## 27417                                                    couldnt   1
## 27418                                                      count   1
## 27419                                                    counter   1
## 27420                                                     cousin   1
## 27421                                                cravingwell   1
## 27422                                                      crawl   1
## 27423                                                 culturally   1
## 27424                                                    culture   1
## 27425                                                  currently   1
## 27426                                                       damn   1
## 27427                                                      dance   1
## 27428                                                       dang   1
## 27429                                                        day   1
## 27430                                                       dead   1
## 27431                                               delessandros   1
## 27432                                                    deserve   1
## 27433                                                destination   1
## 27434                                                 digestible   1
## 27435                                                    disgust   1
## 27436                                                      dream   1
## 27437                                                      drink   1
## 27438                                                       drip   1
## 27439                                                      earth   1
## 27440                                                     eatery   1
## 27441                                                        ego   1
## 27442                                                         eh   1
## 27443                                                       else   1
## 27444                                              embarrassment   1
## 27445                                                         en   1
## 27446                                                  enjoyable   1
## 27447                                                  enjoyment   1
## 27448                                                   envision   1
## 27449                                                   epiphany   1
## 27450                                                 especially   1
## 27451                                                        etc   1
## 27452                                                   everjust   1
## 27453                                                 everything   1
## 27454                                                      exact   1
## 27455                                                    exactly   1
## 27456                                                  excellent   1
## 27457                                                     excite   1
## 27458                                                exploration   1
## 27459                                                  extremely   1
## 27460                                                    faceoff   1
## 27461                                                       fail   1
## 27462                                                     fairly   1
## 27463                                                   fairness   1
## 27464                                                       fame   1
## 27465                                                   familiar   1
## 27466                                                     family   1
## 27467                                                    fanatic   1
## 27468                                                       fast   1
## 27469                                                        fav   1
## 27470                                                      favor   1
## 27471                                                       feud   1
## 27472                                                     figure   1
## 27473                                                     finger   1
## 27474                                                    fixings   1
## 27475                                                  flavorful   1
## 27476                                                 flavorless   1
## 27477                                                    florida   1
## 27478                                                fluorescent   1
## 27479                                                        fly   1
## 27480                                                         fo   1
## 27481                                                       folk   1
## 27482                                                       foot   1
## 27483                                                       fury   1
## 27484                                                      fussy   1
## 27485                                                    gateway   1
## 27486                                                       geno   1
## 27487                                                      giant   1
## 27488                                                       girl   1
## 27489                                                      gonna   1
## 27490                                                   goodness   1
## 27491                                                       goto   1
## 27492                                                      gotta   1
## 27493                                                    grayish   1
## 27494                                                     grease   1
## 27495                                                     greasy   1
## 27496                                                      gross   1
## 27497                                                        guy   1
## 27498                                                       hair   1
## 27499                                                       half   1
## 27500                                                       hard   1
## 27501                                                       hate   1
## 27502                                                      haven   1
## 27503                                                     havent   1
## 27504                                                     heaven   1
## 27505                                                       hell   1
## 27506                                                       help   1
## 27507                                                       high   1
## 27508                                                        hit   1
## 27509                                                   honestly   1
## 27510                                                       hope   1
## 27511                                                   horrible   1
## 27512                                                        hot   1
## 27513                                                      hotel   1
## 27514                                                       huge   1
## 27515                                                        huh   1
## 27516                                                       hype   1
## 27517                                                        ice   1
## 27518                                                     iconic   1
## 27519                                                        idk   1
## 27520                                                    include   1
## 27521                                                   inferior   1
## 27522                                                 ingredient   1
## 27523                                                     insist   1
## 27524                                                  instantly   1
## 27525                                                    instead   1
## 27526                                                     intend   1
## 27527                                                 investment   1
## 27528                                                       isnt   1
## 27529                                                    italian   1
## 27530                                                       jims   1
## 27531                                                       join   1
## 27532                                                     kaufen   1
## 27533                                                    ketchup   1
## 27534                                                        kid   1
## 27535                                                         la   1
## 27536                                                       lack   1
## 27537                                                 lackluster   1
## 27538                                                       lady   1
## 27539                                                   landmark   1
## 27540                                                       last   1
## 27541                                                   laziness   1
## 27542                                                       lazy   1
## 27543                                                         lb   1
## 27544                                                       less   1
## 27545                                                      light   1
## 27546                                                      lingo   1
## 27547                                                       list   1
## 27548                                                       load   1
## 27549                                                        los   1
## 27550                                                     lowkey   1
## 27551                                                    luckily   1
## 27552                                                      lunch   1
## 27553                                                     mainly   1
## 27554                                                      major   1
## 27555                                                      maker   1
## 27556                                                       mall   1
## 27557                                                  mandatory   1
## 27558                                                     market   1
## 27559                                                     matter   1
## 27560                                                       meal   1
## 27561                                                       mean   1
## 27562                                                   mediocre   1
## 27563                                                    mention   1
## 27564                                                       mess   1
## 27565                                                        mid   1
## 27566                                                        min   1
## 27567                                                        mom   1
## 27568                                                 monumental   1
## 27569                                                    morning   1
## 27570                                                      mouth   1
## 27571                                                       move   1
## 27572                                                     nation   1
## 27573                                                  naturally   1
## 27574                                                     nearly   1
## 27575                                               neighborhood   1
## 27576                                                   neophyte   1
## 27577                                                  nevermind   1
## 27578                                                      night   1
## 27579                                                nonetheless   1
## 27580                                                   normally   1
## 27581                                                     notice   1
## 27582                                                    nowhere   1
## 27583                                                  obnoxious   1
## 27584                                                         oh   1
## 27585                                                      onpar   1
## 27586                                                     oppose   1
## 27587                                                        opt   1
## 27588                                                    outside   1
## 27589                                                   overload   1
## 27590                                                   overrate   1
## 27591                                                 patriotism   1
## 27592                                                    patsand   1
## 27593                                                      peace   1
## 27594                                                    perfect   1
## 27595                                                 perfection   1
## 27596                                                     period   1
## 27597                                                   personal   1
## 27598                                           philadelphiathis   1
## 27599                                                   phillies   1
## 27600                                               phillypeople   1
## 27601                                                    phoenix   1
## 27602                                                       pick   1
## 27603                                                      piece   1
## 27604                                                 pilgrimage   1
## 27605                                                      pizza   1
## 27606                                                      plain   1
## 27607                                                     planet   1
## 27608                                                 pleasantly   1
## 27609                                                     policy   1
## 27610                                                    popular   1
## 27611                                                    portion   1
## 27612                                                   portland   1
## 27613                                                   positive   1
## 27614                                                   postpats   1
## 27615                                                  prettttty   1
## 27616                                                     pricey   1
## 27617                                                    problem   1
## 27618                                                progression   1
## 27619                                                   promptly   1
## 27620                                                       prop   1
## 27621                                                   prospect   1
## 27622                                                   protocol   1
## 27623                                                   provlone   1
## 27624                                                     publix   1
## 27625                                                       pure   1
## 27626                                                     purist   1
## 27627                                                   purveyor   1
## 27628                                                    putting   1
## 27629                                                      quest   1
## 27630                                                   question   1
## 27631                                                       read   1
## 27632                                                       real   1
## 27633                                                    realize   1
## 27634                                                     reason   1
## 27635                                                     recall   1
## 27636                                                     refuse   1
## 27637                                                        reg   1
## 27638                                                      reign   1
## 27639                                                   relative   1
## 27640                                                   remember   1
## 27641                                                     remind   1
## 27642                                                    require   1
## 27643                                                       rest   1
## 27644                                                     review   1
## 27645                                                 revolution   1
## 27646                                                      rhode   1
## 27647                                                       roll   1
## 27648                                                        row   1
## 27649                                                      sadly   1
## 27650                                                       safe   1
## 27651                                                      salty   1
## 27652                                                     sample   1
## 27653                                                     samyar   1
## 27654                                               sandwichesso   1
## 27655                                                  sandwichs   1
## 27656                                                    satisfy   1
## 27657                                                   saturday   1
## 27658                                                    section   1
## 27659                                                        see   1
## 27660                                                       seem   1
## 27661                                                  selection   1
## 27662                                                    several   1
## 27663                                                      share   1
## 27664                                                   shootout   1
## 27665                                                      short   1
## 27666                                                   shoutout   1
## 27667                                                      shrug   1
## 27668                                                       side   1
## 27669                                                       sign   1
## 27670                                                     simple   1
## 27671                                                       size   1
## 27672                                                      slide   1
## 27673                                                   slightly   1
## 27674                                                      small   1
## 27675                                                  softfresh   1
## 27676                                                  somewhere   1
## 27677                                                        soo   1
## 27678                                                     sooooo   1
## 27679                                                      sorry   1
## 27680                                                      south   1
## 27681                                                   southern   1
## 27682                                                      split   1
## 27683                                                       stay   1
## 27684                                                  strangely   1
## 27685                                                     street   1
## 27686                                                     strict   1
## 27687                                                     suburb   1
## 27688                                                    suggest   1
## 27689                                                      super   1
## 27690                                                   surprise   1
## 27691                                                   surround   1
## 27692                                                       tell   1
## 27693                                                  temperate   1
## 27694                                                 themwalked   1
## 27695                                                     theres   1
## 27696                                                     theyre   1
## 27697                                                 throwndown   1
## 27698                                                      titan   1
## 27699                                                      today   1
## 27700                                                       tofu   1
## 27701                                                   together   1
## 27702                                                       tony   1
## 27703                                                      topic   1
## 27704                                                    topping   1
## 27705                                                      totem   1
## 27706                                                      tough   1
## 27707                                                   touristy   1
## 27708                                             touristyfamous   1
## 27709                                                       tpur   1
## 27710                                                traditional   1
## 27711                                                      trash   1
## 27712                                                     travel   1
## 27713                                                       trek   1
## 27714                                                      truly   1
## 27715                                                       turf   1
## 27716                                                       turn   1
## 27717                                                      twice   1
## 27718                                                          u   1
## 27719                                                 unfriendly   1
## 27720                                                       upon   1
## 27721                                                     upside   1
## 27722                                                         us   1
## 27723                                                         va   1
## 27724                                                 vertically   1
## 27725                                                     vilify   1
## 27726                                                 vindictive   1
## 27727                                                     waaaay   1
## 27728                                                       walk   1
## 27729                                                       warn   1
## 27730                                                  waspretty   1
## 27731                                                       wawa   1
## 27732                                                        wet   1
## 27733                                                      whats   1
## 27734                                                 whatsoever   1
## 27735                                                     whilst   1
## 27736                                                    whizwit   1
## 27737                                                      whizz   1
## 27738                                                      whole   1
## 27739                                                       wife   1
## 27740                                                      wiith   1
## 27741                                                     window   1
## 27742                                                     within   1
## 27743                                                     wonder   1
## 27744                                                  wonderful   1
## 27745                                                       wont   1
## 27746                                                    wouldnt   1
## 27747                                                 wprovolone   1
## 27748                                                      wwhiz   1
## 27749                                                     yellow   1
## 27750                                                        yes   1
## 27751                                                       youd   1
## 27752                                                       zero   1
## 27753                                                         go   1
## 27754                                                      think   1
## 27755                                                       know   1
## 27756                                                 definitely   1
## 27757                                                      gotta   1
## 27758                                               dissapointed   1
## 27759                                                         go   1
## 27760                                                        try   1
## 27761                                                    politic   1
## 27762                                                     famous   1
## 27763                                                         im   1
## 27764                                                          2   1
## 27765                                                      admit   1
## 27766                                                 admittedly   1
## 27767                                                      aight   1
## 27768                                                    alabama   1
## 27769                                                  allentown   1
## 27770                                                   although   1
## 27771                                                    amongst   1
## 27772                                                     anyone   1
## 27773                                                    anyways   1
## 27774                                                     appear   1
## 27775                                                      arbys   1
## 27776                                                       back   1
## 27777                                                 backtoback   1
## 27778                                                  basically   1
## 27779                                                  beautiful   1
## 27780                                                      begin   1
## 27781                                                     beware   1
## 27782                                                       bite   1
## 27783                                                      bread   1
## 27784                                                   broccoli   1
## 27785                                                      bronx   1
## 27786                                                   brooklyn   1
## 27787                                                        btw   1
## 27788                                                      buddy   1
## 27789                                                 california   1
## 27790                                                       call   1
## 27791                                                       cant   1
## 27792                                                     casual   1
## 27793                                                      catch   1
## 27794                                                  certainly   1
## 27795                                                      cheap   1
## 27796                                               cheeseburger   1
## 27797                                                cheesesteak   1
## 27798                                                      cheez   1
## 27799                                                      close   1
## 27800                                                       come   1
## 27801                                                    compare   1
## 27802                                                    concern   1
## 27803                                                connecticut   1
## 27804                                                   consider   1
## 27805                                                     corpus   1
## 27806                                                       cost   1
## 27807                                                    couldnt   1
## 27808                                                    country   1
## 27809                                                     couple   1
## 27810                                                   coworker   1
## 27811                                                     create   1
## 27812                                                   culinary   1
## 27813                                                   customer   1
## 27814                                                       damn   1
## 27815                                                         dc   1
## 27816                                                       deal   1
## 27817                                                     decade   1
## 27818                                                     decent   1
## 27819                                                decentgreat   1
## 27820                                                    declare   1
## 27821                                                     denver   1
## 27822                                                     deploy   1
## 27823                                                       dice   1
## 27824                                                 difference   1
## 27825                                                      diner   1
## 27826                                                   directly   1
## 27827                                                 dissatisfy   1
## 27828                                                      doubt   1
## 27829                                                 douchebags   1
## 27830                                                   downside   1
## 27831                                                      drive   1
## 27832                                                        egg   1
## 27833                                                 elsewhwere   1
## 27834                                                         en   1
## 27835                                                      enjoy   1
## 27836                                                    episode   1
## 27837                                                      equal   1
## 27838                                                essentially   1
## 27839                                                      every   1
## 27840                                                     expect   1
## 27841                                                 experience   1
## 27842                                                      extra   1
## 27843                                                        far   1
## 27844                                                   favorite   1
## 27845                                                    finally   1
## 27846                                                     flashy   1
## 27847                                                      fresh   1
## 27848                                                   friendly   1
## 27849                                                    garbage   1
## 27850                                                      gotta   1
## 27851                                                      gouge   1
## 27852                                                       grab   1
## 27853                                                 grandchild   1
## 27854                                                grandfather   1
## 27855                                                     greasy   1
## 27856                                                      guess   1
## 27857                                                        guy   1
## 27858                                                       hand   1
## 27859                                                      happy   1
## 27860                                                     havent   1
## 27861                                                       head   1
## 27862                                                    healthy   1
## 27863                                                       help   1
## 27864                                                       high   1
## 27865                                                        hit   1
## 27866                                                       hole   1
## 27867                                                       hour   1
## 27868                                                       huge   1
## 27869                                                       hype   1
## 27870                                                    imagine   1
## 27871                                                     insult   1
## 27872                                                       isnt   1
## 27873                                                       kind   1
## 27874                                                      kinda   1
## 27875                                                      kiosk   1
## 27876                                                     korean   1
## 27877                                                       lack   1
## 27878                                                       last   1
## 27879                                                    liberty   1
## 27880                                                       line   1
## 27881                                                      local   1
## 27882                                                       mall   1
## 27883                                  mannnnnnnmnnnnnnnnnnnnnnn   1
## 27884                                                       many   1
## 27885                                                      maybe   1
## 27886                                                       mean   1
## 27887                                                        meh   1
## 27888                                                    mention   1
## 27889                                                    million   1
## 27890                                                       mini   1
## 27891                                                    minimal   1
## 27892                                                  miniscule   1
## 27893                                                       move   1
## 27894                                                   multiple   1
## 27895                                                     murray   1
## 27896                                                    mustsee   1
## 27897                                                     myopic   1
## 27898                                                     narrow   1
## 27899                                                   national   1
## 27900                                                     nearby   1
## 27901                                                     nearly   1
## 27902                                                      never   1
## 27903                                                       nice   1
## 27904                                                         nj   1
## 27905                                                         no   1
## 27906                                                       nogo   1
## 27907                                                nonetheless   1
## 27908                                                    nonstop   1
## 27909                                                   northern   1
## 27910                                                      notch   1
## 27911                                                    oakland   1
## 27912                                                  oldschool   1
## 27913                                                       open   1
## 27914                                                    opinion   1
## 27915                                                    outside   1
## 27916                                                   phillyit   1
## 27917                                                      pizza   1
## 27918                                                      plain   1
## 27919                                                     plenty   1
## 27920                                                   previous   1
## 27921                                                        pro   1
## 27922                                                       prov   1
## 27923                                                  provolone   1
## 27924                                                        put   1
## 27925                                                    quality   1
## 27926                                                     racist   1
## 27927                                                      ramen   1
## 27928                                                     rating   1
## 27929                                                    realize   1
## 27930                                                     reason   1
## 27931                                                    redding   1
## 27932                                                     redeem   1
## 27933                                                   relative   1
## 27934                                                 restaurant   1
## 27935                                                    rivalry   1
## 27936                                                      roast   1
## 27937                                                    rutgers   1
## 27938                                                       salt   1
## 27939                                                     school   1
## 27940                                                       seem   1
## 27941                                                      serve   1
## 27942                                                      share   1
## 27943                                                      short   1
## 27944                                                    similar   1
## 27945                                                      since   1
## 27946                                                     skimpy   1
## 27947                                                   slightly   1
## 27948                                                      small   1
## 27949                                                       soda   1
## 27950                                                        son   1
## 27951                                                  specialty   1
## 27952                                               specifically   1
## 27953                                                       spin   1
## 27954                                                       star   1
## 27955                                                      state   1
## 27956                                                       stay   1
## 27957                                                      steak   1
## 27958                                                      stink   1
## 27959                                                        sub   1
## 27960                                                     suburb   1
## 27961                                                   suburban   1
## 27962                                                    suggest   1
## 27963                                                  supremely   1
## 27964                                                   surprise   1
## 27965                                                     system   1
## 27966                                                       tell   1
## 27967                                                   terrible   1
## 27968                                                texadelphia   1
## 27969                                                     theres   1
## 27970                                                      thing   1
## 27971                                                     though   1
## 27972                                                    tinfoil   1
## 27973                                                    totally   1
## 27974                                                      tough   1
## 27975                                                    tourist   1
## 27976                                                   touristy   1
## 27977                                                    tripdid   1
## 27978                                                     tritip   1
## 27979                                                      truck   1
## 27980                                                       true   1
## 27981                                                        ugh   1
## 27982                                              unfortunately   1
## 27983                                               unremarkable   1
## 27984                                                unwelcoming   1
## 27985                                                         us   1
## 27986                                                    various   1
## 27987                                                   visually   1
## 27988                                                          w   1
## 27989                                                       wait   1
## 27990                                                       walk   1
## 27991                                                       warm   1
## 27992                                                      water   1
## 27993                                                      wayyy   1
## 27994                                                       weak   1
## 27995                                                    weekend   1
## 27996                                                   whatever   1
## 27997                                                        win   1
## 27998                                                     window   1
## 27999                                                     winner   1
## 28000                                                        wit   1
## 28001                                                     within   1
## 28002                                                       wont   1
## 28003                                                      world   1
## 28004                                                      worth   1
## 28005                                                        yes   1
## 28006                                                      youre   1
## 28007                                                        yum   1
## 28008                                                       less   1
## 28009                                                      genos   1
## 28010                                                       will   1
## 28011                                                       pink   1
## 28012                                                competitive   1
## 28013                                                     philly   1
## 28014                                                       come   1
## 28015                                                      place   1
## 28016                                                       spot   1
## 28017                                                  extremely   1
## 28018                                                      cheez   1
## 28019                                                         go   1
## 28020                                                     philly   1
## 28021                                                   probably   1
## 28022                                                  provolone   1
## 28023                                                   sandwich   1
## 28024                                                      scene   1
## 28025                                                        see   1
## 28026                                                         do   1
## 28027                                                       even   1
## 28028                                                    history   1
## 28029                                                       look   1
## 28030                                                       mean   1
## 28031                                                       okay   1
## 28032                                                     philly   1
## 28033                                                      worth   1
## 28034                                                     cheese   1
## 28035                                                        dig   1
## 28036                                                       also   1
## 28037                                                cheesesteak   1
## 28038                                                 cheesewhiz   1
## 28039                                                       fake   1
## 28040                                                      grill   1
## 28041                                                     really   1
## 28042                                                       good   1
## 28043                                                    provide   1
## 28044                                                        use   1
## 28045                                                       city   1
## 28046                                                   goodness   1
## 28047                                                     oniony   1
## 28048                                                   goodness   1
## 28049                                                        pat   1
## 28050                                                     pepper   1
## 28051                                              compassionate   1
## 28052                                                      eater   1
## 28053                                                        get   1
## 28054                                                    already   1
## 28055                                                   american   1
## 28056                                                     cheese   1
## 28057                                                     couple   1
## 28058                                                      enjoy   1
## 28059                                                 experience   1
## 28060                                                     friend   1
## 28061                                                      genos   1
## 28062                                                      order   1
## 28063                                                        pat   1
## 28064                                                       suck   1
## 28065                                                   terrible   1
## 28066                                                         um   1
## 28067                                                          w   1
## 28068                                                        way   1
## 28069                                                       yelp   1
## 28070                                                         go   1
## 28071                                                     course   1
## 28072                                                 definitely   1
## 28073                                                       home   1
## 28074                                                      local   1
## 28075                                                       look   1
## 28076                                                  delicious   1
## 28077                                                         db   1
## 28078                                                       bite   1
## 28079                                                      bread   1
## 28080                                                       cash   1
## 28081                                                  cheesteak   1
## 28082                                                      didnt   1
## 28083                                                      décor   1
## 28084                                                     enough   1
## 28085                                                  essential   1
## 28086                                                       even   1
## 28087                                                  flavorful   1
## 28088                                                        fry   1
## 28089                                                       good   1
## 28090                                                        guy   1
## 28091                                                         im   1
## 28092                                                        ive   1
## 28093                                                      joint   1
## 28094                                                       like   1
## 28095                                                       meat   1
## 28096                                                      messy   1
## 28097                                                      onion   1
## 28098                                                        pat   1
## 28099                                                    perfect   1
## 28100                                                      salty   1
## 28101                                                      sauce   1
## 28102                                                      taste   1
## 28103                                                       whiz   1
## 28104                                                        wiz   1
## 28105                                                      bread   1
## 28106                                                      grill   1
## 28107                                                      stuff   1
## 28108                                                        wit   1
## 28109                                                        say   1
## 28110                                                      sauce   1
## 28111                                                       real   1
## 28112                                                      steak   1
## 28113                                                       also   1
## 28114                                                      cover   1
## 28115                                                        fan   1
## 28116                                                        pat   1
## 28117                                                     pretty   1
## 28118                                                       wife   1
## 28119                                                        way   1
## 28120                                                     cheese   1
## 28121                                                     unlike   1
## 28122                                                   boyardee   1
## 28123                                                    michael   1
## 28124                                                   sprinkle   1
## 28125                                                        ave   1
## 28126                                                     induce   1
## 28127                                                       coke   1
## 28128                                                     cokemy   1
## 28129                                                     philly   1
## 28130                                                       soda   1
## 28131                                                     tomato   1
## 28132                                                      steak   1
## 28133                                                        use   1
## 28134                                                    closely   1
## 28135                                                        wiz   1
## 28136                                                       even   1
## 28137                                                      onion   1
## 28138                                                      waste   1
## 28139                                                     little   1
## 28140                                                         pa   1
## 28141                                                     glossy   1
## 28142                                                      metal   1
## 28143                                                    reserve   1
## 28144                                                     street   1
## 28145                                                debatewhich   1
## 28146                                                     impala   1
## 28147                                                       nova   1
## 28148                                                 underneath   1
## 28149                                                        add   1
## 28150                                                     almost   1
## 28151                                                       also   1
## 28152                                                       come   1
## 28153                                                    couldve   1
## 28154                                                       darn   1
## 28155                                                     decent   1
## 28156                                                    despite   1
## 28157                                                        fan   1
## 28158                                                    forever   1
## 28159                                                        god   1
## 28160                                                    grizzle   1
## 28161                                                       hard   1
## 28162                                                        hot   1
## 28163                                                         im   1
## 28164                                                       much   1
## 28165                                                      onion   1
## 28166                                                    overall   1
## 28167                                                      place   1
## 28168                                                   sandwich   1
## 28169                                                      since   1
## 28170                                                       spin   1
## 28171                                                      steak   1
## 28172                                                      think   1
## 28173                                                        toy   1
## 28174                                                       feel   1
## 28175                                                        pat   1
## 28176                                                     please   1
## 28177                                                         go   1
## 28178                                                        way   1
## 28179                                                          2   1
## 28180                                                        act   1
## 28181                                                        add   1
## 28182                                                        aka   1
## 28183                                                       also   1
## 28184                                                   although   1
## 28185                                                    another   1
## 28186                                                      awful   1
## 28187                                                       beef   1
## 28188                                                        bun   1
## 28189                                                      cheap   1
## 28190                                                       cold   1
## 28191                                                    compare   1
## 28192                                                   customer   1
## 28193                                                     decent   1
## 28194                                                  delicious   1
## 28195                                                    despite   1
## 28196                                                        dry   1
## 28197                                                     enough   1
## 28198                                                    exactly   1
## 28199                                                       fast   1
## 28200                                                        fat   1
## 28201                                                     flavor   1
## 28202                                                 flavorless   1
## 28203                                                   goodness   1
## 28204                                                     greasy   1
## 28205                                                      hardi   1
## 28206                                                      hence   1
## 28207                                                     hoagie   1
## 28208                                                       hold   1
## 28209                                                     honest   1
## 28210                                                    however   1
## 28211                                                         ie   1
## 28212                                                        jaw   1
## 28213                                                       just   1
## 28214                                                       kind   1
## 28215                                                       luke   1
## 28216                                                       make   1
## 28217                                                     medium   1
## 28218                                                       must   1
## 28219                                               nevertheless   1
## 28220                                                       okay   1
## 28221                                                        old   1
## 28222                                                    overall   1
## 28223                                                       pick   1
## 28224                                                      point   1
## 28225                                                     pretty   1
## 28226                                                      price   1
## 28227                                                    rubbery   1
## 28228                                                       salt   1
## 28229                                                   sandwich   1
## 28230                                                        say   1
## 28231                                                       side   1
## 28232                                                      sidei   1
## 28233                                                       sign   1
## 28234                                                     sinuey   1
## 28235                                                      slice   1
## 28236                                                   slightly   1
## 28237                                                       soft   1
## 28238                                                  sourdough   1
## 28239                                                      steam   1
## 28240                                                     stingy   1
## 28241                                                    stringy   1
## 28242                                                       take   1
## 28243                                                     though   1
## 28244                                                      usual   1
## 28245                                                        way   1
## 28246                                                      whole   1
## 28247                                                       will   1
## 28248                                                        wiz   1
## 28249                                                 swallowthe   1
## 28250                                                       town   1
## 28251                                                       beef   1
## 28252                                                       come   1
## 28253                                                    delight   1
## 28254                                                 disappoint   1
## 28255                                                     excite   1
## 28256                                                     figure   1
## 28257                                                       find   1
## 28258                                                    instead   1
## 28259                                                       isnt   1
## 28260                                                    italian   1
## 28261                                                        ive   1
## 28262                                                       make   1
## 28263                                                      minus   1
## 28264                                                        pat   1
## 28265                                                    presume   1
## 28266                                                      sorry   1
## 28267                                                       time   1
## 28268                                                        try   1
## 28269                                                    nothing   1
## 28270                                                      visit   1
## 28271                                                    average   1
## 28272                                                      pizza   1
## 28273                                                         pa   1
## 28274                                                       bear   1
## 28275                                                       make   1
## 28276                                                     cheese   1
## 28277                                                       crap   1
## 28278                                                  different   1
## 28279                                                        egg   1
## 28280                                                       fish   1
## 28281                                                      nasty   1
## 28282                                                     nugget   1
## 28283                                                     pretty   1
## 28284                                                      sauce   1
## 28285                                                      shack   1
## 28286                                                       spot   1
## 28287                                                     stench   1
## 28288                                                     turkey   1
## 28289                                                      petes   1
## 28290                                                       fall   1
## 28291                                                         im   1
## 28292                                                       ever   1
## 28293                                                       feel   1
## 28294                                                      front   1
## 28295                                                   molester   1
## 28296                                                     please   1
## 28297                                                     really   1
## 28298                                                      still   1
## 28299                                                      house   1
## 28300                                                       walk   1
## 28301                                                     please   1
## 28302                                                       bowl   1
## 28303                                                 halfsmokes   1
## 28304                                                        oil   1
## 28305                                                      enjoy   1
## 28306                                                     racist   1
## 28307                                                       bowl   1
## 28308                                                     friday   1
## 28309                                                      quick   1
## 28310                                                  wednesday   1
## 28311                                                     winter   1
## 28312                                                    instead   1
## 28313                                                    besides   1
## 28314                                                        etc   1
## 28315                                                       look   1
## 28316                                                         ny   1
## 28317                                                        pat   1
## 28318                                                     buffet   1
## 28319                                                      carry   1
## 28320                                                    chicken   1
## 28321                                                       feel   1
## 28322                                                   mandarin   1
## 28323                                                       papi   1
## 28324                                                 restaurant   1
## 28325                                                       take   1
## 28326                                                       sign   1
## 28327                                               delassandros   1
## 28328                                                       good   1
## 28329                                                       hell   1
## 28330                                                  northeast   1
## 28331                                                        now   1
## 28332                                                       real   1
## 28333                                                      shady   1
## 28334                                                      taste   1
## 28335                                                       good   1
## 28336                                                  provolone   1
## 28337                                                       beef   1
## 28338                                                       meat   1
## 28339                                                      nerve   1
## 28340                                                        pan   1
## 28341                                                       real   1
## 28342                                                     street   1
## 28343                                                      thing   1
## 28344                                                      tooth   1
## 28345                                                    cashier   1
## 28346                                                         rd   1
## 28347                                                        bag   1
## 28348                                                      cover   1
## 28349                                                       milk   1
## 28350                                                       shop   1
## 28351                                                      small   1
## 28352                                                      taste   1
## 28353                                                       turn   1
## 28354                                                    vanilla   1
## 28355                                                   although   1
## 28356                                                        bad   1
## 28357                                                      chain   1
## 28358                                                cheesesteak   1
## 28359                                                      cheez   1
## 28360                                                     choice   1
## 28361                                                      close   1
## 28362                                                     course   1
## 28363                                                       easy   1
## 28364                                                    english   1
## 28365                                                      enjoy   1
## 28366                                                        fry   1
## 28367                                                       geno   1
## 28368                                                        hot   1
## 28369                                                        ill   1
## 28370                                                        jim   1
## 28371                                                       jims   1
## 28372                                                       like   1
## 28373                                                     little   1
## 28374                                                       make   1
## 28375                                                       meat   1
## 28376                                                    mention   1
## 28377                                                       next   1
## 28378                                                        one   1
## 28379                                                       open   1
## 28380                                                       pick   1
## 28381                                                     prefer   1
## 28382                                                  provolone   1
## 28383                                                 restaurant   1
## 28384                                                       save   1
## 28385                                                        say   1
## 28386                                                       stay   1
## 28387                                                     theory   1
## 28388                                                      think   1
## 28389                                                      three   1
## 28390                                                      tipsy   1
## 28391                                                      watch   1
## 28392                                                       whiz   1
## 28393                                                  everytime   1
## 28394                                                     greasy   1
## 28395                                                    gristle   1
## 28396                                                       half   1
## 28397                                                   mediocre   1
## 28398                                                    shoulda   1
## 28399                                                       spin   1
## 28400                                                      thing   1
## 28401                                                      blood   1
## 28402                                                        fix   1
## 28403                                                      level   1
## 28404                                                  skyrocket   1
## 28405                                                      think   1
## 28406                                                   complete   1
## 28407                                                        add   1
## 28408                                                       away   1
## 28409                                                     greasy   1
## 28410                                                        add   1
## 28411                                                   alliance   1
## 28412                                                    another   1
## 28413                                                   anywhere   1
## 28414                                                     cheese   1
## 28415                                             cheeseamerican   1
## 28416                                                       clap   1
## 28417                                                       cost   1
## 28418                                                 definitely   1
## 28419                                                     either   1
## 28420                                                       else   1
## 28421                                              establishment   1
## 28422                                                      first   1
## 28423                                                        fry   1
## 28424                                                 genosgenos   1
## 28425                                                        guy   1
## 28426                                                       hard   1
## 28427                                                   honestly   1
## 28428                                                        ill   1
## 28429                                                       itll   1
## 28430                                                       jims   1
## 28431                                                       like   1
## 28432                                                       line   1
## 28433                                                        max   1
## 28434                                                   paesanos   1
## 28435                                                       post   1
## 28436                                                       pray   1
## 28437                                                  provolone   1
## 28438                                                      serve   1
## 28439                                                      short   1
## 28440                                                       show   1
## 28441                                                       side   1
## 28442                                                      spend   1
## 28443                                                       stop   1
## 28444                                                    support   1
## 28445                                                       type   1
## 28446                                                        win   1
## 28447                                                     wisely   1
## 28448                                                      wrong   1
## 28449                                                       meat   1
## 28450                                                       able   1
## 28451                                                 absolutely   1
## 28452                                                   american   1
## 28453                                                     anyway   1
## 28454                                                        ask   1
## 28455                                                        big   1
## 28456                                                      bland   1
## 28457                                                      bread   1
## 28458                                                      cause   1
## 28459                                                cheesesteak   1
## 28460                                                       coke   1
## 28461                                                  condiment   1
## 28462                                                       cook   1
## 28463                                                     create   1
## 28464                                                     decent   1
## 28465                                                deliciously   1
## 28466                                                         do   1
## 28467                                                     doesnt   1
## 28468                                                      extra   1
## 28469                                                        fat   1
## 28470                                                       find   1
## 28471                                                     finely   1
## 28472                                                      first   1
## 28473                                                     flavor   1
## 28474                                                 flavorless   1
## 28475                                                        get   1
## 28476                                                         go   1
## 28477                                                      gross   1
## 28478                                                       hate   1
## 28479                                                       head   1
## 28480                                                       hear   1
## 28481                                                        ill   1
## 28482                                                         im   1
## 28483                                                    instead   1
## 28484                                                      juicy   1
## 28485                                                       just   1
## 28486                                                       keep   1
## 28487                                                       know   1
## 28488                                                       lack   1
## 28489                                                       load   1
## 28490                                                        may   1
## 28491                                                       mean   1
## 28492                                                     method   1
## 28493                                                    million   1
## 28494                                                       mock   1
## 28495                                                       much   1
## 28496                                                  naturally   1
## 28497                                                   nonsense   1
## 28498                                                      offer   1
## 28499                                                    opinion   1
## 28500                                                        pat   1
## 28501                                                   personal   1
## 28502                                                     philly   1
## 28503                                                 preference   1
## 28504                                                       prep   1
## 28505                                                preparation   1
## 28506                                                     really   1
## 28507                                                     remind   1
## 28508                                                   sandwich   1
## 28509                                                      saute   1
## 28510                                                    service   1
## 28511                                                      shred   1
## 28512                                                       size   1
## 28513                                                      small   1
## 28514                                                     sooooo   1
## 28515                                                       spin   1
## 28516                                                       star   1
## 28517                                                    steakso   1
## 28518                                                      still   1
## 28519                                                      taste   1
## 28520                                                    texture   1
## 28521                                                       thin   1
## 28522                                                     thinly   1
## 28523                                                     though   1
## 28524                                            thoughstrangeit   1
## 28525                                                        try   1
## 28526                                                  unusually   1
## 28527                                                        use   1
## 28528                                                    version   1
## 28529                                                       want   1
## 28530                                                      wasnt   1
## 28531                                                     wellit   1
## 28532                                                       will   1
## 28533                                                        wiz   1
## 28534                                                     wizwit   1
## 28535                                                    wouldnt   1
## 28536                                                       zero   1
## 28537                                                       wont   1
## 28538                                                       cook   1
## 28539                                               surprisingly   1
## 28540                                                       numb   1
## 28541                                                        say   1
## 28542                                                     second   1
## 28543                                                       sake   1
## 28544                                                     cheese   1
## 28545                                                      texas   1
## 28546                                                        pay   1
## 28547                                                        fun   1
## 28548                                                       good   1
## 28549                                                      party   1
## 28550                                                     season   1
## 28551                                               thanksgiving   1
## 28552                                                        rim   1
## 28553                                                       deli   1
## 28554                                                    checker   1
## 28555                                               delassandros   1
## 28556                                                      steak   1
## 28557                                                     norris   1
## 28558                                                      steak   1
## 28559                                                       darn   1
## 28560                                                        day   1
## 28561                                                      order   1
## 28562                                                          2   1
## 28563                                                     finely   1
## 28564                                                    grizzle   1
## 28565                                                    instead   1
## 28566                                                      maybe   1
## 28567                                                       meat   1
## 28568                                                     really   1
## 28569                                                  something   1
## 28570                                                      stale   1
## 28571                                                      thank   1
## 28572                                                undercooked   1
## 28573                                                       will   1
## 28574                                                        wiz   1
## 28575                                                     hearty   1
## 28576                                                       like   1
## 28577                                                       meat   1
## 28578                                                      onion   1
## 28579                                                      style   1
## 28580                                                      thats   1
## 28581                                                      allow   1
## 28582                                                      block   1
## 28583                                                  something   1
## 28584                                               cheesesteaks   1
## 28585                                                       hate   1
## 28586                                                    service   1
## 28587                                                        chz   1
## 28588                                                       whiz   1
## 28589                                                     fluffy   1
## 28590                                                         go   1
## 28591                                                     people   1
## 28592                                                      drain   1
## 28593                                                        way   1
## 28594                                                      order   1
## 28595                                                        see   1
## 28596                                                     carnie   1
## 28597                                                      light   1
## 28598                                                       show   1
## 28599                                                       junk   1
## 28600                                                       bank   1
## 28601                                                         go   1
## 28602                                                    however   1
## 28603                                                       keep   1
## 28604                                                       next   1
## 28605                                                    rampart   1
## 28606                                                       alot   1
## 28607                                                       also   1
## 28608                                                     always   1
## 28609                                                 apparently   1
## 28610                                                      april   1
## 28611                                                       area   1
## 28612                                                        ask   1
## 28613                                                       back   1
## 28614                                                    besides   1
## 28615                                                  blasphemy   1
## 28616                                                    brusque   1
## 28617                                                       cash   1
## 28618                                                     center   1
## 28619                                                  certainly   1
## 28620                                                     cheese   1
## 28621                                               cheesesteaks   1
## 28622                                                       cost   1
## 28623                                                      crazy   1
## 28624                                                        cut   1
## 28625                                                 definitely   1
## 28626                                                  difficult   1
## 28627                                                   director   1
## 28628                                               dissapointed   1
## 28629                                                       draw   1
## 28630                                                      drive   1
## 28631                                                      dunno   1
## 28632                                                 especially   1
## 28633                                                       even   1
## 28634                                                     expect   1
## 28635                                                     famous   1
## 28636                                                       feel   1
## 28637                                                    finally   1
## 28638                                                       find   1
## 28639                                                       fine   1
## 28640                                                      first   1
## 28641                                                       folk   1
## 28642                                                   folksbut   1
## 28643                                                   genieboy   1
## 28644                                                       grab   1
## 28645                                                       hall   1
## 28646                                                       hear   1
## 28647                                                      heres   1
## 28648                                                        hot   1
## 28649                                                       huge   1
## 28650                                                         im   1
## 28651                                                        ive   1
## 28652                                                     jersey   1
## 28653                                                       jims   1
## 28654                                                        joe   1
## 28655                                                      johns   1
## 28656                                                       just   1
## 28657                                                       kind   1
## 28658                                                       lack   1
## 28659                                                   landmark   1
## 28660                                                      large   1
## 28661                                                      leave   1
## 28662                                                  legendary   1
## 28663                                                       less   1
## 28664                                                        let   1
## 28665                                                       like   1
## 28666                                                       line   1
## 28667                                                       list   1
## 28668                                                   location   1
## 28669                                                       look   1
## 28670                                                        lot   1
## 28671                                                       make   1
## 28672                                                       many   1
## 28673                                                     matter   1
## 28674                                                        may   1
## 28675                                                     middle   1
## 28676                                                       much   1
## 28677                                                     nature   1
## 28678                                                       near   1
## 28679                                                     nearby   1
## 28680                                                       need   1
## 28681                                                      never   1
## 28682                                                         nj   1
## 28683                                                       none   1
## 28684                                                    nothing   1
## 28685                                                        now   1
## 28686                                                   numerous   1
## 28687                                                      order   1
## 28688                                                       past   1
## 28689                                                        pat   1
## 28690                                                     people   1
## 28691                                                         ps   1
## 28692                                                    quality   1
## 28693                                                       rave   1
## 28694                                                     reason   1
## 28695                                                    respect   1
## 28696                                                     return   1
## 28697                                                      roach   1
## 28698                                                       road   1
## 28699                                                        say   1
## 28700                                                  seriously   1
## 28701                                                   sidewalk   1
## 28702                                                    signage   1
## 28703                                                       skip   1
## 28704                                                    somehow   1
## 28705                                                      still   1
## 28706                                                     street   1
## 28707                                                      strip   1
## 28708                                                    succumb   1
## 28709                                                   surround   1
## 28710                                                      tampa   1
## 28711                                                      think   1
## 28712                                                     though   1
## 28713                                                      three   1
## 28714                                                        try   1
## 28715                                                     unless   1
## 28716                                                        usa   1
## 28717                                                        veg   1
## 28718                                                       view   1
## 28719                                                      visit   1
## 28720                                                 washington   1
## 28721                                                      wasnt   1
## 28722                                                      whole   1
## 28723                                                       will   1
## 28724                                                       work   1
## 28725                                                      youre   1
## 28726                                                      steak   1
## 28727                                                        fat   1
## 28728                                                      genos   1
## 28729                                             highestprofile   1
## 28730                                                  signature   1
## 28731                                                      never   1
## 28732                                                      stick   1
## 28733                                                         sí   1
## 28734                                                      right   1
## 28735                                                      three   1
## 28736                                                    servant   1
## 28737                                                    service   1
## 28738                                                  reference   1
## 28739                                                      avoid   1
## 28740                                                    certain   1
## 28741                                                     cheese   1
## 28742                                                cheesesteak   1
## 28743                                                      crown   1
## 28744                                                  delicious   1
## 28745                                                     forget   1
## 28746                                                  greatness   1
## 28747                                                    history   1
## 28748                                                       just   1
## 28749                                                       like   1
## 28750                                                        one   1
## 28751                                                   original   1
## 28752                                                      other   1
## 28753                                                 patriotism   1
## 28754                                                    problem   1
## 28755                                                      serve   1
## 28756                                                    support   1
## 28757                                                     travel   1
## 28758                                                       true   1
## 28759                                                     unique   1
## 28760                                                        use   1
## 28761                                                       work   1
## 28762                                                         go   1
## 28763                                                         mr   1
## 28764                                                    genital   1
## 28765                                                        ive   1
## 28766                                                    ketchup   1
## 28767                                                        ask   1
## 28768                                                    decorum   1
## 28769                                                 historical   1
## 28770                                                       penn   1
## 28771                                                     philly   1
## 28772                                                       seek   1
## 28773                                                      start   1
## 28774                                                      thank   1
## 28775                                                      thats   1
## 28776                                                   american   1
## 28777                                                    anyways   1
## 28778                                                        can   1
## 28779                                                     course   1
## 28780                                                 definitely   1
## 28781                                              establishment   1
## 28782                                                  fantastic   1
## 28783                                                    fashion   1
## 28784                                                       feel   1
## 28785                                                       food   1
## 28786                                                      genos   1
## 28787                                                         go   1
## 28788                                                      gotta   1
## 28789                                                    italian   1
## 28790                                                      joint   1
## 28791                                                       less   1
## 28792                                                       like   1
## 28793                                                       make   1
## 28794                                                      onion   1
## 28795                                                      order   1
## 28796                                                      place   1
## 28797                                                 restaurant   1
## 28798                                                      route   1
## 28799                                                   sandwich   1
## 28800                                                      speak   1
## 28801                                                    topping   1
## 28802                                                      venue   1
## 28803                                                       year   1
## 28804                                                cheesesteak   1
## 28805                                                         ft   1
## 28806                                                        try   1
## 28807                                                   atlantic   1
## 28808                                                        eat   1
## 28809                                                      genos   1
## 28810                                                      joint   1
## 28811                                                        pat   1
## 28812                                                      place   1
## 28813                                                      thank   1
## 28814                                                     across   1
## 28815                                                       alot   1
## 28816                                                   bathroom   1
## 28817                                                        big   1
## 28818                                                       care   1
## 28819                                                       cash   1
## 28820                                                     cheese   1
## 28821                                                       city   1
## 28822                                                cleanliness   1
## 28823                                                 competitor   1
## 28824                                                  condiment   1
## 28825                                                       deal   1
## 28826                                                demographic   1
## 28827                                                       easy   1
## 28828                                                        eat   1
## 28829                                                  efficient   1
## 28830                                                     expect   1
## 28831                                                      genos   1
## 28832                                                       give   1
## 28833                                                      glitz   1
## 28834                                                      grill   1
## 28835                                                       hand   1
## 28836                                                      happy   1
## 28837                                                 ingredient   1
## 28838                                                     invite   1
## 28839                                                       keep   1
## 28840                                                     little   1
## 28841                                                       make   1
## 28842                                                      merch   1
## 28843                                                        now   1
## 28844                                                        one   1
## 28845                                                    orderly   1
## 28846                                                      photo   1
## 28847                                                     plenty   1
## 28848                                                        put   1
## 28849                                                      ready   1
## 28850                                                       real   1
## 28851                                                     really   1
## 28852                                                   remember   1
## 28853                                                     rodent   1
## 28854                                                   sandwich   1
## 28855                                                   sanitary   1
## 28856                                                      slice   1
## 28857                                                      smell   1
## 28858                                                      sorry   1
## 28859                                                       sort   1
## 28860                                                      state   1
## 28861                                                      steak   1
## 28862                                                      still   1
## 28863                                                       sure   1
## 28864                                                      tasty   1
## 28865                                                     theyve   1
## 28866                                                       tidy   1
## 28867                                            touristfriendly   1
## 28868                                                      trash   1
## 28869                                                     unlike   1
## 28870                                                        use   1
## 28871                                                      vento   1
## 28872                                                     window   1
## 28873                                                       type   1
## 28874                                                  equipment   1
## 28875                                               friendliness   1
## 28876                                                      genos   1
## 28877                                                     inside   1
## 28878                                                       meat   1
## 28879                                                      price   1
## 28880                                                    stellar   1
## 28881                                                      wasnt   1
## 28882                                                     worker   1
## 28883                                                        can   1
## 28884                                                       cash   1
## 28885                                                     cheese   1
## 28886                                                cheesesteak   1
## 28887                                                     choice   1
## 28888                                                   contempt   1
## 28889                                                      didnt   1
## 28890                                                 difference   1
## 28891                                                 dishonesty   1
## 28892                                                         do   1
## 28893                                                     edible   1
## 28894                                                        far   1
## 28895                                                      genos   1
## 28896                                                       goal   1
## 28897                                                       good   1
## 28898                                                    however   1
## 28899                                                      loser   1
## 28900                                                       mess   1
## 28901                                              misunderstand   1
## 28902                                                       name   1
## 28903                                                necessarily   1
## 28904                                                      never   1
## 28905                                                        pat   1
## 28906                                                     philly   1
## 28907                                                     plenty   1
## 28908                                                       save   1
## 28909                                                      serve   1
## 28910                                                     simply   1
## 28911                                                      stand   1
## 28912                                                       want   1
## 28913                                                      white   1
## 28914                                                      whole   1
## 28915                                                       wipe   1
## 28916                                                      youre   1
## 28917                                                        bad   1
## 28918                                                        can   1
## 28919                                                  caucasian   1
## 28920                                                  cheesteak   1
## 28921                                                   everyone   1
## 28922                                                      favor   1
## 28923                                                       find   1
## 28924                                                     flashy   1
## 28925                                                   friendly   1
## 28926                                                       good   1
## 28927                                                 intimidate   1
## 28928                                                     invite   1
## 28929                                                       just   1
## 28930                                                      large   1
## 28931                                                       make   1
## 28932                                                   overrate   1
## 28933                                                     people   1
## 28934                                                    popular   1
## 28935                                                      print   1
## 28936                                                      right   1
## 28937                                                      screw   1
## 28938                                                  something   1
## 28939                                                       sort   1
## 28940                                                      state   1
## 28941                                                    support   1
## 28942                                                 understand   1
## 28943                                                        use   1
## 28944                                                    visible   1
## 28945                                                        win   1
## 28946                                                      genos   1
## 28947                                                        joe   1
## 28948                                                rittenhouse   1
## 28949                                                   sandwich   1
## 28950                                                        top   1
## 28951                                                       want   1
## 28952                                                       fist   1
## 28953                                                     window   1
## 28954                                                     worker   1
## 28955                                                      miami   1
## 28956                                                       ohio   1
## 28957                                                       meet   1
## 28958                                                       sure   1
## 28959                                                cheesesteak   1
## 28960                                                        say   1
## 28961                                                         do   1
## 28962                                                      genos   1
## 28963                                                   mediocre   1
## 28964                                                        can   1
## 28965                                                        day   1
## 28966                                                      genos   1
## 28967                                                   maintain   1
## 28968                                                         im   1
## 28969                                                      first   1
## 28970                                                       also   1
## 28971                                                 experience   1
## 28972                                                       feel   1
## 28973                                                       food   1
## 28974                                                    tourist   1
## 28975                                                        way   1
## 28976                                                       mean   1
## 28977                                                      lysol   1
## 28978                                                     action   1
## 28979                                                      admit   1
## 28980                                                       also   1
## 28981                                                alternative   1
## 28982                                                   american   1
## 28983                                                     amount   1
## 28984                                                        atm   1
## 28985                                                  attention   1
## 28986                                                     become   1
## 28987                                                       beef   1
## 28988                                                       buck   1
## 28989                                                    cashier   1
## 28990                                                     center   1
## 28991                                                     cheese   1
## 28992                                                cheesesteak   1
## 28993                                             cleanestnewest   1
## 28994                                                      close   1
## 28995                                                   customer   1
## 28996                                                      didnt   1
## 28997                                                         do   1
## 28998                                                       door   1
## 28999                                                   downtown   1
## 29000                                                        eat   1
## 29001                                                 especially   1
## 29002                                                     expect   1
## 29003                                                expectation   1
## 29004                                                        eye   1
## 29005                                                      favor   1
## 29006                                                     freeze   1
## 29007                                                     friend   1
## 29008                                                         go   1
## 29009                                                      great   1
## 29010                                                      group   1
## 29011                                                      guess   1
## 29012                                                       haha   1
## 29013                                                       home   1
## 29014                                                   honestly   1
## 29015                                                       hype   1
## 29016                                                         im   1
## 29017                                                    italian   1
## 29018                                                        ive   1
## 29019                                                       just   1
## 29020                                                       king   1
## 29021                                                      ladle   1
## 29022                                                       live   1
## 29023                                                      local   1
## 29024                                                   majority   1
## 29025                                                       make   1
## 29026                                                     minute   1
## 29027                                                     monday   1
## 29028                                                         nd   1
## 29029                                                 needlessly   1
## 29030                                                   neighbor   1
## 29031                                                    nothing   1
## 29032                                                        now   1
## 29033                                                        one   1
## 29034                                                   opposite   1
## 29035                                                          p   1
## 29036                                                     people   1
## 29037                                                        pro   1
## 29038                                                       race   1
## 29039                                                        say   1
## 29040                                                       side   1
## 29041                                                      small   1
## 29042                                                      sorry   1
## 29043                                                    stadium   1
## 29044                                                       star   1
## 29045                                                      steak   1
## 29046                                                        sun   1
## 29047                                                       take   1
## 29048                                                         th   1
## 29049                                                      thing   1
## 29050                                                     though   1
## 29051                                                   together   1
## 29052                                                        two   1
## 29053                                                         us   1
## 29054                                                     valley   1
## 29055                                                      value   1
## 29056                                                      visit   1
## 29057                                                 windowyour   1
## 29058                                                       yelp   1
## 29059                                                        may   1
## 29060                                                     relate   1
## 29061                                                   possibly   1
## 29062                                                       full   1
## 29063                                                        ask   1
## 29064                                                    overall   1
## 29065                                                        see   1
## 29066                                                   teenager   1
## 29067                                                      bread   1
## 29068                                                      fatty   1
## 29069                                                        day   1
## 29070                                                    weekend   1
## 29071                                                       joey   1
## 29072                                                       make   1
## 29073                                                       name   1
## 29074                                                       show   1
## 29075                                                        bar   1
## 29076                                                cheesesteak   1
## 29077                                                         do   1
## 29078                                                      drink   1
## 29079                                                        eat   1
## 29080                                                 everything   1
## 29081                                                       good   1
## 29082                                                  nightthis   1
## 29083                                                    several   1
## 29084                                                      short   1
## 29085                                                   slightly   1
## 29086                                                    website   1
## 29087                                                       will   1
## 29088                                                     length   1
## 29089                                                       line   1
## 29090                                                      order   1
## 29091                                                     people   1
## 29092                                                      right   1
## 29093                                                       city   1
## 29094                                                 everything   1
## 29095                                                     people   1
## 29096                                                    husband   1
## 29097                                                      litle   1
## 29098                                                      slice   1
## 29099                                                       just   1
## 29100                                                    liquidy   1
## 29101                                                      close   1
## 29102                                                    tourist   1
## 29103                                                     almost   1
## 29104                                                       mess   1
## 29105                                                   sanguche   1
## 29106                                                       cant   1
## 29107                                                       feel   1
## 29108                                                        guy   1
## 29109                                                     hungry   1
## 29110                                                       must   1
## 29111                                                     philly   1
## 29112                                                     please   1
## 29113                                                      steak   1
## 29114                                                    suppose   1
## 29115                                                 girlfriend   1
## 29116                                                       good   1
## 29117                                                       good   1
## 29118                                                  americana   1
## 29119                                                     annual   1
## 29120                                                       area   1
## 29121                                                   baseball   1
## 29122                                                 california   1
## 29123                                                      charm   1
## 29124                                                       city   1
## 29125                                                     course   1
## 29126                                                  curiosity   1
## 29127                                                     decide   1
## 29128                                                     family   1
## 29129                                                      first   1
## 29130                                                    general   1
## 29131                                                       give   1
## 29132                                                        guy   1
## 29133                                                       just   1
## 29134                                                       last   1
## 29135                                                       loud   1
## 29136                                                       name   1
## 29137                                                      never   1
## 29138                                                        now   1
## 29139                                                   recently   1
## 29140                                                    weekend   1
## 29141                                                    concert   1
## 29142                                                      reply   1
## 29143                                                       rude   1
## 29144                                                      genos   1
## 29145                                                     cheese   1
## 29146                                                      cheez   1
## 29147                                                       cold   1
## 29148                                                     grease   1
## 29149                                                      leave   1
## 29150                                                   customer   1
## 29151                                                       past   1
## 29152                                                       know   1
## 29153                                                phladelphia   1
## 29154                                                      genos   1
## 29155                                                         go   1
## 29156                                                      right   1
## 29157                                                       rude   1
## 29158                                                        sht   1
## 29159                                                     worker   1
## 29160                                                    tourist   1
## 29161                                                          p   1
## 29162                                                       cent   1
## 29163                                                      donut   1
## 29164                                                        eat   1
## 29165                                                       even   1
## 29166                                                     ground   1
## 29167                                                       joke   1
## 29168                                                     really   1
## 29169                                                      shoot   1
## 29170                                                       spot   1
## 29171                                                    suffice   1
## 29172                                                 sweatpants   1
## 29173                                                     change   1
## 29174                                                         do   1
## 29175                                                        get   1
## 29176                                                      order   1
## 29177                                                       toss   1
## 29178                                                       soon   1
## 29179                                                     cheese   1
## 29180                                                cheesesteak   1
## 29181                                                        ice   1
## 29182                                                   lifetime   1
## 29183                                                    nothing   1
## 29184                                                    perfect   1
## 29185                                                    pioneer   1
## 29186                                                    plusbut   1
## 29187                                                     ripoff   1
## 29188                                                  saidafter   1
## 29189                                                      sight   1
## 29190                                                      steam   1
## 29191                                                       tell   1
## 29192                                                 impression   1
## 29193                                                     debate   1
## 29194                                                      super   1
## 29195                                                     almost   1
## 29196                                                    already   1
## 29197                                                       also   1
## 29198                                                   american   1
## 29199                                                    another   1
## 29200                                                        ask   1
## 29201                                                       base   1
## 29202                                                       beer   1
## 29203                                                      bland   1
## 29204                                                        bun   1
## 29205                                                       cali   1
## 29206                                                       cash   1
## 29207                                               cheesesteaks   1
## 29208                                                    congeal   1
## 29209                                                        cow   1
## 29210                                                        cup   1
## 29211                                                   december   1
## 29212                                                     decide   1
## 29213                                                 definitely   1
## 29214                                                     devour   1
## 29215                                                    drunken   1
## 29216                                                       even   1
## 29217                                                      every   1
## 29218                                                     expect   1
## 29219                                                       fast   1
## 29220                                                      fault   1
## 29221                                                       find   1
## 29222                                                        fit   1
## 29223                                                      genos   1
## 29224                                                        get   1
## 29225                                                       hard   1
## 29226                                                      heart   1
## 29227                                                       hope   1
## 29228                                                     indoor   1
## 29229                                                       joke   1
## 29230                                                       lady   1
## 29231                                                       less   1
## 29232                                                       like   1
## 29233                                                       limp   1
## 29234                                                     little   1
## 29235                                                       long   1
## 29236                                                       look   1
## 29237                                                       loss   1
## 29238                                                       melt   1
## 29239                                                     minute   1
## 29240                                                      month   1
## 29241                                                       much   1
## 29242                                                       need   1
## 29243                                                      never   1
## 29244                                                      order   1
## 29245                                                    outdoor   1
## 29246                                                     picnic   1
## 29247                                                      piece   1
## 29248                                                      plain   1
## 29249                                                  provolone   1
## 29250                                                      ready   1
## 29251                                                       real   1
## 29252                                                     really   1
## 29253                                                      roast   1
## 29254                                                   saturday   1
## 29255                                                       seem   1
## 29256                                                      setup   1
## 29257                                                       size   1
## 29258                                                       slap   1
## 29259                                                      soggy   1
## 29260                                                       spin   1
## 29261                                                      steam   1
## 29262                                                      stiff   1
## 29263                                                      stuff   1
## 29264                                                       sure   1
## 29265                                                      taste   1
## 29266                                                  therefore   1
## 29267                                                     theres   1
## 29268                                                      think   1
## 29269                                                     though   1
## 29270                                                      truly   1
## 29271                                                        try   1
## 29272                                                   uncooked   1
## 29273                                                       wait   1
## 29274                                                      wasnt   1
## 29275                                                      waste   1
## 29276                                                       will   1
## 29277                                                       wind   1
## 29278                                                     winter   1
## 29279                                                      worth   1
## 29280                                                    wouldnt   1
## 29281                                                        yet   1
## 29282                                                   ruthless   1
## 29283                                                     expect   1
## 29284                                                       whiz   1
## 29285                                                        gun   1
## 29286                                                 underneath   1
## 29287                                                allamerican   1
## 29288                                                   american   1
## 29289                                                      world   1
## 29290                                                      genos   1
## 29291                                                        get   1
## 29292                                                      order   1
## 29293                                                       stop   1
## 29294                                                     bottom   1
## 29295                                                        end   1
## 29296                                             lawenforcement   1
## 29297                                                     police   1
## 29298                                                        day   1
## 29299                                                       dine   1
## 29300                                                        kid   1
## 29301                                                     memory   1
## 29302                                                      never   1
## 29303                                                      start   1
## 29304                                                        ton   1
## 29305                                               cheesesteaks   1
## 29306                                                        bad   1
## 29307                                                    courage   1
## 29308                                                   actually   1
## 29309                                                   decorate   1
## 29310                                                       flag   1
## 29311                                                     flavor   1
## 29312                                                       free   1
## 29313                                                   frequent   1
## 29314                                                        get   1
## 29315                                                       hype   1
## 29316                                                        lot   1
## 29317                                                       make   1
## 29318                                                      messy   1
## 29319                                                    midwest   1
## 29320                                                 motorcycle   1
## 29321                                                     orange   1
## 29322                                                    picture   1
## 29323                                                      smell   1
## 29324                                                        top   1
## 29325                                                        two   1
## 29326                                                       vibe   1
## 29327                                                   colorado   1
## 29328                                                    couldnt   1
## 29329                                                     little   1
## 29330                                                eyecatching   1
## 29331                                                   interest   1
## 29332                                             lightsenticing   1
## 29333                                                        lot   1
## 29334                                                      place   1
## 29335                                                    neonlit   1
## 29336                                                    airport   1
## 29337                                                       blvd   1
## 29338                                                 afterwards   1
## 29339                                                       back   1
## 29340                                                      empty   1
## 29341                                                  flavorful   1
## 29342                                                       food   1
## 29343                                                      fresh   1
## 29344                                                       kind   1
## 29345                                                   possible   1
## 29346                                                        rib   1
## 29347                                                      thats   1
## 29348                                                unappealing   1
## 29349                                                       work   1
## 29350                                                      bread   1
## 29351                                                     effort   1
## 29352                                                     flavor   1
## 29353                                                fluorescent   1
## 29354                                                      fresh   1
## 29355                                                        fry   1
## 29356                                                       last   1
## 29357                                                       make   1
## 29358                                                  perfectly   1
## 29359                                                       time   1
## 29360                                                     twoits   1
## 29361                                                    finally   1
## 29362                                                       meal   1
## 29363                                                      spend   1
## 29364                                                      think   1
## 29365                                                        two   1
## 29366                                                       abou   1
## 29367                                                     accept   1
## 29368                                                 acceptable   1
## 29369                                                     actual   1
## 29370                                                      agree   1
## 29371                                                      along   1
## 29372                                                     always   1
## 29373                                                    america   1
## 29374                                                   american   1
## 29375                                                   anywhere   1
## 29376                                                        bag   1
## 29377                                                        bar   1
## 29378                                                     bcause   1
## 29379                                                     behind   1
## 29380                                                        big   1
## 29381                                                       bite   1
## 29382                                                      bland   1
## 29383                                                       blue   1
## 29384                                                      bread   1
## 29385                                                   business   1
## 29386                                                        buy   1
## 29387                                                        bye   1
## 29388                                                       cali   1
## 29389                                                       cant   1
## 29390                                                   carnival   1
## 29391                                                  challenge   1
## 29392                                                      cheez   1
## 29393                                                     chilly   1
## 29394                                                      clean   1
## 29395                                                         co   1
## 29396                                                       come   1
## 29397                                                  consensus   1
## 29398                                                consistency   1
## 29399                                                      convo   1
## 29400                                                     corner   1
## 29401                                                     couple   1
## 29402                                                        cup   1
## 29403                                                        dad   1
## 29404                                               dalessandros   1
## 29405                                                     dallas   1
## 29406                                                        day   1
## 29407                                                   daylight   1
## 29408                                                         dc   1
## 29409                                                     deadly   1
## 29410                                                     debate   1
## 29411                                                     decent   1
## 29412                                                      didnt   1
## 29413                                                  different   1
## 29414                                                 disappoint   1
## 29415                                                   discover   1
## 29416                                                    distant   1
## 29417                                                     dollar   1
## 29418                                                      drink   1
## 29419                                                      early   1
## 29420                                                       east   1
## 29421                                                  efficient   1
## 29422                                                     entire   1
## 29423                                                       epic   1
## 29424                                              establishment   1
## 29425                                                      every   1
## 29426                                                   everyday   1
## 29427                                                    exactly   1
## 29428                                                     expert   1
## 29429                                                      extra   1
## 29430                                                        eye   1
## 29431                                                     fairly   1
## 29432                                                     family   1
## 29433                                                     famous   1
## 29434                                                       fire   1
## 29435                                                 fraternity   1
## 29436                                                    freedom   1
## 29437                                                freedomland   1
## 29438                                                     friday   1
## 29439                                                       full   1
## 29440                                                       game   1
## 29441                                                   gangbeat   1
## 29442                                                      gaudy   1
## 29443                                                      giant   1
## 29444                                                       grab   1
## 29445                                                     grease   1
## 29446                                                    griddle   1
## 29447                                                      grill   1
## 29448                                                     hallow   1
## 29449                                                    handful   1
## 29450                                                     happen   1
## 29451                                                       head   1
## 29452                                                       hear   1
## 29453                                                       hell   1
## 29454                                                       high   1
## 29455                                                     highly   1
## 29456                                                       hope   1
## 29457                                                   horrible   1
## 29458                                                     horrid   1
## 29459                                                       hour   1
## 29460                                                    hourand   1
## 29461                                                     hungry   1
## 29462                                                       hype   1
## 29463                                                 iconically   1
## 29464                                                         id   1
## 29465                                                        ill   1
## 29466                                                immediately   1
## 29467                                                   infamous   1
## 29468                                                  instantly   1
## 29469                                                    instead   1
## 29470                                               intersection   1
## 29471                                                 ironically   1
## 29472                                                        jay   1
## 29473                                                       jims   1
## 29474                                                    journey   1
## 29475                                                     jussst   1
## 29476                                                    kitchen   1
## 29477                                                       land   1
## 29478                                                   landmark   1
## 29479                                                      learn   1
## 29480                                                     legend   1
## 29481                                                       less   1
## 29482                                                       line   1
## 29483                                                       long   1
## 29484                                                      loser   1
## 29485                                                        lot   1
## 29486                                                    lovable   1
## 29487                                                       love   1
## 29488                                                         ma   1
## 29489                                                     mammal   1
## 29490                                                      maybe   1
## 29491                                                  mcdonalds   1
## 29492                                                      miami   1
## 29493                                                        mix   1
## 29494                                                     moment   1
## 29495                                                     monday   1
## 29496                                                      nacho   1
## 29497                                                     neatly   1
## 29498                                                       need   1
## 29499                                                      never   1
## 29500                                                       next   1
## 29501                                                       nice   1
## 29502                                                      night   1
## 29503                                                     normal   1
## 29504                                                        now   1
## 29505                                                     oclock   1
## 29506                                                        old   1
## 29507                                                     oregon   1
## 29508                                                       outa   1
## 29509                                                    outdoor   1
## 29510                                                         pa   1
## 29511                                                       pain   1
## 29512                                                       part   1
## 29513                                                      party   1
## 29514                                                       peak   1
## 29515                                                     pellet   1
## 29516                                                     pepper   1
## 29517                                                permanently   1
## 29518                                                      phily   1
## 29519                                                    phoenix   1
## 29520                                                    popular   1
## 29521                                                     poster   1
## 29522                                                    predict   1
## 29523                                                    product   1
## 29524                                                   promptly   1
## 29525                                                     puerto   1
## 29526                                                    putting   1
## 29527                                             quintessential   1
## 29528                                                     racial   1
## 29529                                                     racist   1
## 29530                                                     rather   1
## 29531                                                  recommend   1
## 29532                                                     regret   1
## 29533                                                 restaurant   1
## 29534                                                    rivalry   1
## 29535                                                       road   1
## 29536                                                       roll   1
## 29537                                                         rt   1
## 29538                                                        run   1
## 29539                                                      sadly   1
## 29540                                                       sake   1
## 29541                                                        san   1
## 29542                                                   sandwich   1
## 29543                                                   saturday   1
## 29544                                                      saute   1
## 29545                                                      scene   1
## 29546                                                     season   1
## 29547                                                     second   1
## 29548                                                      sense   1
## 29549                                                    several   1
## 29550                                                      short   1
## 29551                                                      shred   1
## 29552                                                   sightsee   1
## 29553                                                       slab   1
## 29554                                                      small   1
## 29555                                                    smother   1
## 29556                                                  something   1
## 29557                                                        son   1
## 29558                                                       soon   1
## 29559                                                      spend   1
## 29560                                                      sport   1
## 29561                                                     staple   1
## 29562                                                       star   1
## 29563                                                      stick   1
## 29564                                                   straight   1
## 29565                                                     street   1
## 29566                                                        sub   1
## 29567                                                 suitandtie   1
## 29568                                                      sunny   1
## 29569                                                   surprise   1
## 29570                                                       take   1
## 29571                                                      taste   1
## 29572                                                         th   1
## 29573                                                      thick   1
## 29574                                                      three   1
## 29575                                                   thursday   1
## 29576                                                      today   1
## 29577                                                    totally   1
## 29578                                                  touristic   1
## 29579                                                    towards   1
## 29580                                                traditional   1
## 29581                                                       trip   1
## 29582                                                       true   1
## 29583                                                      twice   1
## 29584                                                 understand   1
## 29585                                                         va   1
## 29586                                                   vacation   1
## 29587                                                       walk   1
## 29588                                                       warm   1
## 29589                                                      wasnt   1
## 29590                                                    watchin   1
## 29591                                                    weekday   1
## 29592                                                    weekend   1
## 29593                                                       whiz   1
## 29594                                                    whythis   1
## 29595                                                     window   1
## 29596                                                       wish   1
## 29597                                                       work   1
## 29598                                                      world   1
## 29599                                                      worth   1
## 29600                                                       wrap   1
## 29601                                                      write   1
## 29602                                                      wrong   1
## 29603                                                       year   1
## 29604                                                       yell   1
## 29605                                                      youll   1
## 29606                                                          z   1
## 29607                                                    however   1
## 29608                                                       home   1
## 29609                                                       love   1
## 29610                                                       real   1
## 29611                                                        eat   1
## 29612                                                   ignorant   1
## 29613                                                importantly   1
## 29614                                                       seat   1
## 29615                                                       trip   1
## 29616                                                     little   1
## 29617                                                       rude   1
## 29618                                                      steak   1
## 29619                                                       joey   1
## 29620                                                    greatly   1
## 29621                                                    already   1
## 29622                                                   attitude   1
## 29623                                                      begin   1
## 29624                                                      bread   1
## 29625                                                cheesesteak   1
## 29626                                                 competitor   1
## 29627                                                   critical   1
## 29628                                                    dismiss   1
## 29629                                                      drive   1
## 29630                                                      first   1
## 29631                                                      ginos   1
## 29632                                                       grow   1
## 29633                                                    husband   1
## 29634                                                  initially   1
## 29635                                                      leave   1
## 29636                                                       like   1
## 29637                                                       long   1
## 29638                                                       much   1
## 29639                                                       next   1
## 29640                                                      place   1
## 29641                                                     pretty   1
## 29642                                                     regard   1
## 29643                                                       rude   1
## 29644                                                supermarket   1
## 29645                                                      think   1
## 29646                                                     figure   1
## 29647                                                  generally   1
## 29648                                                     people   1
## 29649                                                        fry   1
## 29650                                                       good   1
## 29651                                                      other   1
## 29652                                                     people   1
## 29653                                                  provolone   1
## 29654                                                 restaurant   1
## 29655                                                        see   1
## 29656                                                      sport   1
## 29657                                                       spot   1
## 29658                                                   statedwe   1
## 29659                                                        use   1
## 29660                                                cheesesteak   1
## 29661                                                       food   1
## 29662                                                     friend   1
## 29663                                                       make   1
## 29664                                                       much   1
## 29665                                                    nothing   1
## 29666                                                        now   1
## 29667                                                   probably   1
## 29668                                                       look   1
## 29669                                                    suicide   1
## 29670                                                  breakfast   1
## 29671                                                   business   1
## 29672                                                       folk   1
## 29673                                                   language   1
## 29674                                                      large   1
## 29675                                                       long   1
## 29676                                                      sense   1
## 29677                                                        way   1
## 29678                                                     accept   1
## 29679                                                     client   1
## 29680                                                       rude   1
## 29681                                                   baseball   1
## 29682                                                  blatantly   1
## 29683                                                    certify   1
## 29684                                                    diverse   1
## 29685                                                     garden   1
## 29686                                                        get   1
## 29687                                              hatemongering   1
## 29688                                                    italian   1
## 29689                                                       long   1
## 29690                                                        man   1
## 29691                                                     rather   1
## 29692                                                reminiscent   1
## 29693                                                      south   1
## 29694                                                 throughout   1
## 29695                                                       good   1
## 29696                                                minneapolis   1
## 29697                                                     barely   1
## 29698                                                   complain   1
## 29699                                                     decide   1
## 29700                                                        opt   1
## 29701                                                        say   1
## 29702                                                    anymore   1
## 29703                                                    believe   1
## 29704                                                       boil   1
## 29705                                                       call   1
## 29706                                                       come   1
## 29707                                                     design   1
## 29708                                                        fan   1
## 29709                                                        get   1
## 29710                                                       just   1
## 29711                                                        let   1
## 29712                                                        one   1
## 29713                                                      share   1
## 29714                                                       suck   1
## 29715                                                       work   1
## 29716                                                      bread   1
## 29717                                                cheesesteak   1
## 29718                                                flavortaste   1
## 29719                                                      genos   1
## 29720                                                      great   1
## 29721                                                       jims   1
## 29722                                                     newark   1
## 29723                                                     philly   1
## 29724                                                      piece   1
## 29725                                                      start   1
## 29726                                                      steak   1
## 29727                                                      small   1
## 29728                                                      speak   1
## 29729                                                    article   1
## 29730                                                       also   1
## 29731                                                       meat   1
## 29732                                                        pat   1
## 29733                                                     across   1
## 29734                                                       back   1
## 29735                                                        buy   1
## 29736                                                        can   1
## 29737                                                     cheese   1
## 29738                                               cheesesteaks   1
## 29739                                                    clarify   1
## 29740                                                      close   1
## 29741                                                       coke   1
## 29742                                                       cold   1
## 29743                                                 comparison   1
## 29744                                                competition   1
## 29745                                                 competitor   1
## 29746                                                counterpart   1
## 29747                                                  different   1
## 29748                                                 disappoint   1
## 29749                                                         do   1
## 29750                                                       else   1
## 29751                                                environment   1
## 29752                                                    epstein   1
## 29753                                                 everything   1
## 29754                                                        far   1
## 29755                                                     figure   1
## 29756                                                fortunately   1
## 29757                                                      fresh   1
## 29758                                                        fry   1
## 29759                                                        get   1
## 29760                                                      ginos   1
## 29761                                                      gotta   1
## 29762                                                        guy   1
## 29763                                                        ive   1
## 29764                                                       know   1
## 29765                                                       late   1
## 29766                                                      local   1
## 29767                                                       look   1
## 29768                                                       many   1
## 29769                                                   neighbor   1
## 29770                                                       next   1
## 29771                                                        now   1
## 29772                                                         oh   1
## 29773                                                    opinion   1
## 29774                                                  patsgenos   1
## 29775                                                     people   1
## 29776                                                    perhaps   1
## 29777                                                   previous   1
## 29778                                                   publicly   1
## 29779                                                       rate   1
## 29780                                                 restaurant   1
## 29781                                                      rival   1
## 29782                                                      sadly   1
## 29783                                                   sandwich   1
## 29784                                                    service   1
## 29785                                                    several   1
## 29786                                                       side   1
## 29787                                                      since   1
## 29788                                                      smell   1
## 29789                                                      taste   1
## 29790                                                      titan   1
## 29791                                                       tony   1
## 29792                                                traditional   1
## 29793                                                      truly   1
## 29794                                                    verdict   1
## 29795                                                       want   1
## 29796                                                        way   1
## 29797                                                       whos   1
## 29798                                                       will   1
## 29799                                                       fair   1
## 29800                                                         pm   1
## 29801                                                        may   1
## 29802                                                      thats   1
## 29803                                                      bread   1
## 29804                                                     cheese   1
## 29805                                                 cheesewhiz   1
## 29806                                                     choose   1
## 29807                                                       chop   1
## 29808                                                 definitely   1
## 29809                                                    equally   1
## 29810                                              establishment   1
## 29811                                                       find   1
## 29812                                                     flavor   1
## 29813                                                       geno   1
## 29814                                                       good   1
## 29815                                        httpaprilsimscomphi   1
## 29816                                                        let   1
## 29817                                                       line   1
## 29818                                               neighborhood   1
## 29819                                                       next   1
## 29820                                                   normally   1
## 29821                                                       okay   1
## 29822                                                reluctantly   1
## 29823                                                     result   1
## 29824                                                       sake   1
## 29825                                                    satisfy   1
## 29826                                                       seem   1
## 29827                                                    service   1
## 29828                                                        sit   1
## 29829                                                     sonnys   1
## 29830                                                       spin   1
## 29831                                                      start   1
## 29832                                                      taste   1
## 29833                                                       test   1
## 29834                                                  whirlwind   1
## 29835                                                        wiz   1
## 29836                                                      youre   1
## 29837                                                      whats   1
## 29838                                                       free   1
## 29839                                                    another   1
## 29840                                                       give   1
## 29841                                                     reason   1
## 29842                                                         ty   1
## 29843                                                       ruin   1
## 29844                                                       neon   1
## 29845                                                    overall   1
## 29846                                                       part   1
## 29847                                                      place   1
## 29848                                                      shite   1
## 29849                                                     across   1
## 29850                                                        bad   1
## 29851                                                      other   1
## 29852                                                  otheryeah   1
## 29853                                                      price   1
## 29854                                                      store   1
## 29855                                                        pat   1
## 29856                                                      think   1
## 29857                                                       side   1
## 29858                                                    anymore   1
## 29859                                                       area   1
## 29860                                                         do   1
## 29861                                                escpecially   1
## 29862                                                     fierce   1
## 29863                                                        get   1
## 29864                                                      ginos   1
## 29865                                                         go   1
## 29866                                                       good   1
## 29867                                                       hand   1
## 29868                                                       like   1
## 29869                                                     little   1
## 29870                                                       make   1
## 29871                                                      mimic   1
## 29872                                                     muchit   1
## 29873                                                   neighbor   1
## 29874                                                      right   1
## 29875                                                      speak   1
## 29876                                                    suspect   1
## 29877                                                      table   1
## 29878                                                      think   1
## 29879                                                         um   1
## 29880                                                      worth   1
## 29881                                                      thing   1
## 29882                                                      wpats   1
## 29883                                                       also   1
## 29884                                                     always   1
## 29885                                                       base   1
## 29886                                                    compare   1
## 29887                                                        day   1
## 29888                                                       even   1
## 29889                                                      great   1
## 29890                                                         id   1
## 29891                                                      lofty   1
## 29892                                               neighborhood   1
## 29893                                                  obviously   1
## 29894                                                       okay   1
## 29895                                                      place   1
## 29896                                                    product   1
## 29897                                                      right   1
## 29898                                                      sorry   1
## 29899                                                       will   1
## 29900                                                      place   1
## 29901                                                  bartender   1
## 29902                                                     cheese   1
## 29903                                                        eat   1
## 29904                                                     effect   1
## 29905                                                      first   1
## 29906                                                        fry   1
## 29907                                                     indoor   1
## 29908                                                       like   1
## 29909                                                        lot   1
## 29910                                                        pat   1
## 29911                                                  political   1
## 29912                                                     racism   1
## 29913                                                       seat   1
## 29914                                                  sometimes   1
## 29915                                                      think   1
## 29916                                                     unable   1
## 29917                                                       whiz   1
## 29918                                                        bad   1
## 29919                                                 definitely   1
## 29920                                                         do   1
## 29921                                                       file   1
## 29922                                                        guy   1
## 29923                                                        ill   1
## 29924                                                      major   1
## 29925                                                        man   1
## 29926                                                      offer   1
## 29927                                                       park   1
## 29928                                                      price   1
## 29929                                                        put   1
## 29930                                                       rude   1
## 29931                                                   sandwich   1
## 29932                                                      shred   1
## 29933                                                   thinness   1
## 29934                                                     travel   1
## 29935                                                       upon   1
## 29936                                                     rather   1
## 29937                                                   sandwich   1
## 29938                                                       whiz   1
## 29939                                                    blownup   1
## 29940                                                     carnie   1
## 29941                                                  challenge   1
## 29942                                                cheesesteak   1
## 29943                                                 comparison   1
## 29944                                                      decor   1
## 29945                                                 everything   1
## 29946                                                    garbage   1
## 29947                                                      grill   1
## 29948                                                       jerk   1
## 29949                                                       line   1
## 29950                                                       love   1
## 29951                                                    mission   1
## 29952                                                       myth   1
## 29953                                                        one   1
## 29954                                                     ordeal   1
## 29955                                                     philly   1
## 29956                                                    popular   1
## 29957                                                       real   1
## 29958                                                     ripoff   1
## 29959                                                   sandwich   1
## 29960                                                    silence   1
## 29961                                                       task   1
## 29962                                                  tasteless   1
## 29963                                                      train   1
## 29964                                                      trash   1
## 29965                                                    tshirts   1
## 29966                                                       turn   1
## 29967                                                         wo   1
## 29968                                                   although   1
## 29969                                                     appall   1
## 29970                                                 appreciate   1
## 29971                                                      bland   1
## 29972                                                     blandi   1
## 29973                                                    confuse   1
## 29974                                                    destroy   1
## 29975                                                disorganize   1
## 29976                                                  displease   1
## 29977                                                      empty   1
## 29978                                                    enhance   1
## 29979                                                     escape   1
## 29980                                                       find   1
## 29981                                                       fuck   1
## 29982                                                greasecaked   1
## 29983                                                        hey   1
## 29984                                                       hype   1
## 29985                                                    illegal   1
## 29986                                                     insane   1
## 29987                                                 intoxicate   1
## 29988                                                       kill   1
## 29989                                                       lack   1
## 29990                                                       live   1
## 29991                                                   mediocre   1
## 29992                                                   nauseate   1
## 29993                                                        new   1
## 29994                                                  objective   1
## 29995                                                   ordinary   1
## 29996                                                residential   1
## 29997                                                       ruin   1
## 29998                                                       spin   1
## 29999                                                  tasteless   1
## 30000                                                      touch   1
## 30001                                               unacceptable   1
## 30002                                                    unaware   1
## 30003                                                   unbiased   1
## 30004                                                 underwhelm   1
## 30005                                                 unfriendly   1
## 30006                                                 uninspired   1
## 30007                                                unnecessary   1
## 30008                                                       void   1
## 30009                                                      wrong   1
## 30010                                                     ignore   1
## 30011                                                     indoor   1
## 30012                                                      whole   1
## 30013                                                       even   1
## 30014                                                fatherwhich   1
## 30015                                                       meat   1
## 30016                                                        one   1
## 30017                                                       rest   1
## 30018                                                      steak   1
## 30019                                                   surprise   1
## 30020                                                  condiment   1
## 30021                                                      genos   1
## 30022                                                    without   1
## 30023                                                   sandwich   1
## 30024                                                      youre   1
## 30025                                                      bread   1
## 30026                                                    english   1
## 30027                                                      slice   1
## 30028                                                       yelp   1
## 30029                                                       real   1
## 30030                                                   sandwich   1
## 30031                                                    science   1
## 30032                                                       also   1
## 30033                                                     friend   1
## 30034                                                       must   1
## 30035                                                cheesesteak   1
## 30036                                                   rightyou   1
## 30037                                                     boston   1
## 30038                                                       game   1
## 30039                                                 atmosphere   1
## 30040                                                      bread   1
## 30041                                                       cash   1
## 30042                                                      dirty   1
## 30043                                              establishment   1
## 30044                                                  expensive   1
## 30045                                                      genos   1
## 30046                                                       good   1
## 30047                                                         la   1
## 30048                                                       make   1
## 30049                                                       meat   1
## 30050                                                      order   1
## 30051                                                       side   1
## 30052                                                  tasteless   1
## 30053                                                       tiny   1
## 30054                                                      steak   1
## 30055                                                   actually   1
## 30056                                              customerspats   1
## 30057                                                      genos   1
## 30058                                                     vision   1
## 30059                                                        buy   1
## 30060                                                       come   1
## 30061                                                        get   1
## 30062                                                       pain   1
## 30063                                                     people   1
## 30064                                                     proper   1
## 30065                                                       time   1
## 30066                                                       whiz   1
## 30067                                                       will   1
## 30068                                                deportation   1
## 30069                                                     forget   1
## 30070                                                        get   1
## 30071                                                      ginos   1
## 30072                                                       good   1
## 30073                                                    however   1
## 30074                                                    hundred   1
## 30075                                                        sub   1
## 30076                                                      taste   1
## 30077                                                      thing   1
## 30078                                                       want   1
## 30079                                                       ball   1
## 30080                                                      event   1
## 30081                                                    however   1
## 30082                                                   lifetime   1
## 30083                                                  something   1
## 30084                                                      order   1
## 30085                                                       trip   1
## 30086                                                       also   1
## 30087                                                       just   1
## 30088                                                  legendary   1
## 30089                                               nonbelievers   1
## 30090                                                    overall   1
## 30091                                                        pat   1
## 30092                                                      sorry   1
## 30093                                                      taste   1
## 30094                                                       will   1
## 30095                                                      worth   1
## 30096                                                      story   1
## 30097                                                       spot   1
## 30098                                                      speak   1
## 30099                                                      steak   1
## 30100                                                   weaselly   1
## 30101                                                 accessible   1
## 30102                                                        add   1
## 30103                                                       also   1
## 30104                                                       area   1
## 30105                                                     behind   1
## 30106                                                cheesesteak   1
## 30107                                                      choke   1
## 30108                                                 completely   1
## 30109                                                    counter   1
## 30110                                                         do   1
## 30111                                                        eat   1
## 30112                                                 especially   1
## 30113                                                       ever   1
## 30114                                                      favor   1
## 30115                                                       find   1
## 30116                                                     flavor   1
## 30117                                                     freeze   1
## 30118                                                       heat   1
## 30119                                                       help   1
## 30120                                                        hot   1
## 30121                                                        hub   1
## 30122                                                      joint   1
## 30123                                                       like   1
## 30124                                                       love   1
## 30125                                                       mask   1
## 30126                                                       much   1
## 30127                                                     napkin   1
## 30128                                                      order   1
## 30129                                                       part   1
## 30130                                                 reasonable   1
## 30131                                                    section   1
## 30132                                                       self   1
## 30133                                                     settle   1
## 30134                                                       side   1
## 30135                                                   sidewalk   1
## 30136                                                      thing   1
## 30137                                                    topping   1
## 30138                                                       true   1
## 30139                                                        tub   1
## 30140                                                 unsanitary   1
## 30141                                                    visible   1
## 30142                                                   foodwise   1
## 30143                                                  greazzzzy   1
## 30144                                                       main   1
## 30145                                                     though   1
## 30146                                                        yes   1
## 30147                                                   ultimate   1
## 30148                                                   ambiance   1
## 30149                                                      rival   1
## 30150                                                     decide   1
## 30151                                                        guy   1
## 30152                                                       just   1
## 30153                                                       taxi   1
## 30154                                                        see   1
## 30155                                                       make   1
## 30156                                                       hand   1
## 30157                                                  ignorance   1
## 30158                                                    however   1
## 30159                                                      genos   1
## 30160                                                     sodium   1
## 30161                                                       good   1
## 30162                                                      hadnt   1
## 30163                                                     racist   1
## 30164                                                    towards   1
## 30165                                                  different   1
## 30166                                                       good   1
## 30167                                                       look   1
## 30168                                                      order   1
## 30169                                                       peep   1
## 30170                                                        say   1
## 30171                                                  selection   1
## 30172                                                    several   1
## 30173                                                      think   1
## 30174                                                    whether   1
## 30175                                                     window   1
## 30176                                                 middleaged   1
## 30177                                                      occur   1
## 30178                                                   horrible   1
## 30179                                                        pat   1
## 30180                                                      serve   1
## 30181                                                      steak   1
## 30182                                                       time   1
## 30183                                                       area   1
## 30184                                                      owner   1
## 30185                                                      genos   1
## 30186                                                       ever   1
## 30187                                                       hall   1
## 30188                                                       sign   1
## 30189                                                       make   1
## 30190                                                     reason   1
## 30191                                                     duluth   1
## 30192                                                      order   1
## 30193                                                       seem   1
## 30194                                                       know   1
## 30195                                                    tourism   1
## 30196                                                      hubby   1
## 30197                                                      split   1
## 30198                                                    educate   1
## 30199                                                    liberal   1
## 30200                                                      avoid   1
## 30201                                                       mind   1
## 30202                                                        day   1
## 30203                                                      genos   1
## 30204                                                    amongst   1
## 30205                                                   overrate   1
## 30206                                             philadelphians   1
## 30207                                                      ginos   1
## 30208                                                   politely   1
## 30209                                                  hypocrisy   1
## 30210                                                       mind   1
## 30211                                                 patriotism   1
## 30212                                                      plain   1
## 30213                                                       tour   1
## 30214                                                 vocalvomit   1
## 30215                                                        act   1
## 30216                                                        ask   1
## 30217                                                       bite   1
## 30218                                                       buck   1
## 30219                                                       case   1
## 30220                                                     cheese   1
## 30221                                                cheesesteak   1
## 30222                                                       city   1
## 30223                                                       come   1
## 30224                                                      early   1
## 30225                                                     expert   1
## 30226                                                       fast   1
## 30227                                                      first   1
## 30228                                                        get   1
## 30229                                                       goto   1
## 30230                                                      grill   1
## 30231                                                      group   1
## 30232                                                       item   1
## 30233                                                       join   1
## 30234                                                      joint   1
## 30235                                                       long   1
## 30236                                                      major   1
## 30237                                                        one   1
## 30238                                                   original   1
## 30239                                                        pat   1
## 30240                                                      place   1
## 30241                                                    quality   1
## 30242                                                     return   1
## 30243                                                       rite   1
## 30244                                                   saturday   1
## 30245                                                    sketchy   1
## 30246                                                      steak   1
## 30247                                                      steep   1
## 30248                                                       true   1
## 30249                                                        two   1
## 30250                                                       whiz   1
## 30251                                                       dose   1
## 30252                                                       much   1
## 30253                                                      small   1
## 30254                                                        kid   1
## 30255                                                        set   1
## 30256                                                        eat   1
## 30257                                                    italian   1
## 30258                                                      white   1
## 30259                                                    combine   1
## 30260                                                      every   1
## 30261                                                     friend   1
## 30262                                                 girlfriend   1
## 30263                                                       like   1
## 30264                                                      maybe   1
## 30265                                                       whiz   1
## 30266                                                       sake   1
## 30267                                                     across   1
## 30268                                                      among   1
## 30269                                                     cheese   1
## 30270                                                      color   1
## 30271                                                     decide   1
## 30272                                                        pat   1
## 30273                                                       real   1
## 30274                                                      taste   1
## 30275                                                   wherever   1
## 30276                                                         go   1
## 30277                                                       good   1
## 30278                                                       make   1
## 30279                                                       menu   1
## 30280                                                      solid   1
## 30281                                                      tasty   1
## 30282                                                      drive   1
## 30283                                                    hapless   1
## 30284                                                     theory   1
## 30285                                                     mental   1
## 30286                                                reassurance   1
## 30287                                                   reminder   1
## 30288                                                  vibration   1
## 30289                                                         do   1
## 30290                                                       hear   1
## 30291                                                   sandwich   1
## 30292                                                         go   1
## 30293                                                     center   1
## 30294                                                       hall   1
## 30295                                                      steak   1
## 30296                                                     effort   1
## 30297                                                  offensive   1
## 30298                                                       body   1
## 30299                                                 experience   1
## 30300                                                      genos   1
## 30301                                                     greasy   1
## 30302                                                       half   1
## 30303                                                       life   1
## 30304                                                      steak   1
## 30305                                                   steakumm   1
## 30306                                                      bunch   1
## 30307                                                      genos   1
## 30308                                                      leave   1
## 30309                                                      steak   1
## 30310                                                     almost   1
## 30311                                                      didnt   1
## 30312                                                       even   1
## 30313                                                      first   1
## 30314                                                       food   1
## 30315                                                   imbecile   1
## 30316                                                      still   1
## 30317                                                      bread   1
## 30318                                                       like   1
## 30319                                                      steak   1
## 30320                                                      empty   1
## 30321                                                        lid   1
## 30322                                                      small   1
## 30323                                                    thincut   1
## 30324                                                    whether   1
## 30325                                               conversation   1
## 30326                                                     hiphop   1
## 30327                                                   anything   1
## 30328                                                   customer   1
## 30329                                                      ginos   1
## 30330                                                         go   1
## 30331                                                      think   1
## 30332                                                     choice   1
## 30333                                                        fat   1
## 30334                                                       food   1
## 30335                                                     people   1
## 30336                                                  provolone   1
## 30337                                                      steak   1
## 30338                                                    without   1
## 30339                                                        pat   1
## 30340                                                  entertain   1
## 30341                                                       meat   1
## 30342                                                     really   1
## 30343                                                    kennedy   1
## 30344                                                      genos   1
## 30345                                                        get   1
## 30346                                                        ive   1
## 30347                                                         go   1
## 30348                                                          b   1
## 30349                                                       cash   1
## 30350                                                  delicious   1
## 30351                                                         do   1
## 30352                                                      drive   1
## 30353                                                        eat   1
## 30354                                                        end   1
## 30355                                                      exist   1
## 30356                                                        get   1
## 30357                                                      great   1
## 30358                                                      ideal   1
## 30359                                                       keep   1
## 30360                                                       line   1
## 30361                                                       make   1
## 30362                                                       many   1
## 30363                                                       meet   1
## 30364                                                       onto   1
## 30365                                                       read   1
## 30366                                                     search   1
## 30367                                                       suck   1
## 30368                                                    support   1
## 30369                                                       talk   1
## 30370                                                     thrive   1
## 30371                                                       tour   1
## 30372                                                     travel   1
## 30373                                                    without   1
## 30374                                                  operation   1
## 30375                                                         de   1
## 30376                                                       many   1
## 30377                                                    popular   1
## 30378                                                      genos   1
## 30379                                                      image   1
## 30380                                                 revelation   1
## 30381                                                   sandwich   1
## 30382                                                        two   1
## 30383                                                    overall   1
## 30384                                                       seem   1
## 30385                                                 tenderness   1
## 30386                                                       time   1
## 30387                                                  mandatory   1
## 30388                                                       also   1
## 30389                                                   language   1
## 30390                                                        one   1
## 30391                                                    picture   1
## 30392                                                      price   1
## 30393                                                  sandwhich   1
## 30394                                                     theyve   1
## 30395                                                     aspect   1
## 30396                                                       case   1
## 30397                                                  political   1
## 30398                                                      think   1
## 30399                                                       view   1
## 30400                                                     butits   1
## 30401                                                       find   1
## 30402                                                       long   1
## 30403                                                       sign   1
## 30404                                                   surround   1
## 30405                                                       talk   1
## 30406                                                       year   1
## 30407                                                       cool   1
## 30408                                                      store   1
## 30409                                                      value   1
## 30410                                                       also   1
## 30411                                                       good   1
## 30412                                                       face   1
## 30413                                                     locate   1
## 30414                                                      right   1
## 30415                                                        tag   1
## 30416                                                       tour   1
## 30417                                                  yesterday   1
## 30418                                                  seriously   1
## 30419                                                       nice   1
## 30420                                                        add   1
## 30421                                                     appear   1
## 30422                                                       good   1
## 30423                                                      grant   1
## 30424                                                        guy   1
## 30425                                                   honestly   1
## 30426                                                       next   1
## 30427                                                     overhe   1
## 30428                                               particularly   1
## 30429                                                      steak   1
## 30430                                                   believer   1
## 30431                                                       many   1
## 30432                                                      maybe   1
## 30433                                                 disappoint   1
## 30434                                                     always   1
## 30435                                                   argument   1
## 30436                                                    average   1
## 30437                                                       give   1
## 30438                                                         go   1
## 30439                                                       good   1
## 30440                                                outoffriend   1
## 30441                                                     people   1
## 30442                                                     philly   1
## 30443                                                      stuff   1
## 30444                                                       wife   1
## 30445                                                       take   1
## 30446                                                      logic   1
## 30447                                                    anyways   1
## 30448                                                       area   1
## 30449                                                        ask   1
## 30450                                                       beef   1
## 30451                                                    believe   1
## 30452                                                      bread   1
## 30453                                                      bring   1
## 30454                                                      cause   1
## 30455                                                cheesesteak   1
## 30456                                               cheesesteaks   1
## 30457                                                      chewy   1
## 30458                                                  cookuntil   1
## 30459                                                     couple   1
## 30460                                                        cut   1
## 30461                                                     decent   1
## 30462                                                         do   1
## 30463                                                     either   1
## 30464                                                 experience   1
## 30465                                                        fat   1
## 30466                                                        fry   1
## 30467                                                       give   1
## 30468                                                         go   1
## 30469                                                      great   1
## 30470                                                    griddle   1
## 30471                                                        hot   1
## 30472                                                    husband   1
## 30473                                                    imagine   1
## 30474                                                       jims   1
## 30475                                                        lot   1
## 30476                                                   lukewarm   1
## 30477                                                    morning   1
## 30478                                                    neither   1
## 30479                                                       next   1
## 30480                                                       nice   1
## 30481                                                     nicely   1
## 30482                                                    nothing   1
## 30483                                                         oh   1
## 30484                                                        oil   1
## 30485                                                     oppose   1
## 30486                                                    perfect   1
## 30487                                                       pile   1
## 30488                                                      place   1
## 30489                                                        pot   1
## 30490                                                     prefer   1
## 30491                                                    present   1
## 30492                                                     pretty   1
## 30493                                                  provolone   1
## 30494                                                        rib   1
## 30495                                                        run   1
## 30496                                                   sandwich   1
## 30497                                                      saute   1
## 30498                                                       seem   1
## 30499                                                       soft   1
## 30500                                                    station   1
## 30501                                                       stay   1
## 30502                                                      stiff   1
## 30503                                                      still   1
## 30504                                                      stuff   1
## 30505                                                       talk   1
## 30506                                                      taste   1
## 30507                                                 thankfully   1
## 30508                                                      thing   1
## 30509                                                      think   1
## 30510                                                      throw   1
## 30511                                                       till   1
## 30512                                                   together   1
## 30513                                                       true   1
## 30514                                              underseasoned   1
## 30515                                                         us   1
## 30516                                                        use   1
## 30517                                                      waste   1
## 30518                                                        way   1
## 30519                                                      whole   1
## 30520                                                       will   1
## 30521                                                       cook   1
## 30522                                                       tell   1
## 30523                                                  excellent   1
## 30524                                                      tough   1
## 30525                                                     anyway   1
## 30526                                                       area   1
## 30527                                                 atmosphere   1
## 30528                                                     battle   1
## 30529                                                     become   1
## 30530                                                      bread   1
## 30531                                                        buy   1
## 30532                                                        can   1
## 30533                                                       cant   1
## 30534                                                      check   1
## 30535                                                      colon   1
## 30536                                                  complaint   1
## 30537                                                         do   1
## 30538                                                       even   1
## 30539                                                     flashy   1
## 30540                                                        get   1
## 30541                                                        guy   1
## 30542                                                        hey   1
## 30543                                                         im   1
## 30544                                                   interest   1
## 30545                                                        kid   1
## 30546                                                      light   1
## 30547                                                       like   1
## 30548                                                   location   1
## 30549                                                       luck   1
## 30550                                                       make   1
## 30551                                                      money   1
## 30552                                               neighborhood   1
## 30553                                                        now   1
## 30554                                                       okay   1
## 30555                                                      order   1
## 30556                                                       part   1
## 30557                                                      patch   1
## 30558                                                      patio   1
## 30559                                                     person   1
## 30560                                                    picture   1
## 30561                                                    quickly   1
## 30562                                                     razzle   1
## 30563                                                     really   1
## 30564                                                       roll   1
## 30565                                                    scenery   1
## 30566                                                       seem   1
## 30567                                                      since   1
## 30568                                                        sit   1
## 30569                                                       spot   1
## 30570                                                      story   1
## 30571                                                     theres   1
## 30572                                                     theyre   1
## 30573                                                      thing   1
## 30574                                                     though   1
## 30575                                                       tony   1
## 30576                                                      touch   1
## 30577                                                    tourist   1
## 30578                                                        use   1
## 30579                                                       wall   1
## 30580                                                       warm   1
## 30581                                                         ny   1
## 30582                                                  allegedly   1
## 30583                                                        ass   1
## 30584                                                      badge   1
## 30585                                                        car   1
## 30586                                                   continue   1
## 30587                                                         do   1
## 30588                                                 especially   1
## 30589                                                       good   1
## 30590                                                      great   1
## 30591                                                    hangout   1
## 30592                                                 killerthen   1
## 30593                                                      mafia   1
## 30594                                                   official   1
## 30595                                                       pass   1
## 30596                                                        per   1
## 30597                                                        put   1
## 30598                                                         us   1
## 30599                                                        way   1
## 30600                                                       will   1
## 30601                                                     trauma   1
## 30602                                         politicallycharged   1
## 30603                                                        etc   1
## 30604                                                declaration   1
## 30605                                                        pat   1
## 30606                                                        way   1
## 30607                                                   craphole   1
## 30608                                                   business   1
## 30609                                                   customer   1
## 30610                                                        act   1
## 30611                                                    america   1
## 30612                                                  apartment   1
## 30613                                                        big   1
## 30614                                                     bottom   1
## 30615                                                      bring   1
## 30616                                                  celebrity   1
## 30617                                                 compeition   1
## 30618                                                 competitor   1
## 30619                                                     corner   1
## 30620                                                      cross   1
## 30621                                                        cut   1
## 30622                                                 definitely   1
## 30623                                             disappointment   1
## 30624                                                  epassyunk   1
## 30625                                                     expect   1
## 30626                                                 experience   1
## 30627                                                      hitem   1
## 30628                                               intersection   1
## 30629                                                       know   1
## 30630                                                      large   1
## 30631                                                  literally   1
## 30632                                                     locate   1
## 30633                                                       look   1
## 30634                                                      mouth   1
## 30635                                                       move   1
## 30636                                                         nd   1
## 30637                                                        now   1
## 30638                                                     orange   1
## 30639                                                      order   1
## 30640                                                     philly   1
## 30641                                              pizzasandwich   1
## 30642                                                 pizzasteak   1
## 30643                                                   pizzeria   1
## 30644                                                         pm   1
## 30645                                                     prefer   1
## 30646                                                     pretty   1
## 30647                                                   property   1
## 30648                                                 restaurant   1
## 30649                                                        see   1
## 30650                                                       sign   1
## 30651                                                   slightly   1
## 30652                                               softpretzels   1
## 30653                                                      south   1
## 30654                                                      split   1
## 30655                                                         th   1
## 30656                                                      thank   1
## 30657                                                        two   1
## 30658                                                       will   1
## 30659                                                      worth   1
## 30660                                                cheesesteak   1
## 30661                                                      genos   1
## 30662                                                       want   1
## 30663                                                        ton   1
## 30664                                                      train   1
## 30665                                                   christen   1
## 30666                                                    christi   1
## 30667                                                     accent   1
## 30668                                                     forget   1
## 30669                                                         im   1
## 30670                                                incorrectly   1
## 30671                                                     indoor   1
## 30672                                                     people   1
## 30673                                                     philly   1
## 30674                                                       read   1
## 30675                                                       tell   1
## 30676                                                        try   1
## 30677                                                        way   1
## 30678                                                      wrong   1
## 30679                                                       buck   1
## 30680                                                       cash   1
## 30681                                                     cheese   1
## 30682                                                      didnt   1
## 30683                                                      enjoy   1
## 30684                                                       give   1
## 30685                                                         go   1
## 30686                                                      heres   1
## 30687                                                       hole   1
## 30688                                                        ive   1
## 30689                                                     listen   1
## 30690                                                      local   1
## 30691                                                        may   1
## 30692                                                     plenty   1
## 30693                                                   promptly   1
## 30694                                                      steak   1
## 30695                                                     wonder   1
## 30696                                               philadelphia   1
## 30697                                                       food   1
## 30698                                                       give   1
## 30699                                                     police   1
## 30700                                                      close   1
## 30701                                                     either   1
## 30702                                                   slightly   1
## 30703                                                      youre   1
## 30704                                                        add   1
## 30705                                                   anywhere   1
## 30706                                                   attitude   1
## 30707                                                   business   1
## 30708                                                          c   1
## 30709                                                     cheese   1
## 30710                                                        cup   1
## 30711                                                      drive   1
## 30712                                                        eat   1
## 30713                                                        etc   1
## 30714                                                 everything   1
## 30715                                                    exactly   1
## 30716                                                      extra   1
## 30717                                                      fifty   1
## 30718                                                       grab   1
## 30719                                                      guess   1
## 30720                                                         id   1
## 30721                                                        ive   1
## 30722                                                       jims   1
## 30723                                                       less   1
## 30724                                                     little   1
## 30725                                                       make   1
## 30726                                                      money   1
## 30727                                                     number   1
## 30728                                                    overall   1
## 30729                                                     people   1
## 30730                                                     really   1
## 30731                                                        run   1
## 30732                                                        say   1
## 30733                                                  something   1
## 30734                                                       stop   1
## 30735                                                       taxi   1
## 30736                                                    totally   1
## 30737                                                        try   1
## 30738                                                     unique   1
## 30739                                                      wasnt   1
## 30740                                                        way   1
## 30741                                                   whopping   1
## 30742                                                       will   1
## 30743                                                        fry   1
## 30744                                                       heat   1
## 30745                                                        pat   1
## 30746                                                       food   1
## 30747                                                 restaurant   1
## 30748                                                      genos   1
## 30749                                                    service   1
## 30750                                                    turnoff   1
## 30751                                                        ask   1
## 30752                                                        ave   1
## 30753                                               mouthbeleive   1
## 30754                                                comfortable   1
## 30755                                                      cough   1
## 30756                                                       name   1
## 30757                                                      slime   1
## 30758                                                    anymore   1
## 30759                                                        ask   1
## 30760                                                      bring   1
## 30761                                                       chew   1
## 30762                                                    compare   1
## 30763                                                   complain   1
## 30764                                                      drive   1
## 30765                                                     fathom   1
## 30766                                                       find   1
## 30767                                                         go   1
## 30768                                                       hold   1
## 30769                                                    imagine   1
## 30770                                                    improve   1
## 30771                                                       keep   1
## 30772                                                        let   1
## 30773                                                    letdown   1
## 30774                                                       miss   1
## 30775                                                       pick   1
## 30776                                                   possibly   1
## 30777                                                      quite   1
## 30778                                                     really   1
## 30779                                                   remember   1
## 30780                                                     resist   1
## 30781                                                     return   1
## 30782                                                     scrape   1
## 30783                                                        see   1
## 30784                                                      sleep   1
## 30785                                                      smell   1
## 30786                                                      stand   1
## 30787                                                    stomach   1
## 30788                                                       tell   1
## 30789                                                      wrong   1
## 30790                                                       chip   1
## 30791                                                       less   1
## 30792                                                      truth   1
## 30793                                                        try   1
## 30794                                                       alas   1
## 30795                                                       also   1
## 30796                                                       cant   1
## 30797                                                    ketchup   1
## 30798                                                      local   1
## 30799                                                       make   1
## 30800                                                        may   1
## 30801                                                       past   1
## 30802                                                     people   1
## 30803                                                    suppose   1
## 30804                                                 voteswrite   1
## 30805                                                        way   1
## 30806                                                 accusation   1
## 30807                                                        act   1
## 30808                                                       also   1
## 30809                                                        bad   1
## 30810                                                     behind   1
## 30811                                                      clean   1
## 30812                                                      count   1
## 30813                                                   curbside   1
## 30814                                                      dance   1
## 30815                                                 definitely   1
## 30816                                                  different   1
## 30817                                            disneylandesque   1
## 30818                                                     doesnt   1
## 30819                                                       else   1
## 30820                                                       fact   1
## 30821                                                foilwrapped   1
## 30822                                                   friendly   1
## 30823                                                       fume   1
## 30824                                                      genos   1
## 30825                                                       give   1
## 30826                                                         go   1
## 30827                                                      guess   1
## 30828                                                       help   1
## 30829                                                    impress   1
## 30830                                                       isnt   1
## 30831                                                       just   1
## 30832                                                       kind   1
## 30833                                                       like   1
## 30834                                                  literally   1
## 30835                                                     little   1
## 30836                                                      nasty   1
## 30837                                                       next   1
## 30838                                                       nice   1
## 30839                                                       note   1
## 30840                                                  obviously   1
## 30841                                                         oh   1
## 30842                                                        one   1
## 30843                                                       onto   1
## 30844                                                      other   1
## 30845                                                    outside   1
## 30846                                                     people   1
## 30847                                                     person   1
## 30848                                                      place   1
## 30849                                                     plenty   1
## 30850                                                   probably   1
## 30851                                                     refill   1
## 30852                                                 respectful   1
## 30853                                                      right   1
## 30854                                                        see   1
## 30855                                                      serve   1
## 30856                                                servicefood   1
## 30857                                                      since   1
## 30858                                                      snide   1
## 30859                                                      south   1
## 30860                                                      space   1
## 30861                                                   spotless   1
## 30862                                                      staff   1
## 30863                                                      state   1
## 30864                                                      steak   1
## 30865                                                      stiff   1
## 30866                                                  translate   1
## 30867                                                  undaunted   1
## 30868                                                 unfriendly   1
## 30869                                                       want   1
## 30870                                                       whiz   1
## 30871                                                     window   1
## 30872                                                       wont   1
## 30873                                                     worker   1
## 30874                                                       yell   1
## 30875                                                      youll   1
## 30876                                                     anyone   1
## 30877                                                         im   1
## 30878                                                      sweet   1
## 30879                                                       know   1
## 30880                                                      first   1
## 30881                                                       make   1
## 30882                                                       even   1
## 30883                                               cheesesteaks   1
## 30884                                                    episode   1
## 30885                                                       numb   1
## 30886                                                     people   1
## 30887                                                       time   1
## 30888                                                    america   1
## 30889                                                    amoroso   1
## 30890                                                     anyway   1
## 30891                                                      april   1
## 30892                                                     around   1
## 30893                                                  associate   1
## 30894                                                       bite   1
## 30895                                                       city   1
## 30896                                                       come   1
## 30897                                                      didnt   1
## 30898                                                  difficult   1
## 30899                                                    disgust   1
## 30900                                                     easily   1
## 30901                                                    english   1
## 30902                                                   everyone   1
## 30903                                                       find   1
## 30904                                                  foreigner   1
## 30905                                                      found   1
## 30906                                                    freedom   1
## 30907                                                    garbage   1
## 30908                                                        get   1
## 30909                                                       glad   1
## 30910                                                      gonna   1
## 30911                                                       good   1
## 30912                                                       hate   1
## 30913                                                       help   1
## 30914                                                        ill   1
## 30915                                                  immigrant   1
## 30916                                                       know   1
## 30917                                                      learn   1
## 30918                                                       life   1
## 30919                                                       long   1
## 30920                                                   needless   1
## 30921                                                      never   1
## 30922                                                      order   1
## 30923                                                     pretty   1
## 30924                                                   probably   1
## 30925                                                      proud   1
## 30926                                                   roadtrip   1
## 30927                                                     sample   1
## 30928                                                        see   1
## 30929                                                       sign   1
## 30930                                                      speak   1
## 30931                                                        tax   1
## 30932                                                   tolerate   1
## 30933                                                       trip   1
## 30934                                                        try   1
## 30935                                                       turn   1
## 30936                                                    utterly   1
## 30937                                                    without   1
## 30938                                                      world   1
## 30939                                                       year   1
## 30940                                                immigration   1
## 30941                                                   language   1
## 30942                                                      think   1
## 30943                                                   assholes   1
## 30944                                                       away   1
## 30945                                                      block   1
## 30946                                                     cheese   1
## 30947                                                     choice   1
## 30948                                                       come   1
## 30949                                                   cucumber   1
## 30950                                                      drive   1
## 30951                                                       fact   1
## 30952                                                      final   1
## 30953                                                       free   1
## 30954                                                       girl   1
## 30955                                                      great   1
## 30956                                                        guy   1
## 30957                                                 historical   1
## 30958                                                        hot   1
## 30959                                                       howl   1
## 30960                                                     hungry   1
## 30961                                                    ketchup   1
## 30962                                                       late   1
## 30963                                                observation   1
## 30964                                                    obvious   1
## 30965                                                      order   1
## 30966                                                     philly   1
## 30967                                                      piece   1
## 30968                                                      place   1
## 30969                                                         qs   1
## 30970                                                      quite   1
## 30971                                                      right   1
## 30972                                                       show   1
## 30973                                                       sink   1
## 30974                                                       soda   1
## 30975                                                       spot   1
## 30976                                                      store   1
## 30977                                                       tell   1
## 30978                                                      thing   1
## 30979                                                      think   1
## 30980                                                      visit   1
## 30981                                                      wasnt   1
## 30982                                                       week   1
## 30983                                                    weekend   1
## 30984                                                    yelpers   1
## 30985                                                    tourist   1
## 30986                                                       make   1
## 30987                                                      write   1
## 30988                                              unprecedented   1
## 30989                                                    besides   1
## 30990                                                        can   1
## 30991                                                       cant   1
## 30992                                                controversy   1
## 30993                                                   customer   1
## 30994                                                        cut   1
## 30995                                                     decide   1
## 30996                                                destination   1
## 30997                                                     detour   1
## 30998                                                      didnt   1
## 30999                                                 disappoint   1
## 31000                                                      enjoy   1
## 31001                                                      extra   1
## 31002                                                       geno   1
## 31003                                                    husband   1
## 31004                                                   ignorant   1
## 31005                                                         im   1
## 31006                                                       jims   1
## 31007                                                       just   1
## 31008                                                       lack   1
## 31009                                                       luck   1
## 31010                                                       melt   1
## 31011                                                       next   1
## 31012                                                      order   1
## 31013                                                    overall   1
## 31014                                                       past   1
## 31015                                                        pat   1
## 31016                                                        pay   1
## 31017                                               philadelphia   1
## 31018                                                     philly   1
## 31019                                                       post   1
## 31020                                                     racism   1
## 31021                                                   renowned   1
## 31022                                                        sad   1
## 31023                                                  sarcastic   1
## 31024                                                        see   1
## 31025                                                      sight   1
## 31026                                                       stay   1
## 31027                                                      stick   1
## 31028                                                   surprise   1
## 31029                                                       tear   1
## 31030                                                     theyve   1
## 31031                                                      token   1
## 31032                                                       town   1
## 31033                                                        two   1
## 31034                                                    typical   1
## 31035                                                      world   1
## 31036                                                      youre   1
## 31037                                                      claim   1
## 31038                                                  fauxsteak   1
## 31039                                                      large   1
## 31040                                                   location   1
## 31041                                                      offer   1
## 31042                                                      order   1
## 31043                                                    outside   1
## 31044                                                cheesesteak   1
## 31045                                                     detail   1
## 31046                                                         go   1
## 31047                                                     patron   1
## 31048                                                      quick   1
## 31049                                                   sandwich   1
## 31050                                                       melt   1
## 31051                                                       tell   1
## 31052                                                     advice   1
## 31053                                                       bear   1
## 31054                                                       good   1
## 31055                                                       life   1
## 31056                                                        nyc   1
## 31057                                                      order   1
## 31058                                                     philly   1
## 31059                                                        put   1
## 31060                                                     starve   1
## 31061                                                    suggest   1
## 31062                                                       tell   1
## 31063                                                       town   1
## 31064                                                   sandwich   1
## 31065                                                     artery   1
## 31066                                                     awning   1
## 31067                                                      basic   1
## 31068                                                      bland   1
## 31069                                                      bread   1
## 31070                                                      build   1
## 31071                                                   cannolis   1
## 31072                                                         go   1
## 31073                                                     grease   1
## 31074                                                     greasy   1
## 31075                                                    gristle   1
## 31076                                                       loud   1
## 31077                                                      lousy   1
## 31078                                                       meat   1
## 31079                                                     meatie   1
## 31080                                                       melt   1
## 31081                                                       numb   1
## 31082                                                    outdoor   1
## 31083                                                        pat   1
## 31084                                                 photograph   1
## 31085                                                    plastic   1
## 31086                                                     plenty   1
## 31087                                                      radio   1
## 31088                                                       sign   1
## 31089                                                       wall   1
## 31090                                                       whiz   1
## 31091                                                       grub   1
## 31092                                                  nonesense   1
## 31093                                                       star   1
## 31094                                                         go   1
## 31095                                                       know   1
## 31096                                                    perfect   1
## 31097                                                      thing   1
## 31098                                                       time   1
## 31099                                                    already   1
## 31100                                                        ass   1
## 31101                                               incidentally   1
## 31102                                                       joey   1
## 31103                                                      leave   1
## 31104                                                       tail   1
## 31105                                                  tastewise   1
## 31106                                                        use   1
## 31107                                                      worth   1
## 31108                                                     behind   1
## 31109                                                       lion   1
## 31110                                                     decide   1
## 31111                                                         do   1
## 31112                                                      drive   1
## 31113                                                     friend   1
## 31114                                                        get   1
## 31115                                                       good   1
## 31116                                                       hope   1
## 31117                                                       like   1
## 31118                                                       many   1
## 31119                                                         md   1
## 31120                                                      never   1
## 31121                                                      order   1
## 31122                                                       rave   1
## 31123                                                  recommend   1
## 31124                                                   schedule   1
## 31125                                                       side   1
## 31126                                                     snatch   1
## 31127                                                     supply   1
## 31128                                                       take   1
## 31129                                                      texas   1
## 31130                                                        try   1
## 31131                                                       whos   1
## 31132                                                      light   1
## 31133                                                      roast   1
## 31134                                                       cafe   1
## 31135                                                      shack   1
## 31136                                                      along   1
## 31137                                                     doesnt   1
## 31138                                                      genos   1
## 31139                                                       good   1
## 31140                                                       head   1
## 31141                                                       make   1
## 31142                                                        old   1
## 31143                                                        sit   1
## 31144                                                      smile   1
## 31145                                                      stand   1
## 31146                                                       town   1
## 31147                                                        try   1
## 31148                                                      whole   1
## 31149                                                     window   1
## 31150                                                      taste   1
## 31151                                                       care   1
## 31152                                                     cheese   1
## 31153                                                     friend   1
## 31154                                                     genius   1
## 31155                                                       soda   1
## 31156                                                        tap   1
## 31157                                                      dirty   1
## 31158                                                       take   1
## 31159                                                  something   1
## 31160                                                     greasy   1
## 31161                                                      order   1
## 31162                                                      steak   1
## 31163                                               againinstead   1
## 31164                                                      basic   1
## 31165                                                     batman   1
## 31166                                                        big   1
## 31167                                                      bigot   1
## 31168                                                  boyfriend   1
## 31169                                                        can   1
## 31170                                                     cheese   1
## 31171                                                cheesesteak   1
## 31172                                                       even   1
## 31173                                                      favor   1
## 31174                                                        fcc   1
## 31175                                                      final   1
## 31176                                                      front   1
## 31177                                                       game   1
## 31178                                                       geno   1
## 31179                                                      genos   1
## 31180                                                        get   1
## 31181                                                       give   1
## 31182                                                        hey   1
## 31183                                                       hope   1
## 31184                                                       hype   1
## 31185                                                         id   1
## 31186                                                         im   1
## 31187                                                       just   1
## 31188                                                       like   1
## 31189                                                       meat   1
## 31190                                                      nasty   1
## 31191                                                  offensive   1
## 31192                                                       onto   1
## 31193                                                     racist   1
## 31194                                                    receive   1
## 31195                                                     review   1
## 31196                                                       roll   1
## 31197                                                        rot   1
## 31198                                                        sad   1
## 31199                                                        sir   1
## 31200                                                      stale   1
## 31201                                                    tourist   1
## 31202                                                     window   1
## 31203                                                       work   1
## 31204                                                       turn   1
## 31205                                                      bread   1
## 31206                                                     cheese   1
## 31207                                                cheesesteak   1
## 31208                                            cheesesteaksbut   1
## 31209                                                        cut   1
## 31210                                                 experience   1
## 31211                                                     foodgo   1
## 31212                                                      genos   1
## 31213                                                    hoagies   1
## 31214                                                       holy   1
## 31215                                                         im   1
## 31216                                                     little   1
## 31217                                                   location   1
## 31218                                                       meat   1
## 31219                                                      model   1
## 31220                                                   mushroom   1
## 31221                                                  obnoxious   1
## 31222                                                 overpriced   1
## 31223                                                personality   1
## 31224                                                    product   1
## 31225                                                     review   1
## 31226                                                      roast   1
## 31227                                                    service   1
## 31228                                                      steak   1
## 31229                                                    sticker   1
## 31230                                                      stuff   1
## 31231                                                       meat   1
## 31232                                                     racist   1
## 31233                                                  attitutde   1
## 31234                                                        hot   1
## 31235                                                          2   1
## 31236                                                  authentic   1
## 31237                                                     cheese   1
## 31238                                                 constantly   1
## 31239                                                       even   1
## 31240                                                  flavorful   1
## 31241                                                     greasy   1
## 31242                                                       hard   1
## 31243                                                       just   1
## 31244                                                         nd   1
## 31245                                                    nothing   1
## 31246                                                      order   1
## 31247                                                      place   1
## 31248                                                       real   1
## 31249                                                     return   1
## 31250                                                      since   1
## 31251                                                      steak   1
## 31252                                                       true   1
## 31253                                                       will   1
## 31254                                                        yes   1
## 31255                                                        lol   1
## 31256                                                        may   1
## 31257                                                     secret   1
## 31258                                                  genospats   1
## 31259                                                     accord   1
## 31260                                                      genos   1
## 31261                                                       trip   1
## 31262                                                       wall   1
## 31263                                              establishment   1
## 31264                                                  originate   1
## 31265                                                      place   1
## 31266                                                 absolutely   1
## 31267                                                      annoy   1
## 31268                                                 assumption   1
## 31269                                                       busy   1
## 31270                                                 cheesewhiz   1
## 31271                                                       come   1
## 31272                                                     corner   1
## 31273                                                       even   1
## 31274                                                       fast   1
## 31275                                                     friend   1
## 31276                                                       gang   1
## 31277                                                    healthy   1
## 31278                                                      heres   1
## 31279                                                    involve   1
## 31280                                                      johns   1
## 31281                                                       line   1
## 31282                                                        one   1
## 31283                                                      onion   1
## 31284                                                    overall   1
## 31285                                                 overcharge   1
## 31286                                                       part   1
## 31287                                                     philly   1
## 31288                                                      place   1
## 31289                                                       plus   1
## 31290                                                      price   1
## 31291                                                    rivalry   1
## 31292                                                    signage   1
## 31293                                                     slowly   1
## 31294                                                      sound   1
## 31295                                                       star   1
## 31296                                                      steak   1
## 31297                                                      thats   1
## 31298                                                       want   1
## 31299                                                   whatever   1
## 31300                                                       shop   1
## 31301                                                       tell   1
## 31302                                                   sandwich   1
## 31303                                                      taste   1
## 31304                                                     orange   1
## 31305                                                  saltiness   1
## 31306                                                     spread   1
## 31307                                                    texture   1
## 31308                                                       hard   1
## 31309                                                    another   1
## 31310                                                     cheese   1
## 31311                                                     creamy   1
## 31312                                                       dine   1
## 31313                                                      equal   1
## 31314                                                        fun   1
## 31315                                                  genospats   1
## 31316                                                         go   1
## 31317                                                    hateful   1
## 31318                                                   lifetime   1
## 31319                                                    monster   1
## 31320                                                       nice   1
## 31321                                                       soft   1
## 31322                                                    someone   1
## 31323                                                     subpar   1
## 31324                                                      total   1
## 31325                                                       yelp   1
## 31326                                                        get   1
## 31327                                                         go   1
## 31328                                                       want   1
## 31329                                                      genos   1
## 31330                                                      price   1
## 31331                                                    similar   1
## 31332                                                        two   1
## 31333                                                    unheard   1
## 31334                                                        smh   1
## 31335                                                       want   1
## 31336                                                        etc   1
## 31337                                                       back   1
## 31338                                                         th   1
## 31339                                                    hostile   1
## 31340                                                   business   1
## 31341                                              establishment   1
## 31342                                                       stop   1
## 31343                                                    airport   1
## 31344                                                       chop   1
## 31345                                                     season   1
## 31346                                                        mad   1
## 31347                                                       just   1
## 31348                                                    recycle   1
## 31349                                                     flavor   1
## 31350                                                      fresh   1
## 31351                                                       full   1
## 31352                                                        hot   1
## 31353                                                     inside   1
## 31354                                                       meat   1
## 31355                                                      nacho   1
## 31356                                                       save   1
## 31357                                                    service   1
## 31358                                                      taste   1
## 31359                                                    texture   1
## 31360                                                       wish   1
## 31361                                                 atmosphere   1
## 31362                                                cheesesteak   1
## 31363                                                      cheez   1
## 31364                                                     cherry   1
## 31365                                                      every   1
## 31366                                                      genos   1
## 31367                                                        hey   1
## 31368                                                        hot   1
## 31369                                                    however   1
## 31370                                                         id   1
## 31371                                                       like   1
## 31372                                                       make   1
## 31373                                                    nothing   1
## 31374                                                    outside   1
## 31375                                                        pat   1
## 31376                                                      salty   1
## 31377                                                      serve   1
## 31378                                                      soggy   1
## 31379                                                        way   1
## 31380                                                         id   1
## 31381                                                       look   1
## 31382                                                        win   1
## 31383                                                   although   1
## 31384                                                         do   1
## 31385                                                       even   1
## 31386                                                       many   1
## 31387                                                       yelp   1
## 31388                                                      aware   1
## 31389                                                       cash   1
## 31390                                                      think   1
## 31391                                                      genos   1
## 31392                                                      speak   1
## 31393                                                      steak   1
## 31394                                                      youre   1
## 31395                                                 appreciate   1
## 31396                                                       food   1
## 31397                                                        fry   1
## 31398                                                       name   1
## 31399                                                       half   1
## 31400                                                  cafeteria   1
## 31401                                                    compare   1
## 31402                                                     ghetto   1
## 31403                                                 incredibly   1
## 31404                                                     middle   1
## 31405                                                       name   1
## 31406                                                       park   1
## 31407                                                       road   1
## 31408                                                     sample   1
## 31409                                                       wish   1
## 31410                                                        two   1
## 31411                                                    brother   1
## 31412                                                    rivalry   1
## 31413                                                     across   1
## 31414                                                      genos   1
## 31415                                                      happy   1
## 31416                                                    helpful   1
## 31417                                                      order   1
## 31418                                                        pat   1
## 31419                                                      shoot   1
## 31420                                                     strand   1
## 31421                                                     anyway   1
## 31422                                                       area   1
## 31423                                                      blind   1
## 31424                                                       busy   1
## 31425                                                        car   1
## 31426                                                       cash   1
## 31427                                                      creep   1
## 31428                                                     depend   1
## 31429                                                      didnt   1
## 31430                                                   downfall   1
## 31431                                              establishment   1
## 31432                                                exceptional   1
## 31433                                                     expect   1
## 31434                                                     famous   1
## 31435                                                     flavor   1
## 31436                                                       food   1
## 31437                                                      freak   1
## 31438                                                      genos   1
## 31439                                                       good   1
## 31440                                                       hand   1
## 31441                                                       help   1
## 31442                                                     indoor   1
## 31443                                                       just   1
## 31444                                                       kudo   1
## 31445                                                       late   1
## 31446                                                       make   1
## 31447                                                      maybe   1
## 31448                                                 occasional   1
## 31449                                                        one   1
## 31450                                                   onlooker   1
## 31451                                                        pat   1
## 31452                                               philadelphia   1
## 31453                                                      place   1
## 31454                                                   possibly   1
## 31455                                                    process   1
## 31456                                                   sandwich   1
## 31457                                                    satisfy   1
## 31458                                                     single   1
## 31459                                                        sit   1
## 31460                                                      table   1
## 31461                                                       time   1
## 31462                                                       type   1
## 31463                                                     window   1
## 31464                                                cheesesteak   1
## 31465                                                       good   1
## 31466                                                       king   1
## 31467                                                    phillys   1
## 31468                                                     though   1
## 31469                                                        use   1
## 31470                                                    display   1
## 31471                                                        dog   1
## 31472                                                       joke   1
## 31473                                                      xenos   1
## 31474                                                      paper   1
## 31475                                                     cheese   1
## 31476                                                      avoid   1
## 31477                                                  complaint   1
## 31478                                                    italian   1
## 31479                                                       line   1
## 31480                                                       need   1
## 31481                                                        pat   1
## 31482                                                    texture   1
## 31483                                                      wasnt   1
## 31484                                                       work   1
## 31485                                                          2   1
## 31486                                                     almost   1
## 31487                                                      bread   1
## 31488                                                        can   1
## 31489                                                     cookie   1
## 31490                                                 definitely   1
## 31491                                                     enough   1
## 31492                                                  flavorful   1
## 31493                                                        fry   1
## 31494                                                        gem   1
## 31495                                                       give   1
## 31496                                                       love   1
## 31497                                                       much   1
## 31498                                                        pat   1
## 31499                                                       pile   1
## 31500                                                     season   1
## 31501                                                      still   1
## 31502                                                       time   1
## 31503                                                        way   1
## 31504                                                       weve   1
## 31505                                                       whiz   1
## 31506                                                      great   1
## 31507                                                    believe   1
## 31508                                                        pat   1
## 31509                                                      place   1
## 31510                                                      wasnt   1
## 31511                                                      bread   1
## 31512                                                       feel   1
## 31513                                                    however   1
## 31514                                                       just   1
## 31515                                                       edge   1
## 31516                                                      fresh   1
## 31517                                                        man   1
## 31518                                                    outside   1
## 31519                                                        see   1
## 31520                                                    similar   1
## 31521                                                      steak   1
## 31522                                                      honda   1
## 31523                                                       load   1
## 31524                                                        man   1
## 31525                                                       look   1
## 31526                                                      clean   1
## 31527                                                       cash   1
## 31528                                                       good   1
## 31529                                                       many   1
## 31530                                                  primarily   1
## 31531                                                      paper   1
## 31532                                                   sandwich   1
## 31533                                                      order   1
## 31534                                                         do   1
## 31535                                                        hit   1
## 31536                                                     choice   1
## 31537                                                         do   1
## 31538                                                      genos   1
## 31539                                                       good   1
## 31540                                                     philly   1
## 31541                                                       trip   1
## 31542                                                      youre   1
## 31543                                                        art   1
## 31544                                                    concept   1
## 31545                                                    delight   1
## 31546                                                     expert   1
## 31547                                                masterpiece   1
## 31548                                                     follow   1
## 31549                                                  offensive   1
## 31550                                                     accept   1
## 31551                                                   apparent   1
## 31552                                                      chomp   1
## 31553                                                     course   1
## 31554                                                         dc   1
## 31555                                                 definitely   1
## 31556                                                   devotion   1
## 31557                                                  different   1
## 31558                                                     lively   1
## 31559                                                  otherwise   1
## 31560                                                  perfectly   1
## 31561                                                        run   1
## 31562                                                      shock   1
## 31563                                                       type   1
## 31564                                                       want   1
## 31565                                                   actually   1
## 31566                                                       also   1
## 31567                                                    blanket   1
## 31568                                                    counter   1
## 31569                                                   dispense   1
## 31570                                                      drink   1
## 31571                                                      empty   1
## 31572                                                       fast   1
## 31573                                                       full   1
## 31574                                                       give   1
## 31575                                                       hand   1
## 31576                                                        ice   1
## 31577                                                       like   1
## 31578                                                       look   1
## 31579                                                       make   1
## 31580                                                       mind   1
## 31581                                                    nothing   1
## 31582                                                       oops   1
## 31583                                                        pat   1
## 31584                                                       pour   1
## 31585                                                     powder   1
## 31586                                                        say   1
## 31587                                                     skinny   1
## 31588                                                        tea   1
## 31589                                                      wasnt   1
## 31590                                                        eat   1
## 31591                                                     feeler   1
## 31592                                                       walk   1
## 31593                                                     napkin   1
## 31594                                                    tourist   1
## 31595                                                   hangover   1
## 31596                                           saltgreasecheese   1
## 31597                                                        get   1
## 31598                                                       real   1
## 31599                                                      genos   1
## 31600                                                       life   1
## 31601                                                        pat   1
## 31602                                                      place   1
## 31603                                                        see   1
## 31604                                                       cook   1
## 31605                                                     remind   1
## 31606                                                      curly   1
## 31607                                                     active   1
## 31608                                                immigration   1
## 31609                                                    ranking   1
## 31610                                                       rate   1
## 31611                                                  situation   1
## 31612                                                      state   1
## 31613                                                      three   1
## 31614                                                      leave   1
## 31615                                                       live   1
## 31616                                                  porcelain   1
## 31617                                                      price   1
## 31618                                                        run   1
## 31619                                                      visit   1
## 31620                                                   customer   1
## 31621                                                    finally   1
## 31622                                                     follow   1
## 31623                                                     friend   1
## 31624                                                    furious   1
## 31625                                                        guy   1
## 31626                                                    tourist   1
## 31627                                                      whole   1
## 31628                                                     window   1
## 31629                                                      level   1
## 31630                                                        non   1
## 31631                                                    service   1
## 31632                                                    visible   1
## 31633                                                      price   1
## 31634                                                    topping   1
## 31635                                                 acceptable   1
## 31636                                                     across   1
## 31637                                                     anyway   1
## 31638                                                  apologize   1
## 31639                                                       away   1
## 31640                                                       base   1
## 31641                                                 beforelike   1
## 31642                                                     behind   1
## 31643                                                    believe   1
## 31644                                                     bother   1
## 31645                                                        buy   1
## 31646                                                       cant   1
## 31647                                                       care   1
## 31648                                                  certainly   1
## 31649                                                cheesesteak   1
## 31650                                               cheesesteaks   1
## 31651                                                    combine   1
## 31652                                                 competitor   1
## 31653                                                    confuse   1
## 31654                                                   convince   1
## 31655                                                       cool   1
## 31656                                                     couple   1
## 31657                                                   customer   1
## 31658                                                    deserve   1
## 31659                                                    despite   1
## 31660                                                       drop   1
## 31661                                                 especially   1
## 31662                                              establishment   1
## 31663                                                      every   1
## 31664                                                   everyday   1
## 31665                                                      exist   1
## 31666                                                 experience   1
## 31667                                                     family   1
## 31668                                                      first   1
## 31669                                                     flashy   1
## 31670                                                     follow   1
## 31671                                                       food   1
## 31672                                                   forcefed   1
## 31673                                                      front   1
## 31674                                                      funny   1
## 31675                                                        get   1
## 31676                                                         go   1
## 31677                                                       hold   1
## 31678                                                       huge   1
## 31679                                                        ill   1
## 31680                                                         im   1
## 31681                                                       just   1
## 31682                                                       know   1
## 31683                                                       lady   1
## 31684                                                       lead   1
## 31685                                                       load   1
## 31686                                                        mad   1
## 31687                                                       make   1
## 31688                                                        may   1
## 31689                                                       meet   1
## 31690                                                      offer   1
## 31691                                                      order   1
## 31692                                                        pay   1
## 31693                                                     people   1
## 31694                                                     philly   1
## 31695                                                       poor   1
## 31696                                                   previous   1
## 31697                                                     public   1
## 31698                                                    quickly   1
## 31699                                                   racially   1
## 31700                                                    respect   1
## 31701                                                     rudely   1
## 31702                                                   sandwich   1
## 31703                                                        sit   1
## 31704                                                      stale   1
## 31705                                                      stand   1
## 31706                                                       stay   1
## 31707                                                      still   1
## 31708                                                     street   1
## 31709                                                      taste   1
## 31710                                                      tasty   1
## 31711                                                   terrible   1
## 31712                                                      thank   1
## 31713                                                    tourist   1
## 31714                                                       turn   1
## 31715                                                       wait   1
## 31716                                                       walk   1
## 31717                                                       want   1
## 31718                                                      whole   1
## 31719                                                       wife   1
## 31720                                                       wont   1
## 31721                                                      youre   1
## 31722                                                 especially   1
## 31723                                              besssssthands   1
## 31724                                                   sandwich   1
## 31725                                                     cheese   1
## 31726                                                       love   1
## 31727                                                   actually   1
## 31728                                                      along   1
## 31729                                                       also   1
## 31730                                                        ask   1
## 31731                                                       bare   1
## 31732                                                       bite   1
## 31733                                                   bitesize   1
## 31734                                                      buggy   1
## 31735                                                      chewy   1
## 31736                                                       come   1
## 31737                                                       cost   1
## 31738                                                     crispy   1
## 31739                                                         do   1
## 31740                                                        dry   1
## 31741                                                       feel   1
## 31742                                                     flavor   1
## 31743                                                  flavorful   1
## 31744                                                       four   1
## 31745                                                        fry   1
## 31746                                                       fund   1
## 31747                                                        get   1
## 31748                                                    gristle   1
## 31749                                                       hour   1
## 31750                                                       just   1
## 31751                                                      knife   1
## 31752                                                     little   1
## 31753                                                   loserhow   1
## 31754                                                       meet   1
## 31755                                                        mix   1
## 31756                                                        pat   1
## 31757                                                     pickle   1
## 31758                                                      place   1
## 31759                                                       pole   1
## 31760                                                     prefer   1
## 31761                                                   properly   1
## 31762                                                        put   1
## 31763                                                    quality   1
## 31764                                                     rather   1
## 31765                                                       rest   1
## 31766                                                   richness   1
## 31767                                                      right   1
## 31768                                                    rubbery   1
## 31769                                                      saute   1
## 31770                                                     season   1
## 31771                                                      shred   1
## 31772                                                      slice   1
## 31773                                                   slightly   1
## 31774                                                     sloppy   1
## 31775                                                      small   1
## 31776                                                       spin   1
## 31777                                                      still   1
## 31778                                                        sub   1
## 31779                                                      third   1
## 31780                                                      throw   1
## 31781                                                        two   1
## 31782                                                    updiced   1
## 31783                                                      wasnt   1
## 31784                                                       whiz   1
## 31785                                                     winner   1
## 31786                                                        wtf   1
## 31787                                                      amuse   1
## 31788                                                      funny   1
## 31789                                                      genos   1
## 31790                                                        guy   1
## 31791                                                       idea   1
## 31792                                                     little   1
## 31793                                                      place   1
## 31794                                                      retro   1
## 31795                                                    rivalry   1
## 31796                                                    plaster   1
## 31797                                                      thick   1
## 31798                                                       good   1
## 31799                                                       cook   1
## 31800                                                       damn   1
## 31801                                                         do   1
## 31802                                                   everyone   1
## 31803                                                 everything   1
## 31804                                                       feel   1
## 31805                                                        get   1
## 31806                                                       love   1
## 31807                                                    machine   1
## 31808                                                       meat   1
## 31809                                                       real   1
## 31810                                                       roll   1
## 31811                                                      thats   1
## 31812                                                     theres   1
## 31813                                                          u   1
## 31814                                                       want   1
## 31815                                                      wasnt   1
## 31816                                                      youre   1
## 31817                                                      blink   1
## 31818                                             interpretation   1
## 31819                                                       good   1
## 31820                                                   sandwich   1
## 31821                                                       food   1
## 31822                                                     middle   1
## 31823                                                    brother   1
## 31824                                                       come   1
## 31825                                                     decide   1
## 31826                                                      drink   1
## 31827                                                      every   1
## 31828                                                       grow   1
## 31829                                                       like   1
## 31830                                                       love   1
## 31831                                                     monday   1
## 31832                                                   recently   1
## 31833                                                       take   1
## 31834                                                        try   1
## 31835                                                        use   1
## 31836                                                       whos   1
## 31837                                                         go   1
## 31838                                                     really   1
## 31839                                                        say   1
## 31840                                                     really   1
## 31841                                                    allergy   1
## 31842                                                    product   1
## 31843                                                       name   1
## 31844                                                   actually   1
## 31845                                                    believe   1
## 31846                                                        far   1
## 31847                                                     forget   1
## 31848                                                        ftw   1
## 31849                                                      genos   1
## 31850                                                      henry   1
## 31851                                               ishkabibbles   1
## 31852                                                        joe   1
## 31853                                                     little   1
## 31854                                                      maybe   1
## 31855                                                       meat   1
## 31856                                                        now   1
## 31857                                                         pa   1
## 31858                                                        say   1
## 31859                                                       skip   1
## 31860                                                     theyre   1
## 31861                                                       tony   1
## 31862                                                       wont   1
## 31863                                                       make   1
## 31864                                                        try   1
## 31865                                                       mama   1
## 31866                                                      place   1
## 31867                                                      steak   1
## 31868                                                        sub   1
## 31869                                                        new   1
## 31870                                                       also   1
## 31871                                                   anything   1
## 31872                                                     cheese   1
## 31873                                                      close   1
## 31874                                                  efficient   1
## 31875                                                  expensive   1
## 31876                                                       fine   1
## 31877                                                       geno   1
## 31878                                                       hair   1
## 31879                                                     hippie   1
## 31880                                                       hype   1
## 31881                                               intersection   1
## 31882                                                        let   1
## 31883                                                       mall   1
## 31884                                                       meat   1
## 31885                                                       near   1
## 31886                                                      penny   1
## 31887                                                      place   1
## 31888                                                     really   1
## 31889                                                      right   1
## 31890                                                       rude   1
## 31891                                                        sad   1
## 31892                                                         sh   1
## 31893                                                      shame   1
## 31894                                                       show   1
## 31895                                                      sorry   1
## 31896                                                      steak   1
## 31897                                                  teasethat   1
## 31898                                                      thats   1
## 31899                                                     theyre   1
## 31900                                                      thing   1
## 31901                                                      yummy   1
## 31902                                                     across   1
## 31903                                                     cheese   1
## 31904                                                       hand   1
## 31905                                                      music   1
## 31906                                                      front   1
## 31907                                                  delicious   1
## 31908                                                       good   1
## 31909                                                       park   1
## 31910                                                        new   1
## 31911                                                      block   1
## 31912                                                    happily   1
## 31913                                                         oh   1
## 31914                                                      close   1
## 31915                                                  faulkners   1
## 31916                                                   faulkner   1
## 31917                                                       take   1
## 31918                                                      visit   1
## 31919                                                       want   1
## 31920                                                      steak   1
## 31921                                                        ask   1
## 31922                                                      favor   1
## 31923                                                        get   1
## 31924                                                       mfer   1
## 31925                                                        say   1
## 31926                                                       take   1
## 31927                                                  chocolate   1
## 31928                                                     figure   1
## 31929                                                        get   1
## 31930                                                       know   1
## 31931                                                     little   1
## 31932                                                     orange   1
## 31933                                                  otherwise   1
## 31934                                                       turn   1
## 31935                                                     merica   1
## 31936                                                     cheese   1
## 31937                                                    expense   1
## 31938                                                       good   1
## 31939                                                        hot   1
## 31940                                                       near   1
## 31941                                                   sandwich   1
## 31942                                                   terrible   1
## 31943                                                      thing   1
## 31944                                                     cheese   1
## 31945                                                    ketchup   1
## 31946                                                      genos   1
## 31947                                                       just   1
## 31948                                                 absolutely   1
## 31949                                                      first   1
## 31950                                                        get   1
## 31951                                                       just   1
## 31952                                                       make   1
## 31953                                                   absolute   1
## 31954                                                desperately   1
## 31955                                                      didnt   1
## 31956                                                     family   1
## 31957                                                         go   1
## 31958                                                       good   1
## 31959                                                     handle   1
## 31960                                                    impress   1
## 31961                                                        pat   1
## 31962                                                    preffer   1
## 31963                                                     really   1
## 31964                                                   recently   1
## 31965                                                        say   1
## 31966                                                       take   1
## 31967                                                      three   1
## 31968                                                      visit   1
## 31969                                                       wife   1
## 31970                                                      johns   1
## 31971                                                       girl   1
## 31972                                                     dealer   1
## 31973                                                 absolutely   1
## 31974                                                        act   1
## 31975                                                    airline   1
## 31976                                                     around   1
## 31977                                                     arrive   1
## 31978                                                        avg   1
## 31979                                                      avoid   1
## 31980                                                       bear   1
## 31981                                                 beforehand   1
## 31982                                                       bite   1
## 31983                                                        boy   1
## 31984                                                      bread   1
## 31985                                                   business   1
## 31986                                                      carry   1
## 31987                                               cheesesteaks   1
## 31988                                                cheeseteaks   1
## 31989                                                    classic   1
## 31990                                                      combo   1
## 31991                                                       come   1
## 31992                                                    compare   1
## 31993                                                 completely   1
## 31994                                                    couldnt   1
## 31995                                                      didnt   1
## 31996                                                 difference   1
## 31997                                                        due   1
## 31998                                                      dying   1
## 31999                                                       easy   1
## 32000                                                     either   1
## 32001                                                       ever   1
## 32002                                                      every   1
## 32003                                                   everyday   1
## 32004                                                  excellent   1
## 32005                                                     except   1
## 32006                                                       fair   1
## 32007                                                     family   1
## 32008                                                    finally   1
## 32009                                                       find   1
## 32010                                                      first   1
## 32011                                                     flavor   1
## 32012                                                     flight   1
## 32013                                                       fool   1
## 32014                                                   forecast   1
## 32015                                                     friend   1
## 32016                                                       game   1
## 32017                                                       geno   1
## 32018                                                     george   1
## 32019                                                       give   1
## 32020                                                       half   1
## 32021                                                       hell   1
## 32022                                                     highly   1
## 32023                                                  hopefully   1
## 32024                                                     hungry   1
## 32025                                                    husband   1
## 32026                                                    impress   1
## 32027                                                        ive   1
## 32028                                                        kid   1
## 32029                                                      knock   1
## 32030                                                       know   1
## 32031                                                         lo   1
## 32032                                                       long   1
## 32033                                                       look   1
## 32034                                                       love   1
## 32035                                                      lucky   1
## 32036                                                      lunch   1
## 32037                                                        man   1
## 32038                                                       many   1
## 32039                                                       melt   1
## 32040                                                     nephew   1
## 32041                                                      never   1
## 32042                                                        new   1
## 32043                                                         oh   1
## 32044                                                       okay   1
## 32045                                                        one   1
## 32046                                                      onion   1
## 32047                                                        opt   1
## 32048                                                    outside   1
## 32049                                                       park   1
## 32050                                                       pile   1
## 32051                                                      place   1
## 32052                                                       plus   1
## 32053                                                      point   1
## 32054                                                        put   1
## 32055                                                     racism   1
## 32056                                                     rather   1
## 32057                                                     really   1
## 32058                                             reconnaissance   1
## 32059                                                        say   1
## 32060                                                    seattle   1
## 32061                                                      serve   1
## 32062                                                    service   1
## 32063                                                     shovel   1
## 32064                                                       side   1
## 32065                                                     sonnys   1
## 32066                                                      steak   1
## 32067                                                     stroll   1
## 32068                                                       talk   1
## 32069                                                      taste   1
## 32070                                                      thats   1
## 32071                                                       time   1
## 32072                                                    totally   1
## 32073                                                       tour   1
## 32074                                                       town   1
## 32075                                                unanimously   1
## 32076                                              unfortunately   1
## 32077                                                     upside   1
## 32078                                                      wasnt   1
## 32079                                                        way   1
## 32080                                                        wed   1
## 32081                                                    western   1
## 32082                                                       wife   1
## 32083                                                     window   1
## 32084                                                    without   1
## 32085                                                       work   1
## 32086                                                     worker   1
## 32087                                                    wouldnt   1
## 32088                                                        yet   1
## 32089                                                     steves   1
## 32090                                                      place   1
## 32091                                                 brightness   1
## 32092                                                     review   1
## 32093                                                         th   1
## 32094                                                     patron   1
## 32095                                                     outlet   1
## 32096                                                  stalemore   1
## 32097                                                     matter   1
## 32098                                                     zombie   1
## 32099                                                    portion   1
## 32100                                                      catch   1
## 32101                                                      light   1
## 32102                                                 california   1
## 32103                                                        pat   1
## 32104                                                       view   1
## 32105                                                        fox   1
## 32106                                                      meter   1
## 32107                                                      awful   1
## 32108                                                        ask   1
## 32109                                                     boston   1
## 32110                                                  carryouts   1
## 32111                                                    chinese   1
## 32112                                                      enjoy   1
## 32113                                                       give   1
## 32114                                                         go   1
## 32115                                                       good   1
## 32116                                                     honest   1
## 32117                                                       know   1
## 32118                                                       land   1
## 32119                                                       last   1
## 32120                                                    luckily   1
## 32121                                                       make   1
## 32122                                                      month   1
## 32123                                                        new   1
## 32124                                                         no   1
## 32125                                                        nyc   1
## 32126                                                        one   1
## 32127                                               philadelphia   1
## 32128                                                      place   1
## 32129                                                        see   1
## 32130                                                  something   1
## 32131                                                      steak   1
## 32132                                                    support   1
## 32133                                                     theres   1
## 32134                                                   virginia   1
## 32135                                                    aceptar   1
## 32136                                                      carne   1
## 32137                                                    crédito   1
## 32138                                                         la   1
## 32139                                                      perro   1
## 32140                                               philadelphia   1
## 32141                                                     probar   1
## 32142                                                         su   1
## 32143                                                       todo   1
## 32144                                                cheesesteak   1
## 32145                                                      child   1
## 32146                                                     clever   1
## 32147                                                        cop   1
## 32148                                                         go   1
## 32149                                                       good   1
## 32150                                             hormoneladened   1
## 32151                                               intersection   1
## 32152                                                        ive   1
## 32153                                                       play   1
## 32154                                                      right   1
## 32155                                                        set   1
## 32156                                                     theyve   1
## 32157                                                     unless   1
## 32158                                                        yes   1
## 32159                                                      tense   1
## 32160                                                realization   1
## 32161                                                      leave   1
## 32162                                                    airfare   1
## 32163                                                   allnight   1
## 32164                                                    alright   1
## 32165                                                    america   1
## 32166                                                   amorosos   1
## 32167                                                    anymore   1
## 32168                                                     anyway   1
## 32169                                                   anywhere   1
## 32170                                                 apparently   1
## 32171                                                attitudeswe   1
## 32172                                                      bread   1
## 32173                                                    breaker   1
## 32174                                                   bullshit   1
## 32175                                                   business   1
## 32176                                                    cashier   1
## 32177                                                    disrupt   1
## 32178                                                   downtown   1
## 32179                                                      drink   1
## 32180                                                    english   1
## 32181                                                 especially   1
## 32182                                                        far   1
## 32183                                                  flavorall   1
## 32184                                                       food   1
## 32185                                                       four   1
## 32186                                                        fry   1
## 32187                                                        get   1
## 32188                                                         go   1
## 32189                                                      gross   1
## 32190                                                        guy   1
## 32191                                                       haha   1
## 32192                                                     highly   1
## 32193                                                        hot   1
## 32194                                                       hype   1
## 32195                                                  important   1
## 32196                                                       just   1
## 32197                                                        let   1
## 32198                                                      local   1
## 32199                                                        lot   1
## 32200                                                        low   1
## 32201                                                       mean   1
## 32202                                                   meansure   1
## 32203                                                      order   1
## 32204                                                     philly   1
## 32205                                                      phlly   1
## 32206                                                    provide   1
## 32207                                                        put   1
## 32208                                                     racism   1
## 32209                                                     recent   1
## 32210                                                     record   1
## 32211                                                    service   1
## 32212                                                      south   1
## 32213                                                      staff   1
## 32214                                                     stupid   1
## 32215                                                       tell   1
## 32216                                                        use   1
## 32217                                                    visitor   1
## 32218                                                    without   1
## 32219                                               ridiculously   1
## 32220                                                       line   1
## 32221                                                     deluca   1
## 32222                                                cheesesteak   1
## 32223                                                       miss   1
## 32224                                                    garbage   1
## 32225                                                     hahaha   1
## 32226                                                     oppose   1
## 32227                                                     rattle   1
## 32228                                                     sample   1
## 32229                                               cheesesteaks   1
## 32230                                                  cheesteak   1
## 32231                                                       come   1
## 32232                                                   everyone   1
## 32233                                                      guess   1
## 32234                                                         im   1
## 32235                                                      local   1
## 32236                                                     locate   1
## 32237                                                       make   1
## 32238                                                       many   1
## 32239                                                    mention   1
## 32240                                                        one   1
## 32241                                                      order   1
## 32242                                               philadelphia   1
## 32243                                                     prefer   1
## 32244                                                  primarily   1
## 32245                                                        pro   1
## 32246                                                       real   1
## 32247                                                     stupid   1
## 32248                                                      thats   1
## 32249                                                yannylaurel   1
## 32250                                                     prefer   1
## 32251                                                       cash   1
## 32252                                                      video   1
## 32253                                                        pat   1
## 32254                                                  sandwhich   1
## 32255                                                    compete   1
## 32256                                                 completely   1
## 32257                                                       crow   1
## 32258                                                     deduct   1
## 32259                                                      genos   1
## 32260                                                        one   1
## 32261                                                    overdue   1
## 32262                                               philadelphia   1
## 32263                                                      place   1
## 32264                                                     really   1
## 32265                                                      visit   1
## 32266                                                      wasnt   1
## 32267                                                    without   1
## 32268                                                persistence   1
## 32269                                                       want   1
## 32270                                                     please   1
## 32271                                                  afternoon   1
## 32272                                                  christmas   1
## 32273                                                       line   1
## 32274                                                       sure   1
## 32275                                                      greet   1
## 32276                                                        itd   1
## 32277                                                      bunch   1
## 32278                                                       will   1
## 32279                                                        ask   1
## 32280                                                        big   1
## 32281                                                       burn   1
## 32282                                               cheesesteaks   1
## 32283                                                     cherry   1
## 32284                                                      chewy   1
## 32285                                                   consider   1
## 32286                                               conversation   1
## 32287                                                    couldnt   1
## 32288                                                        cut   1
## 32289                                                 definitely   1
## 32290                                                    deserve   1
## 32291                                                   distance   1
## 32292                                                      drink   1
## 32293                                                     enough   1
## 32294                                                  entertain   1
## 32295                                              experiencedit   1
## 32296                                                     flavor   1
## 32297                                                     greasy   1
## 32298                                                      guess   1
## 32299                                                    honetly   1
## 32300                                                        hot   1
## 32301                                                    however   1
## 32302                                                      juice   1
## 32303                                                       kind   1
## 32304                                                       line   1
## 32305                                                       long   1
## 32306                                                        lot   1
## 32307                                                       main   1
## 32308                                                       many   1
## 32309                                                  offensive   1
## 32310                                                       part   1
## 32311                                                     people   1
## 32312                                                     philly   1
## 32313                                                    picture   1
## 32314                                                      price   1
## 32315                                                        put   1
## 32316                                                       rant   1
## 32317                                                      score   1
## 32318                                                       skip   1
## 32319                                                   somewhat   1
## 32320                                                       spot   1
## 32321                                                       stop   1
## 32322                                                      taste   1
## 32323                                                      think   1
## 32324                                                uninspiring   1
## 32325                                                        use   1
## 32326                                                       want   1
## 32327                                                        way   1
## 32328                                                       work   1
## 32329                                                    wouldnt   1
## 32330                                                      youre   1
## 32331                                                       part   1
## 32332                                                       roll   1
## 32333                                                     flavor   1
## 32334                                                       rest   1
## 32335                                                   although   1
## 32336                                                    besides   1
## 32337                                                   business   1
## 32338                                                     cheese   1
## 32339                                                    compare   1
## 32340                                                 comparison   1
## 32341                                                competition   1
## 32342                                                     detour   1
## 32343                                                         do   1
## 32344                                                      douse   1
## 32345                                                       drop   1
## 32346                                                        end   1
## 32347                                                     engulf   1
## 32348                                                      every   1
## 32349                                                     factor   1
## 32350                                                       fair   1
## 32351                                                     famous   1
## 32352                                                    finally   1
## 32353                                                    genosso   1
## 32354                                                       heck   1
## 32355                                                        hit   1
## 32356                                                         il   1
## 32357                                                  legendary   1
## 32358                                                      limit   1
## 32359                                                        man   1
## 32360                                                     moment   1
## 32361                                                       must   1
## 32362                                                       need   1
## 32363                                                       next   1
## 32364                                                    partake   1
## 32365                                                   personal   1
## 32366                                                     philly   1
## 32367                                                       pick   1
## 32368                                                 powerhouse   1
## 32369                                                     prefer   1
## 32370                                                      quick   1
## 32371                                                         re   1
## 32372                                                    realize   1
## 32373                                                       risk   1
## 32374                                                       rome   1
## 32375                                                       save   1
## 32376                                                        say   1
## 32377                                                       self   1
## 32378                                                      share   1
## 32379                                                      spend   1
## 32380                                                       suck   1
## 32381                                                      taint   1
## 32382                                                   tasteoff   1
## 32383                                                theirselves   1
## 32384                                                      think   1
## 32385                                                      total   1
## 32386                                                   touristy   1
## 32387                                                       trip   1
## 32388                                                       walk   1
## 32389                                                        wed   1
## 32390                                                       whiz   1
## 32391                                                       whos   1
## 32392                                                       will   1
## 32393                                                     winner   1
## 32394                                                     witwiz   1
## 32395                                                       wizz   1
## 32396                                                      youre   1
## 32397                                                     racist   1
## 32398                                                       step   1
## 32399                                                         yi   1
## 32400                                                     arrive   1
## 32401                                                cheesesteak   1
## 32402                                                       come   1
## 32403                                                       ever   1
## 32404                                                     family   1
## 32405                                                       hard   1
## 32406                                                    perhaps   1
## 32407                                                   sandwich   1
## 32408                                                       stop   1
## 32409                                                        tht   1
## 32410                                                       weve   1
## 32411                                                      whats   1
## 32412                                                  yesterday   1
## 32413                                                 patriotism   1
## 32414                                                       cash   1
## 32415                                                      genos   1
## 32416                                                       mike   1
## 32417                                                     winner   1
## 32418                                                       folk   1
## 32419                                                       much   1
## 32420                                                       roll   1
## 32421                                                      since   1
## 32422                                                        bad   1
## 32423                                                  blatantly   1
## 32424                                                       care   1
## 32425                                                     cheesy   1
## 32426                                                cleanliness   1
## 32427                                                      color   1
## 32428                                                       come   1
## 32429                                                     doesnt   1
## 32430                                              establishment   1
## 32431                                                     expect   1
## 32432                                                      first   1
## 32433                                                   flagrant   1
## 32434                                                         go   1
## 32435                                                      great   1
## 32436                                                       isnt   1
## 32437                                                       just   1
## 32438                                                       lack   1
## 32439                                                       much   1
## 32440                                                    outside   1
## 32441                                                  overwhelm   1
## 32442                                                  placefelt   1
## 32443                                                     really   1
## 32444                                                       sign   1
## 32445                                                     simple   1
## 32446                                                      stand   1
## 32447                                                      super   1
## 32448                                                      whole   1
## 32449                                                       look   1
## 32450                                                     bright   1
## 32451                                                   business   1
## 32452                                                   exterior   1
## 32453                                                      joint   1
## 32454                                                        one   1
## 32455                                                        pat   1
## 32456                                                      patch   1
## 32457                                                        ton   1
## 32458                                                 definitely   1
## 32459                                                        try   1
## 32460                                                     little   1
## 32461                                                     sister   1
## 32462                                                     expect   1
## 32463                                                    quality   1
## 32464                                                         al   1
## 32465                                                       fall   1
## 32466                                                       geno   1
## 32467                                                   precious   1
## 32468                                                       star   1
## 32469                                                       come   1
## 32470                                                   strictly   1
## 32471                                                       junk   1
## 32472                                                         go   1
## 32473                                                   inferior   1
## 32474                                                 irrelevant   1
## 32475                                                        get   1
## 32476                                                      heart   1
## 32477                                                    however   1
## 32478                                                    problem   1
## 32479                                                   suppress   1
## 32480                                               unattractive   1
## 32481                                                       wait   1
## 32482                                                       will   1
## 32483                                                   laughter   1
## 32484                                                 disappoint   1
## 32485                                                  embarrass   1
## 32486                                                     regret   1
## 32487                                                        add   1
## 32488                                                      clean   1
## 32489                                                      fresh   1
## 32490                                                       good   1
## 32491                                                       hype   1
## 32492                                                        one   1
## 32493                                                       stop   1
## 32494                                                    suggest   1
## 32495                                                        ask   1
## 32496                                                      point   1
## 32497                                                      point   1
## 32498                                                     racist   1
## 32499                                                  wonderful   1
## 32500                                                    quality   1
## 32501                                                         us   1
## 32502                                                       good   1
## 32503                                                       good   1
## 32504                                                        try   1
## 32505                                                      three   1
## 32506                                                       rate   1
## 32507                                                        eat   1
## 32508                                                       good   1
## 32509                                                      great   1
## 32510                                                 intimidate   1
## 32511                                                       make   1
## 32512                                                    quality   1
## 32513                                                 reccommend   1
## 32514                                                         go   1
## 32515                                                     ghetto   1
## 32516                                                 steakbread   1
## 32517                                                   assembly   1
## 32518                                                        ive   1
## 32519                                                       must   1
## 32520                                                     winner   1
## 32521                                                        yes   1
## 32522                                                        add   1
## 32523                                                     advise   1
## 32524                                                      agree   1
## 32525                                                      avoid   1
## 32526                                                    believe   1
## 32527                                                       bite   1
## 32528                                                     bottom   1
## 32529                                                     bucket   1
## 32530                                                        can   1
## 32531                                                     change   1
## 32532                                                  character   1
## 32533                                              commercialize   1
## 32534                                                       cook   1
## 32535                                                       cool   1
## 32536                                                    correct   1
## 32537                                             disappointment   1
## 32538                                                       diva   1
## 32539                                                        eat   1
## 32540                                                     enough   1
## 32541                                                       even   1
## 32542                                                     expect   1
## 32543                                                       fall   1
## 32544                                                        fan   1
## 32545                                                        far   1
## 32546                                                       fast   1
## 32547                                                        fav   1
## 32548                                                       feel   1
## 32549                                                       fill   1
## 32550                                                       find   1
## 32551                                                     flavor   1
## 32552                                                      fresh   1
## 32553                                                       full   1
## 32554                                                      gaudy   1
## 32555                                                       give   1
## 32556                                                      gonna   1
## 32557                                                       goto   1
## 32558                                                      gotta   1
## 32559                                                      hefty   1
## 32560                                                    impress   1
## 32561                                                   inferior   1
## 32562                                                   interest   1
## 32563                                                       isnt   1
## 32564                                                       king   1
## 32565                                                       know   1
## 32566                                                        let   1
## 32567                                                       list   1
## 32568                                                        lot   1
## 32569                                                       love   1
## 32570                                                     matter   1
## 32571                                                       meat   1
## 32572                                                       meet   1
## 32573                                                    midtier   1
## 32574                                                       must   1
## 32575                                                       nice   1
## 32576                                                    nothing   1
## 32577                                                      offer   1
## 32578                                                         og   1
## 32579                                                       okay   1
## 32580                                                        one   1
## 32581                                                   original   1
## 32582                                                       part   1
## 32583                                                  patronize   1
## 32584                                                        pay   1
## 32585                                                    perfect   1
## 32586                                               philadelphia   1
## 32587                                                   possible   1
## 32588                                                  provolone   1
## 32589                                                        put   1
## 32590                                                    putting   1
## 32591                                                     repeat   1
## 32592                                                   resident   1
## 32593                                                       rude   1
## 32594                                                     runner   1
## 32595                                                    satisfy   1
## 32596                                                        say   1
## 32597                                                      score   1
## 32598                                                       seem   1
## 32599                                                      share   1
## 32600                                                       side   1
## 32601                                                      sight   1
## 32602                                                    signage   1
## 32603                                                      skimp   1
## 32604                                                       skip   1
## 32605                                                       slam   1
## 32606                                                      spare   1
## 32607                                                      spend   1
## 32608                                                       star   1
## 32609                                                      steak   1
## 32610                                                      style   1
## 32611                                                        sub   1
## 32612                                                     superb   1
## 32613                                                   superior   1
## 32614                                                      tasty   1
## 32615                                                       team   1
## 32616                                                       tell   1
## 32617                                                       thai   1
## 32618                                                      thank   1
## 32619                                                   touristy   1
## 32620                                                    towners   1
## 32621                                                        tru   1
## 32622                                                       turn   1
## 32623                                                 understand   1
## 32624                                                     update   1
## 32625                                                        use   1
## 32626                                                      visit   1
## 32627                                                     visual   1
## 32628                                                        bad   1
## 32629                                                       good   1
## 32630                                                     iconic   1
## 32631                                                        say   1
## 32632                                                      worth   1
## 32633                                                   favorite   1
## 32634                                                         go   1
## 32635                                                  steakumms   1
## 32636                                                expectation   1
## 32637                                                       zero   1
## 32638                                                      chewy   1
## 32639                                                     freeze   1
## 32640                                                        get   1
## 32641                                                    husband   1
## 32642                                                      sheer   1
## 32643                                                    swelter   1
## 32644                                                      woman   1
## 32645                                                      drink   1
## 32646                                                       meal   1
## 32647                                                      mundo   1
## 32648                                                     rossis   1
## 32649                                                    commute   1
## 32650                                                       even   1
## 32651                                                     barrys   1
## 32652                                                        far   1
## 32653                                                      genos   1
## 32654                                                       hard   1
## 32655                                                      johns   1
## 32656                                                       much   1
## 32657                                                     philly   1
## 32658                                                       tony   1
## 32659                                                         go   1
## 32660                                                         im   1
## 32661                                                     native   1
## 32662                                                       hour   1
## 32663                                                     plenty   1
## 32664                                                   original   1
## 32665                                                     cheesy   1
## 32666                                                competition   1
## 32667                                                        pat   1
## 32668                                                      taste   1
## 32669                                                      visit   1
## 32670                                                       cafe   1
## 32671                                                     steves   1
## 32672                                                        ave   1
## 32673                                                     across   1
## 32674                                                       back   1
## 32675                                                     barrys   1
## 32676                                                       come   1
## 32677                                                 germantown   1
## 32678                                                       good   1
## 32679                                                      gooey   1
## 32680                                                       home   1
## 32681                                                        joe   1
## 32682                                                       make   1
## 32683                                                       name   1
## 32684                                                      order   1
## 32685                                                     rather   1
## 32686                                                   sandwich   1
## 32687                                                       spot   1
## 32688                                                      store   1
## 32689                                                        try   1
## 32690                                                       wrap   1
## 32691                                                       bite   1
## 32692                                              antiimmigrant   1
## 32693                                                      grill   1
## 32694                                                      awful   1
## 32695                                                    believe   1
## 32696                                                        big   1
## 32697                                                        boy   1
## 32698                                                        can   1
## 32699                                                       cant   1
## 32700                                                    careful   1
## 32701                                                     cheesy   1
## 32702                                                combination   1
## 32703                                                  complaint   1
## 32704                                                  compliant   1
## 32705                                                        con   1
## 32706                                                     course   1
## 32707                                                   customer   1
## 32708                                                 especially   1
## 32709                                                      every   1
## 32710                                                 everything   1
## 32711                                                    exactly   1
## 32712                                                       fast   1
## 32713                                                      fatty   1
## 32714                                                  flavorful   1
## 32715                                                    freedom   1
## 32716                                                      fresh   1
## 32717                                                        fun   1
## 32718                                                      genos   1
## 32719                                                 girlfriend   1
## 32720                                                     guilty   1
## 32721                                                       half   1
## 32722                                                     highly   1
## 32723                                                       home   1
## 32724                                                   homemade   1
## 32725                                                       huge   1
## 32726                                                     humble   1
## 32727                                                         im   1
## 32728                                                 impeccable   1
## 32729                                                     inside   1
## 32730                                                        ive   1
## 32731                                                      juicy   1
## 32732                                                      leave   1
## 32733                                                       like   1
## 32734                                                       line   1
## 32735                                                      local   1
## 32736                                                       meal   1
## 32737                                                       mean   1
## 32738                                                      messy   1
## 32739                                                      moist   1
## 32740                                                       must   1
## 32741                                                    neither   1
## 32742                                                      never   1
## 32743                                                        new   1
## 32744                                                       nice   1
## 32745                                                nonetheless   1
## 32746                                                    obscure   1
## 32747                                                      offer   1
## 32748                                                    outdoor   1
## 32749                                                    overall   1
## 32750                                                      pizza   1
## 32751                                                     pretty   1
## 32752                                                     reason   1
## 32753                                                 ridiculous   1
## 32754                                                       roll   1
## 32755                                                        see   1
## 32756                                                       slab   1
## 32757                                                       soft   1
## 32758                                                     softly   1
## 32759                                                       star   1
## 32760                                                      still   1
## 32761                                                    suggest   1
## 32762                                                      sweet   1
## 32763                                                      taste   1
## 32764                                                      tasty   1
## 32765                                                      thing   1
## 32766                                                      think   1
## 32767                                                     wallet   1
## 32768                                                       whiz   1
## 32769                                                       wife   1
## 32770                                                        wiz   1
## 32771                                                      fresh   1
## 32772                                                 apparently   1
## 32773                                                      await   1
## 32774                                                       hold   1
## 32775                                                     winner   1
## 32776                                                     choose   1
## 32777                                                      didnt   1
## 32778                                                      genos   1
## 32779                                                         go   1
## 32780                                                       good   1
## 32781                                                        see   1
## 32782                                                        sit   1
## 32783                                                      taste   1
## 32784                                                      bling   1
## 32785                                                      happy   1
## 32786                                                     little   1
## 32787                                                     ironic   1
## 32788                                                      lunch   1
## 32789                                                       need   1
## 32790                                                       tell   1
## 32791                                                       many   1
## 32792                                                     philly   1
## 32793                                                      still   1
## 32794                                                   actually   1
## 32795                                                       bryn   1
## 32796                                               consistently   1
## 32797                                                       feel   1
## 32798                                                      hotel   1
## 32799                                                       hype   1
## 32800                                                        ive   1
## 32801                                                     little   1
## 32802                                                       need   1
## 32803                                                      night   1
## 32804                                                       okay   1
## 32805                                                    quality   1
## 32806                                                     street   1
## 32807                                            surreptitiously   1
## 32808                                                  downright   1
## 32809                                                      pizza   1
## 32810                                                       time   1
## 32811                                                      ridge   1
## 32812                                                      steak   1
## 32813                                                       isnt   1
## 32814                                                     simply   1
## 32815                                                       call   1
## 32816                                                     friend   1
## 32817                                                   language   1
## 32818                                                      money   1
## 32819                                                      order   1
## 32820                                                     patron   1
## 32821                                                     people   1
## 32822                                                  something   1
## 32823                                                   specific   1
## 32824                                                        sub   1
## 32825                                                    quality   1
## 32826                                                       jerk   1
## 32827                                                      staff   1
## 32828                                                      truly   1
## 32829                                                      catch   1
## 32830                                                       full   1
## 32831                                                      today   1
## 32832                                                 washington   1
## 32833                                                        rtm   1
## 32834                                                        yum   1
## 32835                                                      genos   1
## 32836                                                      image   1
## 32837                                                       make   1
## 32838                                                      genos   1
## 32839                                                        pat   1
## 32840                                                       cook   1
## 32841                                                      bread   1
## 32842                                                       door   1
## 32843                                                         de   1
## 32844                                                 bridgework   1
## 32845                                                         im   1
## 32846                                                         co   1
## 32847                                                     havent   1
## 32848                                                       like   1
## 32849                                                      place   1
## 32850                                                     really   1
## 32851                                                   customer   1
## 32852                                                         do   1
## 32853                                                      genos   1
## 32854                                                       good   1
## 32855                                                    inquiry   1
## 32856                                                       pack   1
## 32857                                                     across   1
## 32858                                                    country   1
## 32859                                                   hometown   1
## 32860                                                     little   1
## 32861                                                      patch   1
## 32862                                                       size   1
## 32863                                                       wall   1
## 32864                                                cheesesteak   1
## 32865                                                       bite   1
## 32866                                                     dollar   1
## 32867                                                         go   1
## 32868                                                       kind   1
## 32869                                                       look   1
## 32870                                                     manner   1
## 32871                                                 preference   1
## 32872                                                      taste   1
## 32873                                                    tourist   1
## 32874                                                       work   1
## 32875                                                      visit   1
## 32876                                                       want   1
## 32877                                                    mexican   1
## 32878                                                     across   1
## 32879                                                   customer   1
## 32880                                                afghanistan   1
## 32881                                                     theres   1
## 32882                                                        wow   1
## 32883                                                    country   1
## 32884                                                       even   1
## 32885                                                       food   1
## 32886                                                      seing   1
## 32887                                                       sign   1
## 32888                                                       take   1
## 32889                                                     review   1
## 32890                                                      badge   1
## 32891                                                   memorial   1
## 32892                                                     little   1
## 32893                                                       meal   1
## 32894                                                       need   1
## 32895                                                  oblivious   1
## 32896                                                    alaskan   1
## 32897                                                cheesesteak   1
## 32898                                                       draw   1
## 32899                                                      genos   1
## 32900                                                         go   1
## 32901                                                      ismeh   1
## 32902                                                   itcheese   1
## 32903                                                      joint   1
## 32904                                                        let   1
## 32905                                                       like   1
## 32906                                                      nasty   1
## 32907                                                  originate   1
## 32908                                                      taste   1
## 32909                                                   terrible   1
## 32910                                                 disappoint   1
## 32911                                                       spot   1
## 32912                                                       hype   1
## 32913                                                      mouth   1
## 32914                                                  attention   1
## 32915                                                   business   1
## 32916                                                      didnt   1
## 32917                                                      every   1
## 32918                                                       find   1
## 32919                                                       full   1
## 32920                                                        get   1
## 32921                                                       hype   1
## 32922                                                       less   1
## 32923                                                     little   1
## 32924                                                        lot   1
## 32925                                                    mention   1
## 32926                                                   negative   1
## 32927                                                      order   1
## 32928                                                  patronize   1
## 32929                                                     philly   1
## 32930                                                 restaurant   1
## 32931                                                      round   1
## 32932                                                       slap   1
## 32933                                                        way   1
## 32934                                                       whiz   1
## 32935                                                     appeal   1
## 32936                                                        big   1
## 32937                                                     driver   1
## 32938                                                      bread   1
## 32939                                                       even   1
## 32940                                                 everything   1
## 32941                                                    finally   1
## 32942                                                       good   1
## 32943                                                      grant   1
## 32944                                                      juicy   1
## 32945                                                       keep   1
## 32946                                                        one   1
## 32947                                                     philly   1
## 32948                                                        put   1
## 32949                                                       seem   1
## 32950                                                      staff   1
## 32951                                                 naaaastyyy   1
## 32952                                                    attempt   1
## 32953                                                    content   1
## 32954                                                       need   1
## 32955                                                     hungry   1
## 32956                                                       need   1
## 32957                                                       menu   1
## 32958                                                        way   1
## 32959                                                    yelpers   1
## 32960                                                        add   1
## 32961                                                      admit   1
## 32962                                                  advertise   1
## 32963                                                    blatant   1
## 32964                                                cheesesteak   1
## 32965                                                  condition   1
## 32966                                                    copious   1
## 32967                                                      enjoy   1
## 32968                                                 eyerolling   1
## 32969                                                       fact   1
## 32970                                                    freedom   1
## 32971                                                       full   1
## 32972                                                      genos   1
## 32973                                                        get   1
## 32974                                                       good   1
## 32975                                                       hole   1
## 32976                                                   incident   1
## 32977                                                    italian   1
## 32978                                                  legendary   1
## 32979                                                       live   1
## 32980                                                       long   1
## 32981                                                       look   1
## 32982                                                        low   1
## 32983                                                       many   1
## 32984                                                        may   1
## 32985                                                 occasional   1
## 32986                                                      onion   1
## 32987                                               philadelphia   1
## 32988                                                      place   1
## 32989                                                    politic   1
## 32990                                                       poor   1
## 32991                                                     pretty   1
## 32992                                                   previous   1
## 32993                                                   purchase   1
## 32994                                                     racist   1
## 32995                                                       read   1
## 32996                                                     review   1
## 32997                                               runofthemill   1
## 32998                                                        say   1
## 32999                                                      short   1
## 33000                                                   superior   1
## 33001                                                      table   1
## 33002                                                    visibly   1
## 33003                                                       will   1
## 33004                                                      place   1
## 33005                                                         do   1
## 33006                                                   drinksok   1
## 33007                                                      genos   1
## 33008                                                      sorry   1
## 33009                                                       step   1
## 33010                                                        aka   1
## 33011                                                     bright   1
## 33012                                                      every   1
## 33013                                                  expensive   1
## 33014                                                       kind   1
## 33015                                                       look   1
## 33016                                                     philly   1
## 33017                                                     rather   1
## 33018                                                   research   1
## 33019                                                        say   1
## 33020                                                       shit   1
## 33021                                                      since   1
## 33022                                                       spot   1
## 33023                                                       term   1
## 33024                                                    towners   1
## 33025                                                         tv   1
## 33026                                                    usually   1
## 33027                                                    wouldnt   1
## 33028                                                       also   1
## 33029                                               cheesesteaks   1
## 33030                                                      genos   1
## 33031                                                       good   1
## 33032                                                 adjustment   1
## 33033                                                       come   1
## 33034                                                      every   1
## 33035                                                        let   1
## 33036                                                  operation   1
## 33037                                                      order   1
## 33038                                                     review   1
## 33039                                                    verdict   1
## 33040                                                       want   1
## 33041                                                       much   1
## 33042                                                        two   1
## 33043                                                     enough   1
## 33044                                                       line   1
## 33045                                                       mere   1
## 33046                                                      order   1
## 33047                                                       also   1
## 33048                                                       good   1
## 33049                                                      brace   1
## 33050                                                        one   1
## 33051                                                    outcome   1
## 33052                                                      right   1
## 33053                                                     travel   1
## 33054                                                        two   1
## 33055                                                      whose   1
## 33056                                                     winner   1
## 33057                                                     around   1
## 33058                                                   atlantic   1
## 33059                                                      genos   1
## 33060                                                        get   1
## 33061                                                       rely   1
## 33062                                                      right   1
## 33063                                                   roadtrip   1
## 33064                                                        try   1
## 33065                                                       heat   1
## 33066                                                    texture   1
## 33067                                                      genos   1
## 33068                                                       weak   1
## 33069                                                         go   1
## 33070                                                   michigan   1
## 33071                                                     native   1
## 33072                                                      owner   1
## 33073                                                        ich   1
## 33074                                                   attitude   1
## 33075                                                 economybut   1
## 33076                                                    stomach   1
## 33077                                                        use   1
## 33078                                                     flavor   1
## 33079                                                     season   1
## 33080                                                       tact   1
## 33081                                                  political   1
## 33082                                                     decide   1
## 33083                                                drybarebone   1
## 33084                                                       food   1
## 33085                                                      genos   1
## 33086                                                     really   1
## 33087                                                   sandwich   1
## 33088                                                       wild   1
## 33089                                                       chop   1
## 33090                                                  recommend   1
## 33091                                                       just   1
## 33092                                                      south   1
## 33093                                                         id   1
## 33094                                                     assume   1
## 33095                                                        eat   1
## 33096                                                        get   1
## 33097                                                       good   1
## 33098                                                  heartburn   1
## 33099                                                        pat   1
## 33100                                                      right   1
## 33101                                                      stand   1
## 33102                                                      stuff   1
## 33103                                                      mumia   1
## 33104                                                        add   1
## 33105                                                       bite   1
## 33106                                                       kind   1
## 33107                                                      mince   1
## 33108                                                      saute   1
## 33109                                                      steak   1
## 33110                                                      youre   1
## 33111                                                      first   1
## 33112                                                       like   1
## 33113                                                       sake   1
## 33114                                                        way   1
## 33115                                                 chichester   1
## 33116                                                      place   1
## 33117                                                     around   1
## 33118                                                     affect   1
## 33119                                                   anything   1
## 33120                                                 appreciate   1
## 33121                                                    approve   1
## 33122                                                        ask   1
## 33123                                                    attract   1
## 33124                                                        bad   1
## 33125                                                    believe   1
## 33126                                                      bland   1
## 33127                                                      blink   1
## 33128                                                       blow   1
## 33129                                                    breathe   1
## 33130                                                      bring   1
## 33131                                                      brush   1
## 33132                                                     chance   1
## 33133                                                     charge   1
## 33134                                                     choose   1
## 33135                                                       chop   1
## 33136                                                      count   1
## 33137                                                 disappoint   1
## 33138                                                      drive   1
## 33139                                                       edge   1
## 33140                                                      exist   1
## 33141                                                 experience   1
## 33142                                                       fall   1
## 33143                                                     finish   1
## 33144                                                      first   1
## 33145                                                        fit   1
## 33146                                                     garner   1
## 33147                                                       good   1
## 33148                                                      great   1
## 33149                                                      green   1
## 33150                                                     grille   1
## 33151                                                       hate   1
## 33152                                                    healthy   1
## 33153                                                       hear   1
## 33154                                                immediately   1
## 33155                                                    impress   1
## 33156                                                     invent   1
## 33157                                                       isnt   1
## 33158                                                      issue   1
## 33159                                                       just   1
## 33160                                                       kick   1
## 33161                                                       kill   1
## 33162                                                        let   1
## 33163                                                       line   1
## 33164                                                      match   1
## 33165                                                      maybe   1
## 33166                                                       meet   1
## 33167                                                namehistory   1
## 33168                                                      onion   1
## 33169                                                     overdo   1
## 33170                                                    partake   1
## 33171                                                 particular   1
## 33172                                                    provide   1
## 33173                                                       pull   1
## 33174                                                      quite   1
## 33175                                                      raise   1
## 33176                                                   remember   1
## 33177                                                   resemble   1
## 33178                                                   sandwich   1
## 33179                                                        say   1
## 33180                                                      screw   1
## 33181                                                        set   1
## 33182                                                      share   1
## 33183                                                       snap   1
## 33184                                                      spend   1
## 33185                                                      spill   1
## 33186                                                       spit   1
## 33187                                                      stand   1
## 33188                                                       stay   1
## 33189                                                      still   1
## 33190                                                       stop   1
## 33191                                                     though   1
## 33192                                                      trust   1
## 33193                                                        use   1
## 33194                                                      waste   1
## 33195                                                       wear   1
## 33196                                                        win   1
## 33197                                                      quite   1
## 33198                                                      cheap   1
## 33199                                                     cheese   1
## 33200                                               cheesesteaks   1
## 33201                                                       come   1
## 33202                                                         em   1
## 33203                                                        end   1
## 33204                                                        gag   1
## 33205                                                      happy   1
## 33206                                                      heart   1
## 33207                                                  hopefully   1
## 33208                                                       line   1
## 33209                                                       loud   1
## 33210                                                        may   1
## 33211                                                       meat   1
## 33212                                                     really   1
## 33213                                                        sad   1
## 33214                                                   sandwich   1
## 33215                                                         tv   1
## 33216                                                       will   1
## 33217                                                       wont   1
## 33218                                                         ca   1
## 33219                                                     chance   1
## 33220                                                        cut   1
## 33221                                                     philly   1
## 33222                                                cheesesteak   1
## 33223                                                      local   1
## 33224                                                       deli   1
## 33225                                                      exact   1
## 33226                                                         go   1
## 33227                                                       lard   1
## 33228                                                      local   1
## 33229                                                      pepsi   1
## 33230                                                   shouldnt   1
## 33231                                                        try   1
## 33232                                                        yes   1
## 33233                                                     choice   1
## 33234                                                    chicken   1
## 33235                                                      buddy   1
## 33236                                                     depend   1
## 33237                                                   location   1
## 33238                                                    opinion   1
## 33239                                                       wont   1
## 33240                                                       also   1
## 33241                                                    average   1
## 33242                                                      bread   1
## 33243                                                      bring   1
## 33244                                                     cheese   1
## 33245                                                cheesesteak   1
## 33246                                                     choice   1
## 33247                                                       come   1
## 33248                                                   employee   1
## 33249                                                       fact   1
## 33250                                                       find   1
## 33251                                                      force   1
## 33252                                                        fry   1
## 33253                                                       geno   1
## 33254                                                      genos   1
## 33255                                                       give   1
## 33256                                                       grow   1
## 33257                                                       hand   1
## 33258                                                        ill   1
## 33259                                                       like   1
## 33260                                                        lot   1
## 33261                                                       make   1
## 33262                                                        may   1
## 33263                                                       next   1
## 33264                                                  northeast   1
## 33265                                                     notice   1
## 33266                                                    opinion   1
## 33267                                                     philly   1
## 33268                                                   provolne   1
## 33269                                                        say   1
## 33270                                                     slight   1
## 33271                                                      staff   1
## 33272                                                      steak   1
## 33273                                                     suttle   1
## 33274                                                   tinythey   1
## 33275                                                 truthfully   1
## 33276                                                       wait   1
## 33277                                              advertisement   1
## 33278                                                       also   1
## 33279                                                   although   1
## 33280                                                     answer   1
## 33281                                                       area   1
## 33282                                                    awesome   1
## 33283                                                     bakery   1
## 33284                                                    cashier   1
## 33285                                                  cheesteak   1
## 33286                                                       chop   1
## 33287                                                      color   1
## 33288                                                  continent   1
## 33289                                                    counter   1
## 33290                                                    country   1
## 33291                                                      crowd   1
## 33292                                                    cuisine   1
## 33293                                                      decor   1
## 33294                                                         do   1
## 33295                                                     entity   1
## 33296                                              establishment   1
## 33297                                                   everyone   1
## 33298                                                       fing   1
## 33299                                                     flavor   1
## 33300                                                 impression   1
## 33301                                                     jersey   1
## 33302                                                       last   1
## 33303                                                   location   1
## 33304                                                        lot   1
## 33305                                                       mall   1
## 33306                                                       menu   1
## 33307                                                       much   1
## 33308                                                        now   1
## 33309                                                    opinion   1
## 33310                                                     person   1
## 33311                                                     philly   1
## 33312                                                   placeand   1
## 33313                                                    popular   1
## 33314                                                     pretty   1
## 33315                                                     reason   1
## 33316                                                 restaurant   1
## 33317                                                    section   1
## 33318                                                  seriously   1
## 33319                                                      serve   1
## 33320                                                        sub   1
## 33321                                                       take   1
## 33322                                                      taste   1
## 33323                                                   terminal   1
## 33324                                                      thing   1
## 33325                                                       time   1
## 33326                                                     toilet   1
## 33327                                                        two   1
## 33328                                              unfortunately   1
## 33329                                                        use   1
## 33330                                                  variation   1
## 33331                                                      whats   1
## 33332                                              windowcounter   1
## 33333                                                       wolf   1
##  [ reached 'max' / getOption("max.print") -- omitted 56703 rows ]
library(igraph)
## 
## Attaching package: 'igraph'
## The following objects are masked from 'package:lubridate':
## 
##     %--%, union
## The following objects are masked from 'package:dplyr':
## 
##     as_data_frame, groups, union
## The following objects are masked from 'package:purrr':
## 
##     compose, simplify
## The following object is masked from 'package:tidyr':
## 
##     crossing
## The following object is masked from 'package:tibble':
## 
##     as_data_frame
## The following objects are masked from 'package:stats':
## 
##     decompose, spectrum
## The following object is masked from 'package:base':
## 
##     union
library(ggraph)
gen_word_pairs_ori %>% 
  filter(n >= 50) %>% 
  graph_from_data_frame() %>%
  ggraph(layout = "kk") +
  geom_edge_link(aes(edge_alpha = n, edge_width = n),  edge_colour = "tomato") +
  geom_node_point(size = 5) +
  geom_node_text(aes(label = name), repel = TRUE, 
                 point.padding = unit(0.2, "lines")) +
  theme_void()

After removing six frequent terms, the network redrawn’s nodes are more visible, letting me lower the filter. Some were already apparent in the previous network like ‘spin dry’, a cooking technique. Other than that, typical common phrases like ‘pretty much’, ‘wasn’t bad’, ‘french fry’, ‘taste test’, ‘neon light’, ‘hot sauce’, ‘outdoor seat’, ‘somewhere else’, ‘fast service’, ‘lack flavour’. Other bigrams that are readily apparent to understanding include ‘joey vento’, the owner of Geno’s.

common_words<-c("cheese","steak","genos","pat","cheesesteak","good")
gen_word_pairs <- processed_text %>%
  unnest_tokens(bigram,text,token = "ngrams", n = 2) %>% 
  separate(bigram, c("word1", "word2"), sep = " ") %>%
  filter(!word1 %in% common_words,
         !word2 %in% common_words) %>%
  unite(bigram, word1, word2, sep = " ") %>%
  count(bigram, sort = TRUE) %>% separate(bigram, c("word1", "word2"), sep = " ")
gen_word_pairs %>% 
  filter(n >= 30) %>% #change this
  graph_from_data_frame() %>%
  ggraph(layout = "kk") +
  geom_edge_link(aes(edge_alpha = n, edge_width = n),  edge_colour = "tomato") +
  geom_node_point(size = 5) +
  geom_node_text(aes(label = name), repel = TRUE, 
                 point.padding = unit(0.2, "lines")) +
  theme_void()

4.4 Analysis: Sentiment Analysis

Pre-processing

Bing is a lexicon scoring words either -1 for negative or 1 for positive. AFINN is a lexicon of words scored between -5 to 5. NRC is a lexicon that categorises words as positive or negative. It also has words categorised as either The overall score for each is by finding the total sum of all the words in a document or in a review in this case.

library(syuzhet)
library(tidyverse)
sen<-as.data.frame(cbind(gen_rev, syuzhet = get_sentiment(docs, method="syuzhet"), 
                         bing = get_sentiment(docs, method="bing"),
                         afinn = get_sentiment(docs, method="afinn"),
                         nrc = get_sentiment(docs, method="nrc"),get_nrc_sentiment(docs)))

Exploratory data analysis

All of them are distributed around the same range. Any slight differences depends on how prolific each sentiment method’s dictionary of words is and their scoring scale. For example, AFINN is between -5 to 5 so its x-axis has a much wider range compared to a smaller scoring scale like Bing’s.

sen %>%
  pivot_longer(cols = c("syuzhet","bing", "afinn", "nrc"), names_to = "method", values_to = "score") %>%
  ggplot(aes(x = score, fill = method)) +
  geom_histogram(binwidth = 1, alpha = 0.7, position = "identity") +
  facet_wrap(~ method, scales = "free") +
  theme_minimal() +
  labs(title = "Distribution of Sentiment Scores", x = "Sentiment Score", y = "Frequency")

Emotions Per Star Rating

Below is a radar chart which shows the variation per star rating for each of the emotions. Red, orange, blue, yellow, purple correspond to 1-, 2-, 3-, 4-, and 5-star ratings respectively. The scales are normalized by binding it in between each rating’s maximum value so it can be directly plotted and shown on the same radar chart. Each polygon represents the relative emotion score per star rating. The largest difference is between 1-star reviews and then 3-, 4-, 5-star reviews. For the negative emotions, 1 has comparativly higher numbers of words related to disgust, anger, fear and sadness compared to 3, 4, 5, while 2 is approximately the midpoint. Positive emotions for 3, 4, 5, don’t look too dissimilar.

library(fmsb)
emo_per_star <- sen %>%
  group_by(yelp_review.stars) %>%
  summarise(across(c(anger, disgust, fear, sadness, joy, surprise, anticipation, trust), sum, .names = "{.col}")) %>% rowwise() %>%
  mutate(total = sum(c_across(anger:trust))) %>%
  mutate(across(anger:trust, ~ .x / total * 100)) %>%
  ungroup() %>%
  select(-total) %>%
  arrange(yelp_review.stars)
rr <- rbind(rep(25,8), rep(0, 8), emo_per_star[,-1])
rownames(rr) <- c("Max", "Min", paste0("Star ", emo_per_star$yelp_review.stars))

radarchart(
  rr,
  axistype = 1,
  pcol =  c("red", "orange", "darkslategray1","yellow", "purple"),
  pfcol = adjustcolor( c("red", "orange", "darkslategray1","yellow", "purple"), alpha.f = 0.2),
  plwd = 2,
  plty = 1,
  cglcol = "grey",
  cglty = 1,
  axislabcol = "grey",
  vlcex = 0.9,
  title = "Emotions by Star Rating"
)

Time Series of Average Sentiment over Time

sen %>% mutate(review_month = format(gen_rev$yelp_review.date, "%Y-%m")) %>%
  group_by(review_month) %>%
    summarise(
    avg_star = mean(yelp_review.stars, na.rm = TRUE),
    review_count = n()
  ) %>%
  ggplot(aes(x = review_month, y = avg_star, group = 1)) +
  geom_line() +
   theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
  labs(title = "Average Rating Per Month Over Time", x = "Date", y = "Mean Rating")

5.0 Discussion and Recommendations

The Yelp dataset is a massive file with the review.json being 5GB by itself; this makes it extremely difficult or limiting to handle in a software like R which defaults to handling objects in its environment in RAM. This is one of the reasons what makes Yelp a suitable dataset to have to load into a Hadoop ecosystem. In this assignment, putting it in Hive lets us easily query and subset the tables we need directly.

After looking at the dataset overall using SQL to query various characteristics, Geno’s Steaks was zeroed in on due to its very low rating compared to the similar Philadelphian steakhouse restaurants in the same area despite having very high number of reviews. This makes it a welcome candidate to text analysis to process and handle it. Overall, text mining analysis can be an effective way to process and visualise thousands of lines of text in an informative way, limiting the need for manual reading and examination. of all reviews. In addition, it allows quantitatively words against each other for comparison.

For pinpointing reviews that mention or identify areas of improvement, using a mix of different techniques of text analysis helps provide a fuller image. Techniques done in this small assignment was term frequency, word pairs, word correlations that could help find keywords.

Term frequency lets us see and compare what terms appear frequently across all the reviews. Looking at it overall, most of the common words was related to the business or to the food items; it wasn’t very helpful for the objective of finding areas of improvement. However, once it was narrowed to term frequencies per star rating, a clearer picture began to form. Initially, I hoped to find unique words for 5-star ratings as feedback for what the business should continue doing, however, there was none. The most common words for 5-star reviews were the most common words in general. Conversely, the lower-star ratings, especially the 1-star reviews had cited issues such as ‘rubbery’ meat, ‘stale’ and ‘tasteless’ food. The most significant issue and the most prominent complaint for this business is related to perceived discriminatory, xenophobic messaging, namely, a hotly mentioned issue is a sign to the tone of, paraphrased, ‘To speak english, this is America’. If the business is ever concerned about improving its rating on Yelp, resolving that would be key. Apart from the usual improvement that could be made to any food place like better food quality, and customer service, another minor issue is the glaring neon lights. Overall, using term frequency was a very effective way to narrow down keywords related to customer grievances; however, the issue with using term frequency is that it removes all context. If a word such as ‘friendly’ pops up a lot, it would be initially difficult to determine if that is meant to be a good thing or a bad thing (e.g. ‘not friendly’). Both ‘friendly’ and ‘not friendly’ would count towards the same. Another example is the word ‘trash’ appearing in the 1-star rating wordcloud. At first glance, it could be a complaint about a messy restaurant, but ‘trash’ can also appear as an adjective (‘this is trash’) or a verb (‘my friends always trash this place to me’), so finding the original review is paramount. Finally, wordcloud was used to colourfully communicate the frequency using size and colour to denote it, however its output can be variable. Based on that, it’s a nice overview, but not good for strict conveyance of data.

Talking about context, word associations or word correlations examine statistical relationships between words in a document. Words that appear together frequently are said to have high correlation. While great in theory, using in this context was difficult and many of the correlations simply came from just one or two review mentioning together. Some words would have the same level of correlation but differ in the number of reviews that actually mention them together, so it impossible to directly tell how many evidence there is. Also, in general, most of the associations were very, very weak. Making recommendations for improvement based on word correlations is of limited use. However, word associations highlighted an intense rivalry between two steakhouses with many of the reviews driven to comparing the two. In addition, using word correlations together with term frequency allowed me identify the existence of the restaurant’s signage that fueled the unique words in the 1-star wordcloud.

Bigrams is similar to term frequency except instead of counting frequency of just one word, it counts up the frequencies of pairs of words. It provides slightly more context. Using this and adjusting the bigram network, re-occuring words that appear adjacent to each other as appear as a pattern. Projecting this method to a network graph allows connections between words to be clearly illustrated like how common words ‘line’ is connected to ‘wait’, ‘and’, ‘move’, ‘long’, ‘wait’, but the ‘wait’ is ‘worth’ it which is also connected to ‘definitely’ (not seen here). Compared to word associations, bigrams better capture a local space, but it also means there is some superfluous bigrams that reflect the english language’s phrasing rather than something something specific to the dataset. Recommendations based on bigrams aren’t many, in fact, this is the only method that finally drew some positive feedback which is that they have ‘fast service’.

Recommendations to further improve insight into this include doing sentiment analysis beyond just profiling the emotions associated a certain rating.

Literature

When comparing wordclouds, many of the words in the 1-star wordcloud and the general overall wordcloud match the top 20 negative words in Las Vegas, Nevada; words such as overpriced, soggy, rude, grease, and bland but at least Geno’s Steaks isn’t associated with ‘closed’ or ‘dirty’ or ‘slow’, or ‘overcooked’ (based the negative word clouds for Charlotte and Pittsburgh) (Wang and Qiu (2015)).

In other locations, 5-star reviews for quick server restaurants would be related to the cleanliness of the business or the how friendly the staff have been (Gadidov and Priestley (2018)). While there are some reviews in our dataset mentioning that, it’s not a major theme. For staff, some reviews for Geno’s Steaks mention friendliness and some are more mixed or even stated to be downright rude.

Another paper that looks into also corroborates that the average review for a user is very low, the majority being under 5 reviews. This could be a factor why the average number of business is very low, most people do not think to review every place they go to and only certain circumstances like providing negative feedback may be driving them to comment. For their wordcloud, it is for Gordon Ramsey’s BurGR. Their positive wordcloud has terms related to the food items and positive descriptors; the negative wordcloud has words like ‘waste’, ‘raw’, ‘nobody’ (Alamoudi and Al Azwari (2021)). In general, very similar to the term frequencies for Genos’ Steaks 1-star and 5-star.

References

Alamoudi, Eman, and Sana Al Azwari. 2021. “Exploratory Data Analysis and Data Mining on Yelp Restaurant Review.” In, 1–6. https://doi.org/10.1109/NCCC49330.2021.9428850.
Gadidov, Bogdan, and Jennifer Lewis Priestley. 2018. “Does Yelp Matter? Analyzing (And Guide to Using) Ratings for a Quick Serve Restaurant Chain.” In Guide to Big Data Applications, edited by S. Srinivasan, 503–22. Cham: Springer International Publishing. https://doi.org/10.1007/978-3-319-53817-4_19.
Wang, Mingshan, and Rui Qiu. 2015. “Text Mining for Yelp Dataset Challenge.” In. https://api.semanticscholar.org/CorpusID:41546427.
Yelp. n.d. “Yelp Open Dataset.” https://business.yelp.com/data/resources/open-dataset/.